From 3a9b32284eece08b570ba2e5d8d4dde5f7d47599 Mon Sep 17 00:00:00 2001 From: Max Brunsfeld Date: Mon, 6 Aug 2018 10:42:48 -0700 Subject: [PATCH] Allow `!` operator in variable expansions Fixes #21 --- corpus/literals.txt | 2 + grammar.js | 2 +- script/known-failures.txt | 4 - src/grammar.json | 13 +- src/parser.c | 41009 ++++++++++++++++++------------------ 5 files changed, 20530 insertions(+), 20500 deletions(-) diff --git a/corpus/literals.txt b/corpus/literals.txt index ca3d706..d0a9e9e 100644 --- a/corpus/literals.txt +++ b/corpus/literals.txt @@ -56,6 +56,7 @@ echo $# $* $@ Variable expansions ============================= +echo ${!abc} echo ${abc} echo ${abc:-def} echo ${abc:- } @@ -65,6 +66,7 @@ echo ${abc: --- (program + (command (command_name (word)) (expansion (variable_name))) (command (command_name (word)) (expansion (variable_name))) (command (command_name (word)) (expansion (variable_name) (word))) (command (command_name (word)) (expansion (variable_name))) diff --git a/grammar.js b/grammar.js index 4cdc7a2..6c3edb1 100644 --- a/grammar.js +++ b/grammar.js @@ -437,7 +437,7 @@ module.exports = grammar({ expansion: $ => seq( '${', - optional('#'), + optional(choice('#', '!')), choice( seq( $.variable_name, diff --git a/script/known-failures.txt b/script/known-failures.txt index 754a1f9..0f1fca4 100644 --- a/script/known-failures.txt +++ b/script/known-failures.txt @@ -9,7 +9,6 @@ examples/bash-it/completion/available/docker-compose.completion.bash examples/bash-it/completion/available/jboss7.completion.bash examples/bash-it/completion/available/gh.completion.bash examples/bash-it/completion/available/bundler.completion.bash -examples/bash-it/completion/available/gradle.completion.bash examples/bash-it/completion/available/drush.completion.bash examples/bash-it/completion/available/hub.completion.bash examples/bash-it/completion/available/docker-machine.completion.bash @@ -17,7 +16,6 @@ examples/bash-it/completion/available/git.completion.bash examples/bash-it/completion/available/vagrant.completion.bash examples/bash-it/completion/available/defaults.completion.bash examples/bash-it/completion/available/packer.completion.bash -examples/bash-it/completion/available/salt.completion.bash examples/bash-it/completion/available/vault.completion.bash examples/bash-it/completion/available/docker.completion.bash examples/bash-it/completion/available/tmux.completion.bash @@ -26,14 +24,12 @@ examples/bash-it/completion/available/apm.completion.bash examples/bash-it/completion/available/git_flow.completion.bash examples/bash-it/lib/preexec.bash examples/bash-it/lib/composure.bash -examples/bash-it/lib/search.bash examples/bash-it/test_lib/bats-support/src/lang.bash examples/bash-it/test_lib/bats-support/src/output.bash examples/bash-it/test_lib/bats-assert/src/assert.bash examples/bash-it/themes/hawaii50/hawaii50.theme.bash examples/bash-it/themes/dulcie/dulcie.theme.bash examples/bash-it/themes/colors.theme.bash -examples/bash-it/themes/rana/rana.theme.bash examples/bash-it/themes/morris/morris.theme.bash examples/bash-it/themes/powerline/powerline.base.bash examples/bash-it/themes/base.theme.bash diff --git a/src/grammar.json b/src/grammar.json index e0bad1e..070ff2a 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -1774,8 +1774,17 @@ "type": "CHOICE", "members": [ { - "type": "STRING", - "value": "#" + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "#" + }, + { + "type": "STRING", + "value": "!" + } + ] }, { "type": "BLANK" diff --git a/src/parser.c b/src/parser.c index f269602..54d5c0f 100644 --- a/src/parser.c +++ b/src/parser.c @@ -2241,6 +2241,8 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(72); END_STATE(); case 107: + if (lookahead == '!') + ADVANCE(108); if (lookahead == '#') ADVANCE(6); if (lookahead == '$') @@ -2256,7 +2258,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '@') ADVANCE(104); if (lookahead == '\\') - SKIP(108); + SKIP(109); if (lookahead == '_') ADVANCE(106); if (lookahead == '\t' || @@ -2270,10 +2272,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ADVANCE(72); END_STATE(); case 108: + ACCEPT_TOKEN(anon_sym_BANG); + END_STATE(); + case 109: if (lookahead == '\n') SKIP(107); END_STATE(); - case 109: + case 110: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2299,7 +2304,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(110); + ADVANCE(111); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2313,14 +2318,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(109); + SKIP(110); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 110: + case 111: if (lookahead == '\n') - SKIP(109); + SKIP(110); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2328,24 +2333,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 111: + case 112: if (lookahead == 0) ADVANCE(1); if (lookahead == '#') ADVANCE(57); if (lookahead == '\\') - SKIP(112); + SKIP(113); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(111); - END_STATE(); - case 112: - if (lookahead == '\n') - SKIP(111); + SKIP(112); END_STATE(); case 113: + if (lookahead == '\n') + SKIP(112); + END_STATE(); + case 114: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2367,7 +2372,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(114); + ADVANCE(115); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2381,14 +2386,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(113); + SKIP(114); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 114: + case 115: if (lookahead == '\n') - SKIP(113); + SKIP(114); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2396,7 +2401,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 115: + case 116: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2422,7 +2427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(116); + ADVANCE(117); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2436,14 +2441,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(115); + SKIP(116); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 116: + case 117: if (lookahead == '\n') - SKIP(115); + SKIP(116); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2451,7 +2456,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 117: + case 118: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2469,7 +2474,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(118); + ADVANCE(119); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2482,7 +2487,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(117); + SKIP(118); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -2490,9 +2495,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 118: + case 119: if (lookahead == '\n') - SKIP(117); + SKIP(118); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2500,7 +2505,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 119: + case 120: if (lookahead == '\n') ADVANCE(84); if (lookahead == '!') @@ -2512,7 +2517,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(120); + ADVANCE(121); if (lookahead == '\'') ADVANCE(15); if (lookahead == '(') @@ -2528,7 +2533,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(121); + ADVANCE(122); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2540,18 +2545,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(119); + SKIP(120); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 120: + case 121: ACCEPT_TOKEN(anon_sym_AMP); END_STATE(); - case 121: + case 122: if (lookahead == '\n') - SKIP(119); + SKIP(120); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2559,7 +2564,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 122: + case 123: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2569,7 +2574,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '$') ADVANCE(7); if (lookahead == '&') - ADVANCE(120); + ADVANCE(121); if (lookahead == '\'') ADVANCE(15); if (lookahead == ';') @@ -2581,7 +2586,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(123); + ADVANCE(124); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2593,15 +2598,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(122); + SKIP(123); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 123: + case 124: if (lookahead == '\n') - SKIP(122); + SKIP(123); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2609,26 +2614,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 124: + case 125: if (lookahead == '#') ADVANCE(57); if (lookahead == '(') ADVANCE(17); if (lookahead == '\\') - SKIP(125); + SKIP(126); if (lookahead == '{') ADVANCE(51); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(124); - END_STATE(); - case 125: - if (lookahead == '\n') - SKIP(124); + SKIP(125); END_STATE(); case 126: + if (lookahead == '\n') + SKIP(125); + END_STATE(); + case 127: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2652,7 +2657,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(127); + ADVANCE(128); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2666,7 +2671,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(126); + SKIP(127); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('_' <= lookahead && lookahead <= 'z')) @@ -2675,9 +2680,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 127: + case 128: if (lookahead == '\n') - SKIP(126); + SKIP(127); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2685,7 +2690,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 128: + case 129: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2713,7 +2718,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(129); + ADVANCE(130); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2727,13 +2732,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(128); + SKIP(129); if (lookahead != 0) ADVANCE(4); END_STATE(); - case 129: + case 130: if (lookahead == '\n') - SKIP(128); + SKIP(129); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2741,7 +2746,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 130: + case 131: if (lookahead == '\n') ADVANCE(84); if (lookahead == '\"') @@ -2765,7 +2770,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(131); + ADVANCE(132); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -2779,14 +2784,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(130); + SKIP(131); if (lookahead != 0 && (lookahead < '&' || lookahead > ')')) ADVANCE(4); END_STATE(); - case 131: + case 132: if (lookahead == '\n') - SKIP(130); + SKIP(131); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2794,7 +2799,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 132: + case 133: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -2806,7 +2811,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '\\') - ADVANCE(133); + ADVANCE(134); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -2814,7 +2819,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(132); + SKIP(133); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -2825,9 +2830,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 133: + case 134: if (lookahead == '\n') - SKIP(132); + SKIP(133); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2835,121 +2840,121 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 134: + case 135: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); - if (lookahead == '-') ADVANCE(138); + if (lookahead == '-') + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(145); + SKIP(146); if (lookahead == ']') ADVANCE(48); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(134); - END_STATE(); - case 135: - if (lookahead == '=') - ADVANCE(136); + SKIP(135); END_STATE(); case 136: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + if (lookahead == '=') + ADVANCE(137); END_STATE(); case 137: + ACCEPT_TOKEN(anon_sym_BANG_EQ); + END_STATE(); + case 138: if (lookahead == '&') ADVANCE(12); END_STATE(); - case 138: + case 139: if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(139); + ADVANCE(140); END_STATE(); - case 139: + case 140: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(139); - END_STATE(); - case 140: - ACCEPT_TOKEN(anon_sym_LT); + ADVANCE(140); END_STATE(); case 141: - ACCEPT_TOKEN(anon_sym_EQ); - if (lookahead == '=') - ADVANCE(142); - if (lookahead == '~') - ADVANCE(143); + ACCEPT_TOKEN(anon_sym_LT); END_STATE(); case 142: - ACCEPT_TOKEN(anon_sym_EQ_EQ); + ACCEPT_TOKEN(anon_sym_EQ); + if (lookahead == '=') + ADVANCE(143); + if (lookahead == '~') + ADVANCE(144); END_STATE(); case 143: - ACCEPT_TOKEN(anon_sym_EQ_TILDE); + ACCEPT_TOKEN(anon_sym_EQ_EQ); END_STATE(); case 144: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_EQ_TILDE); END_STATE(); case 145: - if (lookahead == '\n') - SKIP(134); + ACCEPT_TOKEN(anon_sym_GT); END_STATE(); case 146: + if (lookahead == '\n') + SKIP(135); + END_STATE(); + case 147: if (lookahead == '|') ADVANCE(54); END_STATE(); - case 147: + case 148: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); - if (lookahead == '-') ADVANCE(138); + if (lookahead == '-') + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(148); + SKIP(149); if (lookahead == ']') - ADVANCE(149); + ADVANCE(150); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(147); - END_STATE(); - case 148: - if (lookahead == '\n') - SKIP(147); + SKIP(148); END_STATE(); case 149: - if (lookahead == ']') - ADVANCE(150); + if (lookahead == '\n') + SKIP(148); END_STATE(); case 150: - ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + if (lookahead == ']') + ADVANCE(151); END_STATE(); case 151: + ACCEPT_TOKEN(anon_sym_RBRACK_RBRACK); + END_STATE(); + case 152: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -2961,48 +2966,48 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(101); if (lookahead == '0') - ADVANCE(152); + ADVANCE(153); if (lookahead == '?') ADVANCE(103); if (lookahead == '@') ADVANCE(104); if (lookahead == '\\') - ADVANCE(154); + ADVANCE(155); if (lookahead == '_') - ADVANCE(156); + ADVANCE(157); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(155); + ADVANCE(156); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); + ADVANCE(154); if (lookahead != 0 && (lookahead < '_' || lookahead > 'z')) ADVANCE(93); END_STATE(); - case 152: + case 153: ACCEPT_TOKEN(anon_sym_0); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); + ADVANCE(154); END_STATE(); - case 153: + case 154: ACCEPT_TOKEN(aux_sym_SLASH_BSLASHw_PLUS_SLASH); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); + ADVANCE(154); END_STATE(); - case 154: + case 155: ACCEPT_TOKEN(sym__string_content); if (lookahead == '\n') - ADVANCE(155); + ADVANCE(156); if (lookahead == '\\') ADVANCE(94); if (lookahead == '\"' || @@ -3012,7 +3017,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(93); END_STATE(); - case 155: + case 156: ACCEPT_TOKEN(sym__string_content); if (lookahead == '#') ADVANCE(6); @@ -3021,38 +3026,71 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '-') ADVANCE(101); if (lookahead == '0') - ADVANCE(152); + ADVANCE(153); if (lookahead == '?') ADVANCE(103); if (lookahead == '@') ADVANCE(104); if (lookahead == '\\') - ADVANCE(154); + ADVANCE(155); if (lookahead == '_') - ADVANCE(156); + ADVANCE(157); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - ADVANCE(155); + ADVANCE(156); if (('1' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); + ADVANCE(154); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '_' || lookahead > 'z')) ADVANCE(93); END_STATE(); - case 156: + case 157: ACCEPT_TOKEN(anon_sym__); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(153); + ADVANCE(154); END_STATE(); - case 157: + case 158: + if (lookahead == '#') + ADVANCE(57); + if (lookahead == '$') + ADVANCE(99); + if (lookahead == '*') + ADVANCE(100); + if (lookahead == '-') + ADVANCE(101); + if (lookahead == '0') + ADVANCE(102); + if (lookahead == '?') + ADVANCE(103); + if (lookahead == '@') + ADVANCE(104); + if (lookahead == '\\') + SKIP(159); + if (lookahead == '_') + ADVANCE(106); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + SKIP(158); + if (('1' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(72); + END_STATE(); + case 159: + if (lookahead == '\n') + SKIP(158); + END_STATE(); + case 160: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3072,13 +3110,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(80); if (lookahead == '=') - ADVANCE(158); + ADVANCE(161); if (lookahead == '>') ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(159); + ADVANCE(162); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3091,14 +3129,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(157); + SKIP(160); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 158: + case 161: ACCEPT_TOKEN(anon_sym_EQ); if (lookahead == '\\') ADVANCE(3); @@ -3117,9 +3155,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 159: + case 162: if (lookahead == '\n') - SKIP(157); + SKIP(160); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3127,40 +3165,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 160: - if (lookahead == '#') - ADVANCE(57); - if (lookahead == '$') - ADVANCE(99); - if (lookahead == '*') - ADVANCE(100); - if (lookahead == '-') - ADVANCE(101); - if (lookahead == '0') - ADVANCE(102); - if (lookahead == '?') - ADVANCE(103); - if (lookahead == '@') - ADVANCE(104); - if (lookahead == '\\') - SKIP(161); - if (lookahead == '_') - ADVANCE(106); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - SKIP(160); - if (('1' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(72); - END_STATE(); - case 161: - if (lookahead == '\n') - SKIP(160); - END_STATE(); - case 162: + case 163: if (lookahead == 0) ADVANCE(1); if (lookahead == '!') @@ -3178,7 +3183,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == ';') - ADVANCE(163); + ADVANCE(164); if (lookahead == '<') ADVANCE(59); if (lookahead == '>') @@ -3186,7 +3191,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(164); + ADVANCE(165); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3199,18 +3204,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(162); + SKIP(163); if ((lookahead < '&' || lookahead > ')') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 163: + case 164: if (lookahead == ';') ADVANCE(29); END_STATE(); - case 164: + case 165: if (lookahead == '\n') - SKIP(162); + SKIP(163); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3218,324 +3223,324 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 165: + case 166: if (lookahead == '#') ADVANCE(57); if (lookahead == '$') - ADVANCE(166); + ADVANCE(167); if (lookahead == '\\') - SKIP(167); + SKIP(168); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(165); + SKIP(166); END_STATE(); - case 166: + case 167: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '{') ADVANCE(9); END_STATE(); - case 167: - if (lookahead == '\n') - SKIP(165); - END_STATE(); case 168: + if (lookahead == '\n') + SKIP(166); + END_STATE(); + case 169: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(169); + ADVANCE(170); if (lookahead == '$') - ADVANCE(171); + ADVANCE(172); if (lookahead == '\'') - ADVANCE(176); + ADVANCE(177); if (lookahead == '<') - ADVANCE(179); + ADVANCE(180); if (lookahead == '>') - ADVANCE(181); + ADVANCE(182); if (lookahead == '[') - ADVANCE(183); - if (lookahead == '\\') ADVANCE(184); + if (lookahead == '\\') + ADVANCE(185); if (lookahead == ']') - ADVANCE(183); + ADVANCE(184); if (lookahead == '`') - ADVANCE(187); + ADVANCE(188); if (lookahead == '{') - ADVANCE(183); + ADVANCE(184); if (lookahead == '}') - ADVANCE(183); + ADVANCE(184); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(168); + SKIP(169); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(174); + ADVANCE(175); if (lookahead != 0) - ADVANCE(186); + ADVANCE(187); END_STATE(); - case 169: + case 170: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(170); + ADVANCE(171); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(169); + ADVANCE(170); END_STATE(); - case 170: + case 171: ACCEPT_TOKEN(sym_regex); if (lookahead == '\\') - ADVANCE(170); + ADVANCE(171); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - ADVANCE(169); + ADVANCE(170); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(169); + ADVANCE(170); END_STATE(); - case 171: + case 172: ACCEPT_TOKEN(anon_sym_DOLLAR); if (lookahead == '(') - ADVANCE(172); - if (lookahead == '\\') ADVANCE(173); + if (lookahead == '\\') + ADVANCE(174); if (lookahead == '{') + ADVANCE(176); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 173: + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 174: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(175); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(175); + END_STATE(); + case 175: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 176: + ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 177: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\'') + ADVANCE(178); + if (lookahead == '\\') + ADVANCE(179); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(15); + if (lookahead != 0) + ADVANCE(177); + END_STATE(); + case 178: + ACCEPT_TOKEN(sym_raw_string); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 179: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\n') + ADVANCE(15); + if (lookahead == '\'') + ADVANCE(178); + if (lookahead == '\\') + ADVANCE(179); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(177); + if (lookahead != 0) + ADVANCE(177); + END_STATE(); + case 180: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(181); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 181: + ACCEPT_TOKEN(anon_sym_LT_LPAREN); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 182: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '(') + ADVANCE(183); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 183: + ACCEPT_TOKEN(anon_sym_GT_LPAREN); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 184: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '[') + ADVANCE(184); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead == ']') + ADVANCE(184); + if (lookahead == '{') + ADVANCE(184); + if (lookahead == '}') + ADVANCE(184); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 185: + ACCEPT_TOKEN(sym_regex); + if (lookahead == '\\') + ADVANCE(186); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(175); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(187); + END_STATE(); + case 186: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(185); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') + ADVANCE(175); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(175); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(187); + END_STATE(); + case 187: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(185); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 172: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 173: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(174); - END_STATE(); - case 174: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 175: - ACCEPT_TOKEN(anon_sym_DOLLAR_LBRACE); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 176: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\'') - ADVANCE(177); - if (lookahead == '\\') - ADVANCE(178); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(15); - if (lookahead != 0) - ADVANCE(176); - END_STATE(); - case 177: - ACCEPT_TOKEN(sym_raw_string); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 178: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\n') - ADVANCE(15); - if (lookahead == '\'') - ADVANCE(177); - if (lookahead == '\\') - ADVANCE(178); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(176); - if (lookahead != 0) - ADVANCE(176); - END_STATE(); - case 179: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(180); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 180: - ACCEPT_TOKEN(anon_sym_LT_LPAREN); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 181: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '(') - ADVANCE(182); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 182: - ACCEPT_TOKEN(anon_sym_GT_LPAREN); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 183: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '[') - ADVANCE(183); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead == ']') - ADVANCE(183); - if (lookahead == '{') - ADVANCE(183); - if (lookahead == '}') - ADVANCE(183); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 184: - ACCEPT_TOKEN(sym_regex); - if (lookahead == '\\') - ADVANCE(185); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(186); - END_STATE(); - case 185: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(184); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') - ADVANCE(174); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(186); - END_STATE(); - case 186: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(184); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(186); - END_STATE(); - case 187: - ACCEPT_TOKEN(anon_sym_BQUOTE); - if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); + ADVANCE(187); END_STATE(); case 188: + ACCEPT_TOKEN(anon_sym_BQUOTE); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); + END_STATE(); + case 189: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -3545,37 +3550,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(189); - if (lookahead == '>') ADVANCE(190); + if (lookahead == '>') + ADVANCE(191); if (lookahead == '\\') - SKIP(191); + SKIP(192); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(188); + SKIP(189); END_STATE(); - case 189: + case 190: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); if (lookahead == '<') ADVANCE(33); END_STATE(); - case 190: + case 191: ACCEPT_TOKEN(anon_sym_GT); if (lookahead == '&') ADVANCE(40); if (lookahead == '>') ADVANCE(42); END_STATE(); - case 191: - if (lookahead == '\n') - SKIP(188); - END_STATE(); case 192: + if (lookahead == '\n') + SKIP(189); + END_STATE(); + case 193: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3591,7 +3596,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(193); + ADVANCE(194); if (lookahead == ']') ADVANCE(48); if (lookahead == '`') @@ -3604,7 +3609,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(192); + SKIP(193); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3612,9 +3617,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 193: + case 194: if (lookahead == '\n') - SKIP(192); + SKIP(193); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3622,7 +3627,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 194: + case 195: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -3640,7 +3645,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(195); + ADVANCE(196); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3653,7 +3658,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(194); + SKIP(195); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3661,9 +3666,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 195: + case 196: if (lookahead == '\n') - SKIP(194); + SKIP(195); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3671,39 +3676,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 196: + case 197: if (lookahead == '\n') ADVANCE(84); if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') ADVANCE(85); if (lookahead == '-') - ADVANCE(138); + ADVANCE(139); if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(197); + SKIP(198); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(196); - END_STATE(); - case 197: - if (lookahead == '\n') - SKIP(196); + SKIP(197); END_STATE(); case 198: + if (lookahead == '\n') + SKIP(197); + END_STATE(); + case 199: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3725,7 +3730,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(199); + ADVANCE(200); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3738,7 +3743,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(198); + SKIP(199); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -3746,9 +3751,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 199: + case 200: if (lookahead == '\n') - SKIP(198); + SKIP(199); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3756,7 +3761,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 200: + case 201: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -3766,28 +3771,28 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(201); + ADVANCE(202); if (lookahead == '>') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\\') - SKIP(202); + SKIP(203); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(200); + SKIP(201); END_STATE(); - case 201: + case 202: ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '&') ADVANCE(31); END_STATE(); - case 202: - if (lookahead == '\n') - SKIP(200); - END_STATE(); case 203: + if (lookahead == '\n') + SKIP(201); + END_STATE(); + case 204: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -3811,7 +3816,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(45); if (lookahead == '\\') - ADVANCE(204); + ADVANCE(205); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -3824,16 +3829,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(203); + SKIP(204); if (lookahead != 0 && lookahead != ';' && lookahead != '<' && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 204: + case 205: if (lookahead == '\n') - SKIP(203); + SKIP(204); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -3841,7 +3846,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 205: + case 206: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -3853,131 +3858,100 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(189); - if (lookahead == '>') ADVANCE(190); + if (lookahead == '>') + ADVANCE(191); if (lookahead == '\\') - SKIP(206); + SKIP(207); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(205); - END_STATE(); - case 206: - if (lookahead == '\n') - SKIP(205); + SKIP(206); END_STATE(); case 207: + if (lookahead == '\n') + SKIP(206); + END_STATE(); + case 208: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); + ADVANCE(138); if (lookahead == ')') ADVANCE(18); if (lookahead == '-') - ADVANCE(138); + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(208); + SKIP(209); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(207); - END_STATE(); - case 208: - if (lookahead == '\n') - SKIP(207); + SKIP(208); END_STATE(); case 209: + if (lookahead == '\n') + SKIP(208); + END_STATE(); + case 210: if (lookahead == '!') - ADVANCE(210); + ADVANCE(211); if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') - ADVANCE(169); + ADVANCE(170); if (lookahead == '$') - ADVANCE(171); + ADVANCE(172); if (lookahead == '\'') - ADVANCE(176); + ADVANCE(177); if (lookahead == '(') - ADVANCE(211); - if (lookahead == '-') ADVANCE(212); + if (lookahead == '-') + ADVANCE(213); if (lookahead == '<') - ADVANCE(179); + ADVANCE(180); if (lookahead == '>') - ADVANCE(181); + ADVANCE(182); if (lookahead == '[') - ADVANCE(183); - if (lookahead == '\\') ADVANCE(184); + if (lookahead == '\\') + ADVANCE(185); if (lookahead == ']') - ADVANCE(183); + ADVANCE(184); if (lookahead == '`') - ADVANCE(187); + ADVANCE(188); if (lookahead == '{') - ADVANCE(183); + ADVANCE(184); if (lookahead == '}') - ADVANCE(183); + ADVANCE(184); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(209); + SKIP(210); if (('&' <= lookahead && lookahead <= ')') || lookahead == ';' || lookahead == '|') - ADVANCE(174); + ADVANCE(175); if (lookahead != 0) - ADVANCE(186); - END_STATE(); - case 210: - ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '\\') - ADVANCE(184); - if (('\"' <= lookahead && lookahead <= '$') || - ('&' <= lookahead && lookahead <= ')') || - lookahead == ';' || - lookahead == '<' || - lookahead == '>' || - ('[' <= lookahead && lookahead <= ']') || - lookahead == '`' || - ('{' <= lookahead && lookahead <= '}')) - ADVANCE(174); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(186); + ADVANCE(187); END_STATE(); case 211: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_BANG); if (lookahead == '\\') - ADVANCE(173); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') - ADVANCE(174); - END_STATE(); - case 212: - ACCEPT_TOKEN(sym_word); - if (lookahead == '\\') - ADVANCE(184); + ADVANCE(185); if (('\"' <= lookahead && lookahead <= '$') || ('&' <= lookahead && lookahead <= ')') || lookahead == ';' || @@ -3986,62 +3960,93 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('[' <= lookahead && lookahead <= ']') || lookahead == '`' || ('{' <= lookahead && lookahead <= '}')) - ADVANCE(174); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(213); + ADVANCE(175); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ') - ADVANCE(186); + ADVANCE(187); + END_STATE(); + case 212: + ACCEPT_TOKEN(anon_sym_LPAREN); + if (lookahead == '\\') + ADVANCE(174); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(175); END_STATE(); case 213: + ACCEPT_TOKEN(sym_word); + if (lookahead == '\\') + ADVANCE(185); + if (('\"' <= lookahead && lookahead <= '$') || + ('&' <= lookahead && lookahead <= ')') || + lookahead == ';' || + lookahead == '<' || + lookahead == '>' || + ('[' <= lookahead && lookahead <= ']') || + lookahead == '`' || + ('{' <= lookahead && lookahead <= '}')) + ADVANCE(175); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) + ADVANCE(214); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ') + ADVANCE(187); + END_STATE(); + case 214: ACCEPT_TOKEN(sym_test_operator); if (('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) - ADVANCE(213); + ADVANCE(214); END_STATE(); - case 214: + case 215: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); + ADVANCE(138); if (lookahead == ')') ADVANCE(18); if (lookahead == '-') - ADVANCE(138); + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(215); + SKIP(216); if (lookahead == ']') - ADVANCE(149); + ADVANCE(150); if (lookahead == '|') - ADVANCE(216); + ADVANCE(217); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(214); - END_STATE(); - case 215: - if (lookahead == '\n') - SKIP(214); + SKIP(215); END_STATE(); case 216: + if (lookahead == '\n') + SKIP(215); + END_STATE(); + case 217: ACCEPT_TOKEN(anon_sym_PIPE); if (lookahead == '|') ADVANCE(54); END_STATE(); - case 217: + case 218: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4057,7 +4062,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(218); + ADVANCE(219); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4070,7 +4075,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(217); + SKIP(218); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4078,9 +4083,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 218: + case 219: if (lookahead == '\n') - SKIP(217); + SKIP(218); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4088,7 +4093,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 219: + case 220: if (lookahead == '\"') ADVANCE(5); if (lookahead == '#') @@ -4106,13 +4111,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '<') ADVANCE(80); if (lookahead == '=') - ADVANCE(158); + ADVANCE(161); if (lookahead == '>') ADVANCE(81); if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(220); + ADVANCE(221); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4125,16 +4130,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(219); + SKIP(220); if (lookahead != 0 && (lookahead < '\"' || lookahead > ')') && (lookahead < ':' || lookahead > '>') && (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 220: + case 221: if (lookahead == '\n') - SKIP(219); + SKIP(220); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4142,47 +4147,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 221: + case 222: if (lookahead == '#') - ADVANCE(222); + ADVANCE(223); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(225); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(221); + SKIP(222); if (lookahead != 0 && lookahead != '\"' && lookahead != '#' && lookahead != '}') - ADVANCE(225); + ADVANCE(226); END_STATE(); - case 222: + case 223: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(223); + ADVANCE(224); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(222); - END_STATE(); - case 223: - ACCEPT_TOKEN(sym_regex_without_right_brace); - if (lookahead == '\\') ADVANCE(223); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ' || - lookahead == '}') - ADVANCE(222); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n') - ADVANCE(222); END_STATE(); case 224: ACCEPT_TOKEN(sym_regex_without_right_brace); @@ -4192,25 +4183,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\r' || lookahead == ' ' || lookahead == '}') - ADVANCE(225); + ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n') - ADVANCE(225); + ADVANCE(223); END_STATE(); case 225: ACCEPT_TOKEN(sym_regex_without_right_brace); if (lookahead == '\\') - ADVANCE(224); + ADVANCE(225); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ' || + lookahead == '}') + ADVANCE(226); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n') + ADVANCE(226); + END_STATE(); + case 226: + ACCEPT_TOKEN(sym_regex_without_right_brace); + if (lookahead == '\\') + ADVANCE(225); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '}') - ADVANCE(225); + ADVANCE(226); END_STATE(); - case 226: + case 227: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4220,11 +4225,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(189); - if (lookahead == '>') ADVANCE(190); + if (lookahead == '>') + ADVANCE(191); if (lookahead == '\\') - SKIP(227); + SKIP(228); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -4232,13 +4237,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(226); - END_STATE(); - case 227: - if (lookahead == '\n') - SKIP(226); + SKIP(227); END_STATE(); case 228: + if (lookahead == '\n') + SKIP(227); + END_STATE(); + case 229: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4250,11 +4255,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(189); - if (lookahead == '>') ADVANCE(190); + if (lookahead == '>') + ADVANCE(191); if (lookahead == '\\') - ADVANCE(229); + ADVANCE(230); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -4262,7 +4267,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(228); + SKIP(229); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4270,9 +4275,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 229: + case 230: if (lookahead == '\n') - SKIP(228); + SKIP(229); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4280,7 +4285,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 230: + case 231: if (lookahead == '!') ADVANCE(2); if (lookahead == '\"') @@ -4294,7 +4299,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '(') ADVANCE(17); if (lookahead == ')') - ADVANCE(231); + ADVANCE(232); if (lookahead == '-') ADVANCE(78); if (lookahead == '<') @@ -4304,7 +4309,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '[') ADVANCE(61); if (lookahead == '\\') - ADVANCE(233); + ADVANCE(234); if (lookahead == ']') ADVANCE(61); if (lookahead == '`') @@ -4317,7 +4322,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(230); + SKIP(231); if (lookahead != 0 && (lookahead < '&' || lookahead > ')') && lookahead != ';' && @@ -4325,16 +4330,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 231: - if (lookahead == ')') - ADVANCE(232); - END_STATE(); case 232: - ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + if (lookahead == ')') + ADVANCE(233); END_STATE(); case 233: + ACCEPT_TOKEN(anon_sym_RPAREN_RPAREN); + END_STATE(); + case 234: if (lookahead == '\n') - SKIP(230); + SKIP(231); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4342,11 +4347,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 234: + case 235: if (lookahead == '\n') ADVANCE(84); if (lookahead == '!') - ADVANCE(235); + ADVANCE(236); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') @@ -4356,19 +4361,19 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(140); + ADVANCE(141); if (lookahead == '=') ADVANCE(36); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - ADVANCE(237); + ADVANCE(238); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(234); + SKIP(235); if (lookahead != 0 && (lookahead < ' ' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4377,10 +4382,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 235: + case 236: ACCEPT_TOKEN(sym_word); if (lookahead == '=') - ADVANCE(236); + ADVANCE(237); if (lookahead == '\\') ADVANCE(3); if (lookahead != 0 && @@ -4396,7 +4401,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 236: + case 237: ACCEPT_TOKEN(anon_sym_BANG_EQ); if (lookahead == '\\') ADVANCE(3); @@ -4415,9 +4420,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 237: + case 238: if (lookahead == '\n') - SKIP(234); + SKIP(235); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4425,7 +4430,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 238: + case 239: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4437,11 +4442,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(201); + ADVANCE(202); if (lookahead == '>') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\\') - ADVANCE(239); + ADVANCE(240); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -4449,7 +4454,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(238); + SKIP(239); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4457,9 +4462,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 239: + case 240: if (lookahead == '\n') - SKIP(238); + SKIP(239); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4467,7 +4472,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 240: + case 241: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4479,56 +4484,56 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(201); + ADVANCE(202); if (lookahead == '>') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\\') - SKIP(241); + SKIP(242); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(240); - END_STATE(); - case 241: - if (lookahead == '\n') - SKIP(240); + SKIP(241); END_STATE(); case 242: + if (lookahead == '\n') + SKIP(241); + END_STATE(); + case 243: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); + ADVANCE(138); if (lookahead == ')') ADVANCE(18); if (lookahead == '-') - ADVANCE(138); + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(243); + SKIP(244); if (lookahead == ']') - ADVANCE(149); + ADVANCE(150); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(242); - END_STATE(); - case 243: - if (lookahead == '\n') - SKIP(242); + SKIP(243); END_STATE(); case 244: + if (lookahead == '\n') + SKIP(243); + END_STATE(); + case 245: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4538,11 +4543,11 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(201); + ADVANCE(202); if (lookahead == '>') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\\') - SKIP(245); + SKIP(246); if (lookahead == '`') ADVANCE(50); if (lookahead == '|') @@ -4550,24 +4555,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(244); - END_STATE(); - case 245: - if (lookahead == '\n') - SKIP(244); + SKIP(245); END_STATE(); case 246: + if (lookahead == '\n') + SKIP(245); + END_STATE(); + case 247: if (lookahead == '#') ADVANCE(57); if (lookahead == '\\') - ADVANCE(247); + ADVANCE(248); if (lookahead == '{') ADVANCE(51); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(246); + SKIP(247); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4579,9 +4584,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 247: + case 248: if (lookahead == '\n') - SKIP(246); + SKIP(247); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4589,60 +4594,60 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 248: + case 249: if (lookahead == '!') - ADVANCE(135); + ADVANCE(136); if (lookahead == '#') ADVANCE(57); if (lookahead == '&') - ADVANCE(137); - if (lookahead == ')') - ADVANCE(231); - if (lookahead == '-') ADVANCE(138); + if (lookahead == ')') + ADVANCE(232); + if (lookahead == '-') + ADVANCE(139); if (lookahead == '<') - ADVANCE(140); - if (lookahead == '=') ADVANCE(141); + if (lookahead == '=') + ADVANCE(142); if (lookahead == '>') - ADVANCE(144); + ADVANCE(145); if (lookahead == '\\') - SKIP(249); + SKIP(250); if (lookahead == '|') - ADVANCE(146); + ADVANCE(147); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(248); - END_STATE(); - case 249: - if (lookahead == '\n') - SKIP(248); + SKIP(249); END_STATE(); case 250: + if (lookahead == '\n') + SKIP(249); + END_STATE(); + case 251: if (lookahead == '#') ADVANCE(57); if (lookahead == ')') ADVANCE(18); if (lookahead == '\\') - SKIP(251); + SKIP(252); if (lookahead == '|') - ADVANCE(252); + ADVANCE(253); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') - SKIP(250); - END_STATE(); - case 251: - if (lookahead == '\n') - SKIP(250); + SKIP(251); END_STATE(); case 252: - ACCEPT_TOKEN(anon_sym_PIPE); + if (lookahead == '\n') + SKIP(251); END_STATE(); case 253: + ACCEPT_TOKEN(anon_sym_PIPE); + END_STATE(); + case 254: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4652,17 +4657,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(189); - if (lookahead == '>') ADVANCE(190); + if (lookahead == '>') + ADVANCE(191); if (lookahead == '\\') - ADVANCE(254); + ADVANCE(255); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(253); + SKIP(254); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4671,9 +4676,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 254: + case 255: if (lookahead == '\n') - SKIP(253); + SKIP(254); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -4681,7 +4686,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ') ADVANCE(4); END_STATE(); - case 255: + case 256: if (lookahead == '\n') ADVANCE(84); if (lookahead == '#') @@ -4691,17 +4696,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == ';') ADVANCE(28); if (lookahead == '<') - ADVANCE(201); + ADVANCE(202); if (lookahead == '>') - ADVANCE(190); + ADVANCE(191); if (lookahead == '\\') - ADVANCE(256); + ADVANCE(257); if (lookahead == '|') ADVANCE(52); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') - SKIP(255); + SKIP(256); if (lookahead != 0 && (lookahead < '\"' || lookahead > '$') && (lookahead < '&' || lookahead > ')') && @@ -4710,9 +4715,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { (lookahead < '{' || lookahead > '}')) ADVANCE(4); END_STATE(); - case 256: + case 257: if (lookahead == '\n') - SKIP(255); + SKIP(256); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -5092,77 +5097,77 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [21] = {.lex_state = 56, .external_lex_state = 2}, [22] = {.lex_state = 56, .external_lex_state = 2}, [23] = {.lex_state = 56, .external_lex_state = 2}, - [24] = {.lex_state = 109, .external_lex_state = 5}, - [25] = {.lex_state = 111}, + [24] = {.lex_state = 110, .external_lex_state = 5}, + [25] = {.lex_state = 112}, [26] = {.lex_state = 83, .external_lex_state = 4}, [27] = {.lex_state = 88, .external_lex_state = 7}, - [28] = {.lex_state = 113, .external_lex_state = 8}, + [28] = {.lex_state = 114, .external_lex_state = 8}, [29] = {.lex_state = 62}, [30] = {.lex_state = 73, .external_lex_state = 2}, - [31] = {.lex_state = 115, .external_lex_state = 7}, + [31] = {.lex_state = 116, .external_lex_state = 7}, [32] = {.lex_state = 56, .external_lex_state = 2}, [33] = {.lex_state = 73, .external_lex_state = 2}, [34] = {.lex_state = 73}, [35] = {.lex_state = 73}, - [36] = {.lex_state = 117, .external_lex_state = 9}, - [37] = {.lex_state = 119, .external_lex_state = 4}, - [38] = {.lex_state = 122, .external_lex_state = 4}, + [36] = {.lex_state = 118, .external_lex_state = 9}, + [37] = {.lex_state = 120, .external_lex_state = 4}, + [38] = {.lex_state = 123, .external_lex_state = 4}, [39] = {.lex_state = 73}, [40] = {.lex_state = 83, .external_lex_state = 4}, - [41] = {.lex_state = 113, .external_lex_state = 8}, + [41] = {.lex_state = 114, .external_lex_state = 8}, [42] = {.lex_state = 73}, - [43] = {.lex_state = 122, .external_lex_state = 10}, + [43] = {.lex_state = 123, .external_lex_state = 10}, [44] = {.lex_state = 91}, [45] = {.lex_state = 98}, - [46] = {.lex_state = 122, .external_lex_state = 10}, + [46] = {.lex_state = 123, .external_lex_state = 10}, [47] = {.lex_state = 107, .external_lex_state = 6}, [48] = {.lex_state = 56, .external_lex_state = 2}, [49] = {.lex_state = 56, .external_lex_state = 2}, [50] = {.lex_state = 56, .external_lex_state = 2}, - [51] = {.lex_state = 122, .external_lex_state = 4}, - [52] = {.lex_state = 124}, + [51] = {.lex_state = 123, .external_lex_state = 4}, + [52] = {.lex_state = 125}, [53] = {.lex_state = 62}, [54] = {.lex_state = 56, .external_lex_state = 2}, [55] = {.lex_state = 73}, [56] = {.lex_state = 75, .external_lex_state = 2}, [57] = {.lex_state = 77}, [58] = {.lex_state = 77}, - [59] = {.lex_state = 126, .external_lex_state = 3}, - [60] = {.lex_state = 126, .external_lex_state = 4}, - [61] = {.lex_state = 115, .external_lex_state = 5}, - [62] = {.lex_state = 115, .external_lex_state = 5}, - [63] = {.lex_state = 128, .external_lex_state = 5}, - [64] = {.lex_state = 126, .external_lex_state = 4}, - [65] = {.lex_state = 115, .external_lex_state = 7}, - [66] = {.lex_state = 130, .external_lex_state = 8}, + [59] = {.lex_state = 127, .external_lex_state = 3}, + [60] = {.lex_state = 127, .external_lex_state = 4}, + [61] = {.lex_state = 116, .external_lex_state = 5}, + [62] = {.lex_state = 116, .external_lex_state = 5}, + [63] = {.lex_state = 129, .external_lex_state = 5}, + [64] = {.lex_state = 127, .external_lex_state = 4}, + [65] = {.lex_state = 116, .external_lex_state = 7}, + [66] = {.lex_state = 131, .external_lex_state = 8}, [67] = {.lex_state = 62}, [68] = {.lex_state = 56, .external_lex_state = 2}, [69] = {.lex_state = 73, .external_lex_state = 2}, [70] = {.lex_state = 62}, - [71] = {.lex_state = 132, .external_lex_state = 4}, + [71] = {.lex_state = 133, .external_lex_state = 4}, [72] = {.lex_state = 62}, [73] = {.lex_state = 77}, [74] = {.lex_state = 77}, - [75] = {.lex_state = 134, .external_lex_state = 11}, + [75] = {.lex_state = 135, .external_lex_state = 11}, [76] = {.lex_state = 91}, [77] = {.lex_state = 98}, - [78] = {.lex_state = 134, .external_lex_state = 11}, + [78] = {.lex_state = 135, .external_lex_state = 11}, [79] = {.lex_state = 107, .external_lex_state = 6}, [80] = {.lex_state = 56, .external_lex_state = 2}, [81] = {.lex_state = 56, .external_lex_state = 2}, [82] = {.lex_state = 56, .external_lex_state = 2}, - [83] = {.lex_state = 134, .external_lex_state = 12}, + [83] = {.lex_state = 135, .external_lex_state = 12}, [84] = {.lex_state = 77}, [85] = {.lex_state = 77}, - [86] = {.lex_state = 147, .external_lex_state = 13}, + [86] = {.lex_state = 148, .external_lex_state = 13}, [87] = {.lex_state = 91}, [88] = {.lex_state = 98}, - [89] = {.lex_state = 147, .external_lex_state = 13}, + [89] = {.lex_state = 148, .external_lex_state = 13}, [90] = {.lex_state = 107, .external_lex_state = 6}, [91] = {.lex_state = 56, .external_lex_state = 2}, [92] = {.lex_state = 56, .external_lex_state = 2}, [93] = {.lex_state = 56, .external_lex_state = 2}, - [94] = {.lex_state = 147}, + [94] = {.lex_state = 148}, [95] = {.lex_state = 62}, [96] = {.lex_state = 83, .external_lex_state = 14}, [97] = {.lex_state = 91}, @@ -5172,7 +5177,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [101] = {.lex_state = 56, .external_lex_state = 2}, [102] = {.lex_state = 56, .external_lex_state = 2}, [103] = {.lex_state = 56, .external_lex_state = 2}, - [104] = {.lex_state = 126, .external_lex_state = 3}, + [104] = {.lex_state = 127, .external_lex_state = 3}, [105] = {.lex_state = 62}, [106] = {.lex_state = 83, .external_lex_state = 3}, [107] = {.lex_state = 83, .external_lex_state = 10}, @@ -5183,7 +5188,7 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [112] = {.lex_state = 56, .external_lex_state = 2}, [113] = {.lex_state = 56, .external_lex_state = 2}, [114] = {.lex_state = 56, .external_lex_state = 2}, - [115] = {.lex_state = 126, .external_lex_state = 4}, + [115] = {.lex_state = 127, .external_lex_state = 4}, [116] = {.lex_state = 83, .external_lex_state = 4}, [117] = {.lex_state = 73, .external_lex_state = 15}, [118] = {.lex_state = 91}, @@ -5196,23 +5201,23 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [125] = {.lex_state = 73, .external_lex_state = 2}, [126] = {.lex_state = 73}, [127] = {.lex_state = 88, .external_lex_state = 5}, - [128] = {.lex_state = 115, .external_lex_state = 5}, - [129] = {.lex_state = 151}, + [128] = {.lex_state = 116, .external_lex_state = 5}, + [129] = {.lex_state = 152}, [130] = {.lex_state = 91, .external_lex_state = 13}, [131] = {.lex_state = 107, .external_lex_state = 6}, [132] = {.lex_state = 56, .external_lex_state = 2}, [133] = {.lex_state = 56, .external_lex_state = 2}, [134] = {.lex_state = 91}, - [135] = {.lex_state = 115, .external_lex_state = 5}, - [136] = {.lex_state = 115, .external_lex_state = 5}, - [137] = {.lex_state = 115, .external_lex_state = 5}, + [135] = {.lex_state = 116, .external_lex_state = 5}, + [136] = {.lex_state = 116, .external_lex_state = 5}, + [137] = {.lex_state = 116, .external_lex_state = 5}, [138] = {.lex_state = 62}, - [139] = {.lex_state = 157, .external_lex_state = 16}, - [140] = {.lex_state = 160, .external_lex_state = 6}, - [141] = {.lex_state = 157, .external_lex_state = 16}, - [142] = {.lex_state = 157, .external_lex_state = 16}, - [143] = {.lex_state = 126, .external_lex_state = 4}, - [144] = {.lex_state = 130, .external_lex_state = 8}, + [139] = {.lex_state = 158, .external_lex_state = 6}, + [140] = {.lex_state = 160, .external_lex_state = 16}, + [141] = {.lex_state = 160, .external_lex_state = 16}, + [142] = {.lex_state = 160, .external_lex_state = 16}, + [143] = {.lex_state = 127, .external_lex_state = 4}, + [144] = {.lex_state = 131, .external_lex_state = 8}, [145] = {.lex_state = 56, .external_lex_state = 2}, [146] = {.lex_state = 56, .external_lex_state = 2}, [147] = {.lex_state = 73}, @@ -5221,30 +5226,30 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [150] = {.lex_state = 77}, [151] = {.lex_state = 83, .external_lex_state = 3}, [152] = {.lex_state = 83, .external_lex_state = 4}, - [153] = {.lex_state = 109, .external_lex_state = 5}, + [153] = {.lex_state = 110, .external_lex_state = 5}, [154] = {.lex_state = 83, .external_lex_state = 4}, [155] = {.lex_state = 88, .external_lex_state = 7}, - [156] = {.lex_state = 113, .external_lex_state = 8}, + [156] = {.lex_state = 114, .external_lex_state = 8}, [157] = {.lex_state = 56, .external_lex_state = 2}, [158] = {.lex_state = 73, .external_lex_state = 2}, - [159] = {.lex_state = 126, .external_lex_state = 4}, - [160] = {.lex_state = 130, .external_lex_state = 8}, + [159] = {.lex_state = 127, .external_lex_state = 4}, + [160] = {.lex_state = 131, .external_lex_state = 8}, [161] = {.lex_state = 56, .external_lex_state = 2}, [162] = {.lex_state = 77}, [163] = {.lex_state = 56, .external_lex_state = 2}, - [164] = {.lex_state = 162, .external_lex_state = 2}, + [164] = {.lex_state = 163, .external_lex_state = 2}, [165] = {.lex_state = 56, .external_lex_state = 2}, - [166] = {.lex_state = 132, .external_lex_state = 4}, - [167] = {.lex_state = 165, .external_lex_state = 17}, + [166] = {.lex_state = 133, .external_lex_state = 4}, + [167] = {.lex_state = 166, .external_lex_state = 17}, [168] = {.lex_state = 56}, - [169] = {.lex_state = 168}, + [169] = {.lex_state = 169}, [170] = {.lex_state = 73}, [171] = {.lex_state = 56, .external_lex_state = 18}, [172] = {.lex_state = 73}, [173] = {.lex_state = 88, .external_lex_state = 5}, [174] = {.lex_state = 88, .external_lex_state = 5}, - [175] = {.lex_state = 132, .external_lex_state = 4}, - [176] = {.lex_state = 188, .external_lex_state = 7}, + [175] = {.lex_state = 133, .external_lex_state = 4}, + [176] = {.lex_state = 189, .external_lex_state = 7}, [177] = {.lex_state = 88, .external_lex_state = 7}, [178] = {.lex_state = 56, .external_lex_state = 2}, [179] = {.lex_state = 88, .external_lex_state = 7}, @@ -5252,274 +5257,274 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [181] = {.lex_state = 73, .external_lex_state = 15}, [182] = {.lex_state = 73, .external_lex_state = 15}, [183] = {.lex_state = 73, .external_lex_state = 2}, - [184] = {.lex_state = 192, .external_lex_state = 11}, - [185] = {.lex_state = 192, .external_lex_state = 11}, - [186] = {.lex_state = 192, .external_lex_state = 11}, - [187] = {.lex_state = 130, .external_lex_state = 8}, - [188] = {.lex_state = 194}, - [189] = {.lex_state = 113, .external_lex_state = 19}, + [184] = {.lex_state = 193, .external_lex_state = 11}, + [185] = {.lex_state = 193, .external_lex_state = 11}, + [186] = {.lex_state = 193, .external_lex_state = 11}, + [187] = {.lex_state = 131, .external_lex_state = 8}, + [188] = {.lex_state = 195}, + [189] = {.lex_state = 114, .external_lex_state = 19}, [190] = {.lex_state = 91}, [191] = {.lex_state = 98}, - [192] = {.lex_state = 113, .external_lex_state = 19}, + [192] = {.lex_state = 114, .external_lex_state = 19}, [193] = {.lex_state = 107, .external_lex_state = 6}, [194] = {.lex_state = 56, .external_lex_state = 2}, [195] = {.lex_state = 56, .external_lex_state = 2}, [196] = {.lex_state = 56, .external_lex_state = 2}, - [197] = {.lex_state = 119, .external_lex_state = 4}, + [197] = {.lex_state = 120, .external_lex_state = 4}, [198] = {.lex_state = 77}, [199] = {.lex_state = 77}, - [200] = {.lex_state = 196, .external_lex_state = 10}, + [200] = {.lex_state = 197, .external_lex_state = 10}, [201] = {.lex_state = 91}, [202] = {.lex_state = 98}, - [203] = {.lex_state = 196, .external_lex_state = 10}, + [203] = {.lex_state = 197, .external_lex_state = 10}, [204] = {.lex_state = 107, .external_lex_state = 6}, [205] = {.lex_state = 56, .external_lex_state = 2}, [206] = {.lex_state = 56, .external_lex_state = 2}, [207] = {.lex_state = 56, .external_lex_state = 2}, - [208] = {.lex_state = 196, .external_lex_state = 4}, + [208] = {.lex_state = 197, .external_lex_state = 4}, [209] = {.lex_state = 73}, [210] = {.lex_state = 73}, [211] = {.lex_state = 56, .external_lex_state = 2}, - [212] = {.lex_state = 188, .external_lex_state = 7}, + [212] = {.lex_state = 189, .external_lex_state = 7}, [213] = {.lex_state = 73}, [214] = {.lex_state = 56, .external_lex_state = 2}, [215] = {.lex_state = 73}, - [216] = {.lex_state = 119, .external_lex_state = 4}, + [216] = {.lex_state = 120, .external_lex_state = 4}, [217] = {.lex_state = 73}, - [218] = {.lex_state = 122, .external_lex_state = 10}, - [219] = {.lex_state = 122, .external_lex_state = 10}, - [220] = {.lex_state = 151}, + [218] = {.lex_state = 123, .external_lex_state = 10}, + [219] = {.lex_state = 123, .external_lex_state = 10}, + [220] = {.lex_state = 152}, [221] = {.lex_state = 91}, - [222] = {.lex_state = 122, .external_lex_state = 10}, - [223] = {.lex_state = 122, .external_lex_state = 10}, - [224] = {.lex_state = 122, .external_lex_state = 10}, - [225] = {.lex_state = 119, .external_lex_state = 4}, + [222] = {.lex_state = 123, .external_lex_state = 10}, + [223] = {.lex_state = 123, .external_lex_state = 10}, + [224] = {.lex_state = 123, .external_lex_state = 10}, + [225] = {.lex_state = 120, .external_lex_state = 4}, [226] = {.lex_state = 73}, [227] = {.lex_state = 62}, - [228] = {.lex_state = 157, .external_lex_state = 16}, - [229] = {.lex_state = 160, .external_lex_state = 6}, - [230] = {.lex_state = 157, .external_lex_state = 16}, - [231] = {.lex_state = 157, .external_lex_state = 16}, - [232] = {.lex_state = 126, .external_lex_state = 4}, - [233] = {.lex_state = 130, .external_lex_state = 8}, + [228] = {.lex_state = 158, .external_lex_state = 6}, + [229] = {.lex_state = 160, .external_lex_state = 16}, + [230] = {.lex_state = 160, .external_lex_state = 16}, + [231] = {.lex_state = 160, .external_lex_state = 16}, + [232] = {.lex_state = 127, .external_lex_state = 4}, + [233] = {.lex_state = 131, .external_lex_state = 8}, [234] = {.lex_state = 56, .external_lex_state = 2}, [235] = {.lex_state = 83, .external_lex_state = 4}, - [236] = {.lex_state = 113, .external_lex_state = 8}, + [236] = {.lex_state = 114, .external_lex_state = 8}, [237] = {.lex_state = 56, .external_lex_state = 2}, - [238] = {.lex_state = 126, .external_lex_state = 4}, - [239] = {.lex_state = 130, .external_lex_state = 8}, + [238] = {.lex_state = 127, .external_lex_state = 4}, + [239] = {.lex_state = 131, .external_lex_state = 8}, [240] = {.lex_state = 56, .external_lex_state = 2}, [241] = {.lex_state = 77}, - [242] = {.lex_state = 198, .external_lex_state = 20}, - [243] = {.lex_state = 200, .external_lex_state = 21}, - [244] = {.lex_state = 117, .external_lex_state = 9}, + [242] = {.lex_state = 199, .external_lex_state = 20}, + [243] = {.lex_state = 201, .external_lex_state = 21}, + [244] = {.lex_state = 118, .external_lex_state = 9}, [245] = {.lex_state = 73}, - [246] = {.lex_state = 124}, - [247] = {.lex_state = 134, .external_lex_state = 12}, - [248] = {.lex_state = 147}, + [246] = {.lex_state = 125}, + [247] = {.lex_state = 135, .external_lex_state = 12}, + [248] = {.lex_state = 148}, [249] = {.lex_state = 62}, - [250] = {.lex_state = 126, .external_lex_state = 14}, - [251] = {.lex_state = 126, .external_lex_state = 14}, + [250] = {.lex_state = 127, .external_lex_state = 14}, + [251] = {.lex_state = 127, .external_lex_state = 14}, [252] = {.lex_state = 62}, - [253] = {.lex_state = 126, .external_lex_state = 3}, - [254] = {.lex_state = 126, .external_lex_state = 10}, - [255] = {.lex_state = 126, .external_lex_state = 10}, - [256] = {.lex_state = 126, .external_lex_state = 4}, - [257] = {.lex_state = 115, .external_lex_state = 5}, + [253] = {.lex_state = 127, .external_lex_state = 3}, + [254] = {.lex_state = 127, .external_lex_state = 10}, + [255] = {.lex_state = 127, .external_lex_state = 10}, + [256] = {.lex_state = 127, .external_lex_state = 4}, + [257] = {.lex_state = 116, .external_lex_state = 5}, [258] = {.lex_state = 77}, [259] = {.lex_state = 56, .external_lex_state = 2}, - [260] = {.lex_state = 132, .external_lex_state = 4}, - [261] = {.lex_state = 203, .external_lex_state = 2}, + [260] = {.lex_state = 133, .external_lex_state = 4}, + [261] = {.lex_state = 204, .external_lex_state = 2}, [262] = {.lex_state = 56, .external_lex_state = 2}, [263] = {.lex_state = 56}, - [264] = {.lex_state = 168}, + [264] = {.lex_state = 169}, [265] = {.lex_state = 73}, [266] = {.lex_state = 73}, - [267] = {.lex_state = 115, .external_lex_state = 5}, - [268] = {.lex_state = 115, .external_lex_state = 5}, - [269] = {.lex_state = 205, .external_lex_state = 7}, - [270] = {.lex_state = 115, .external_lex_state = 7}, - [271] = {.lex_state = 126, .external_lex_state = 4}, - [272] = {.lex_state = 130, .external_lex_state = 8}, + [267] = {.lex_state = 116, .external_lex_state = 5}, + [268] = {.lex_state = 116, .external_lex_state = 5}, + [269] = {.lex_state = 206, .external_lex_state = 7}, + [270] = {.lex_state = 116, .external_lex_state = 7}, + [271] = {.lex_state = 127, .external_lex_state = 4}, + [272] = {.lex_state = 131, .external_lex_state = 8}, [273] = {.lex_state = 56, .external_lex_state = 2}, - [274] = {.lex_state = 115, .external_lex_state = 7}, - [275] = {.lex_state = 117, .external_lex_state = 9}, + [274] = {.lex_state = 116, .external_lex_state = 7}, + [275] = {.lex_state = 118, .external_lex_state = 9}, [276] = {.lex_state = 77}, - [277] = {.lex_state = 207, .external_lex_state = 13}, - [278] = {.lex_state = 207, .external_lex_state = 13}, - [279] = {.lex_state = 207}, - [280] = {.lex_state = 134, .external_lex_state = 12}, + [277] = {.lex_state = 208, .external_lex_state = 13}, + [278] = {.lex_state = 208, .external_lex_state = 13}, + [279] = {.lex_state = 208}, + [280] = {.lex_state = 135, .external_lex_state = 12}, [281] = {.lex_state = 73}, - [282] = {.lex_state = 134, .external_lex_state = 11}, - [283] = {.lex_state = 134, .external_lex_state = 11}, - [284] = {.lex_state = 151}, + [282] = {.lex_state = 135, .external_lex_state = 11}, + [283] = {.lex_state = 135, .external_lex_state = 11}, + [284] = {.lex_state = 152}, [285] = {.lex_state = 91}, - [286] = {.lex_state = 134, .external_lex_state = 11}, - [287] = {.lex_state = 134, .external_lex_state = 11}, - [288] = {.lex_state = 134, .external_lex_state = 11}, + [286] = {.lex_state = 135, .external_lex_state = 11}, + [287] = {.lex_state = 135, .external_lex_state = 11}, + [288] = {.lex_state = 135, .external_lex_state = 11}, [289] = {.lex_state = 62}, - [290] = {.lex_state = 157, .external_lex_state = 16}, - [291] = {.lex_state = 160, .external_lex_state = 6}, - [292] = {.lex_state = 157, .external_lex_state = 16}, - [293] = {.lex_state = 157, .external_lex_state = 16}, - [294] = {.lex_state = 126, .external_lex_state = 4}, - [295] = {.lex_state = 130, .external_lex_state = 8}, + [290] = {.lex_state = 158, .external_lex_state = 6}, + [291] = {.lex_state = 160, .external_lex_state = 16}, + [292] = {.lex_state = 160, .external_lex_state = 16}, + [293] = {.lex_state = 160, .external_lex_state = 16}, + [294] = {.lex_state = 127, .external_lex_state = 4}, + [295] = {.lex_state = 131, .external_lex_state = 8}, [296] = {.lex_state = 56, .external_lex_state = 2}, [297] = {.lex_state = 83, .external_lex_state = 4}, - [298] = {.lex_state = 113, .external_lex_state = 8}, + [298] = {.lex_state = 114, .external_lex_state = 8}, [299] = {.lex_state = 56, .external_lex_state = 2}, - [300] = {.lex_state = 126, .external_lex_state = 4}, - [301] = {.lex_state = 130, .external_lex_state = 8}, + [300] = {.lex_state = 127, .external_lex_state = 4}, + [301] = {.lex_state = 131, .external_lex_state = 8}, [302] = {.lex_state = 56, .external_lex_state = 2}, [303] = {.lex_state = 77}, - [304] = {.lex_state = 188, .external_lex_state = 21}, - [305] = {.lex_state = 209}, - [306] = {.lex_state = 207}, - [307] = {.lex_state = 147}, + [304] = {.lex_state = 189, .external_lex_state = 21}, + [305] = {.lex_state = 210}, + [306] = {.lex_state = 208}, + [307] = {.lex_state = 148}, [308] = {.lex_state = 73}, - [309] = {.lex_state = 147, .external_lex_state = 13}, - [310] = {.lex_state = 214, .external_lex_state = 13}, - [311] = {.lex_state = 151}, + [309] = {.lex_state = 148, .external_lex_state = 13}, + [310] = {.lex_state = 215, .external_lex_state = 13}, + [311] = {.lex_state = 152}, [312] = {.lex_state = 91}, - [313] = {.lex_state = 214, .external_lex_state = 13}, - [314] = {.lex_state = 214, .external_lex_state = 13}, - [315] = {.lex_state = 214, .external_lex_state = 13}, + [313] = {.lex_state = 215, .external_lex_state = 13}, + [314] = {.lex_state = 215, .external_lex_state = 13}, + [315] = {.lex_state = 215, .external_lex_state = 13}, [316] = {.lex_state = 62}, - [317] = {.lex_state = 157, .external_lex_state = 16}, - [318] = {.lex_state = 160, .external_lex_state = 6}, - [319] = {.lex_state = 157, .external_lex_state = 16}, - [320] = {.lex_state = 157, .external_lex_state = 16}, - [321] = {.lex_state = 126, .external_lex_state = 4}, - [322] = {.lex_state = 130, .external_lex_state = 8}, + [317] = {.lex_state = 158, .external_lex_state = 6}, + [318] = {.lex_state = 160, .external_lex_state = 16}, + [319] = {.lex_state = 160, .external_lex_state = 16}, + [320] = {.lex_state = 160, .external_lex_state = 16}, + [321] = {.lex_state = 127, .external_lex_state = 4}, + [322] = {.lex_state = 131, .external_lex_state = 8}, [323] = {.lex_state = 56, .external_lex_state = 2}, [324] = {.lex_state = 83, .external_lex_state = 4}, - [325] = {.lex_state = 113, .external_lex_state = 8}, + [325] = {.lex_state = 114, .external_lex_state = 8}, [326] = {.lex_state = 56, .external_lex_state = 2}, - [327] = {.lex_state = 126, .external_lex_state = 4}, - [328] = {.lex_state = 130, .external_lex_state = 8}, + [327] = {.lex_state = 127, .external_lex_state = 4}, + [328] = {.lex_state = 131, .external_lex_state = 8}, [329] = {.lex_state = 56, .external_lex_state = 2}, [330] = {.lex_state = 77}, - [331] = {.lex_state = 209}, - [332] = {.lex_state = 117, .external_lex_state = 9}, + [331] = {.lex_state = 210}, + [332] = {.lex_state = 118, .external_lex_state = 9}, [333] = {.lex_state = 73}, [334] = {.lex_state = 83, .external_lex_state = 14}, - [335] = {.lex_state = 126, .external_lex_state = 14}, - [336] = {.lex_state = 151}, + [335] = {.lex_state = 127, .external_lex_state = 14}, + [336] = {.lex_state = 152}, [337] = {.lex_state = 91}, - [338] = {.lex_state = 126, .external_lex_state = 14}, - [339] = {.lex_state = 126, .external_lex_state = 14}, - [340] = {.lex_state = 126, .external_lex_state = 14}, + [338] = {.lex_state = 127, .external_lex_state = 14}, + [339] = {.lex_state = 127, .external_lex_state = 14}, + [340] = {.lex_state = 127, .external_lex_state = 14}, [341] = {.lex_state = 62}, - [342] = {.lex_state = 157, .external_lex_state = 16}, - [343] = {.lex_state = 160, .external_lex_state = 6}, - [344] = {.lex_state = 157, .external_lex_state = 16}, - [345] = {.lex_state = 157, .external_lex_state = 16}, - [346] = {.lex_state = 126, .external_lex_state = 4}, - [347] = {.lex_state = 130, .external_lex_state = 8}, + [342] = {.lex_state = 158, .external_lex_state = 6}, + [343] = {.lex_state = 160, .external_lex_state = 16}, + [344] = {.lex_state = 160, .external_lex_state = 16}, + [345] = {.lex_state = 160, .external_lex_state = 16}, + [346] = {.lex_state = 127, .external_lex_state = 4}, + [347] = {.lex_state = 131, .external_lex_state = 8}, [348] = {.lex_state = 56, .external_lex_state = 2}, [349] = {.lex_state = 83, .external_lex_state = 4}, - [350] = {.lex_state = 113, .external_lex_state = 8}, + [350] = {.lex_state = 114, .external_lex_state = 8}, [351] = {.lex_state = 56, .external_lex_state = 2}, - [352] = {.lex_state = 126, .external_lex_state = 4}, - [353] = {.lex_state = 130, .external_lex_state = 8}, + [352] = {.lex_state = 127, .external_lex_state = 4}, + [353] = {.lex_state = 131, .external_lex_state = 8}, [354] = {.lex_state = 56, .external_lex_state = 2}, [355] = {.lex_state = 83, .external_lex_state = 3}, [356] = {.lex_state = 73}, [357] = {.lex_state = 83, .external_lex_state = 10}, - [358] = {.lex_state = 126, .external_lex_state = 10}, - [359] = {.lex_state = 151}, + [358] = {.lex_state = 127, .external_lex_state = 10}, + [359] = {.lex_state = 152}, [360] = {.lex_state = 91}, - [361] = {.lex_state = 126, .external_lex_state = 10}, - [362] = {.lex_state = 126, .external_lex_state = 10}, - [363] = {.lex_state = 126, .external_lex_state = 10}, + [361] = {.lex_state = 127, .external_lex_state = 10}, + [362] = {.lex_state = 127, .external_lex_state = 10}, + [363] = {.lex_state = 127, .external_lex_state = 10}, [364] = {.lex_state = 62}, - [365] = {.lex_state = 157, .external_lex_state = 16}, - [366] = {.lex_state = 160, .external_lex_state = 6}, - [367] = {.lex_state = 157, .external_lex_state = 16}, - [368] = {.lex_state = 157, .external_lex_state = 16}, - [369] = {.lex_state = 126, .external_lex_state = 4}, - [370] = {.lex_state = 130, .external_lex_state = 8}, + [365] = {.lex_state = 158, .external_lex_state = 6}, + [366] = {.lex_state = 160, .external_lex_state = 16}, + [367] = {.lex_state = 160, .external_lex_state = 16}, + [368] = {.lex_state = 160, .external_lex_state = 16}, + [369] = {.lex_state = 127, .external_lex_state = 4}, + [370] = {.lex_state = 131, .external_lex_state = 8}, [371] = {.lex_state = 56, .external_lex_state = 2}, [372] = {.lex_state = 83, .external_lex_state = 4}, - [373] = {.lex_state = 113, .external_lex_state = 8}, + [373] = {.lex_state = 114, .external_lex_state = 8}, [374] = {.lex_state = 56, .external_lex_state = 2}, - [375] = {.lex_state = 126, .external_lex_state = 4}, - [376] = {.lex_state = 130, .external_lex_state = 8}, + [375] = {.lex_state = 127, .external_lex_state = 4}, + [376] = {.lex_state = 131, .external_lex_state = 8}, [377] = {.lex_state = 56, .external_lex_state = 2}, [378] = {.lex_state = 83, .external_lex_state = 4}, [379] = {.lex_state = 73}, [380] = {.lex_state = 73, .external_lex_state = 15}, [381] = {.lex_state = 73, .external_lex_state = 15}, - [382] = {.lex_state = 151}, + [382] = {.lex_state = 152}, [383] = {.lex_state = 91}, [384] = {.lex_state = 73, .external_lex_state = 15}, [385] = {.lex_state = 73, .external_lex_state = 15}, [386] = {.lex_state = 73, .external_lex_state = 15}, [387] = {.lex_state = 62}, - [388] = {.lex_state = 157, .external_lex_state = 16}, - [389] = {.lex_state = 160, .external_lex_state = 6}, - [390] = {.lex_state = 157, .external_lex_state = 16}, - [391] = {.lex_state = 157, .external_lex_state = 16}, - [392] = {.lex_state = 126, .external_lex_state = 4}, - [393] = {.lex_state = 130, .external_lex_state = 8}, + [388] = {.lex_state = 158, .external_lex_state = 6}, + [389] = {.lex_state = 160, .external_lex_state = 16}, + [390] = {.lex_state = 160, .external_lex_state = 16}, + [391] = {.lex_state = 160, .external_lex_state = 16}, + [392] = {.lex_state = 127, .external_lex_state = 4}, + [393] = {.lex_state = 131, .external_lex_state = 8}, [394] = {.lex_state = 56, .external_lex_state = 2}, [395] = {.lex_state = 83, .external_lex_state = 4}, - [396] = {.lex_state = 113, .external_lex_state = 8}, + [396] = {.lex_state = 114, .external_lex_state = 8}, [397] = {.lex_state = 56, .external_lex_state = 2}, - [398] = {.lex_state = 126, .external_lex_state = 4}, - [399] = {.lex_state = 130, .external_lex_state = 8}, + [398] = {.lex_state = 127, .external_lex_state = 4}, + [399] = {.lex_state = 131, .external_lex_state = 8}, [400] = {.lex_state = 56, .external_lex_state = 2}, - [401] = {.lex_state = 115, .external_lex_state = 5}, + [401] = {.lex_state = 116, .external_lex_state = 5}, [402] = {.lex_state = 88, .external_lex_state = 5}, - [403] = {.lex_state = 115, .external_lex_state = 5}, + [403] = {.lex_state = 116, .external_lex_state = 5}, [404] = {.lex_state = 91, .external_lex_state = 13}, [405] = {.lex_state = 91, .external_lex_state = 13}, [406] = {.lex_state = 91, .external_lex_state = 13}, [407] = {.lex_state = 91}, [408] = {.lex_state = 62}, - [409] = {.lex_state = 157, .external_lex_state = 16}, - [410] = {.lex_state = 160, .external_lex_state = 6}, - [411] = {.lex_state = 157, .external_lex_state = 16}, - [412] = {.lex_state = 157, .external_lex_state = 16}, - [413] = {.lex_state = 126, .external_lex_state = 4}, - [414] = {.lex_state = 130, .external_lex_state = 8}, + [409] = {.lex_state = 158, .external_lex_state = 6}, + [410] = {.lex_state = 160, .external_lex_state = 16}, + [411] = {.lex_state = 160, .external_lex_state = 16}, + [412] = {.lex_state = 160, .external_lex_state = 16}, + [413] = {.lex_state = 127, .external_lex_state = 4}, + [414] = {.lex_state = 131, .external_lex_state = 8}, [415] = {.lex_state = 56, .external_lex_state = 2}, [416] = {.lex_state = 83, .external_lex_state = 4}, - [417] = {.lex_state = 113, .external_lex_state = 8}, + [417] = {.lex_state = 114, .external_lex_state = 8}, [418] = {.lex_state = 56, .external_lex_state = 2}, - [419] = {.lex_state = 151}, + [419] = {.lex_state = 152}, [420] = {.lex_state = 91}, [421] = {.lex_state = 73}, - [422] = {.lex_state = 217, .external_lex_state = 16}, - [423] = {.lex_state = 115, .external_lex_state = 5}, - [424] = {.lex_state = 219, .external_lex_state = 22}, - [425] = {.lex_state = 91}, - [426] = {.lex_state = 98}, - [427] = {.lex_state = 219, .external_lex_state = 22}, - [428] = {.lex_state = 107, .external_lex_state = 6}, - [429] = {.lex_state = 221}, - [430] = {.lex_state = 56, .external_lex_state = 2}, - [431] = {.lex_state = 56, .external_lex_state = 2}, - [432] = {.lex_state = 56, .external_lex_state = 2}, - [433] = {.lex_state = 219, .external_lex_state = 16}, - [434] = {.lex_state = 62}, - [435] = {.lex_state = 157, .external_lex_state = 16}, - [436] = {.lex_state = 157, .external_lex_state = 16}, - [437] = {.lex_state = 157, .external_lex_state = 16}, - [438] = {.lex_state = 115, .external_lex_state = 5}, - [439] = {.lex_state = 221}, - [440] = {.lex_state = 219, .external_lex_state = 16}, - [441] = {.lex_state = 115, .external_lex_state = 5}, - [442] = {.lex_state = 221}, - [443] = {.lex_state = 219, .external_lex_state = 16}, - [444] = {.lex_state = 115, .external_lex_state = 5}, - [445] = {.lex_state = 203, .external_lex_state = 2}, - [446] = {.lex_state = 126, .external_lex_state = 4}, - [447] = {.lex_state = 130, .external_lex_state = 8}, + [422] = {.lex_state = 218, .external_lex_state = 16}, + [423] = {.lex_state = 62}, + [424] = {.lex_state = 160, .external_lex_state = 16}, + [425] = {.lex_state = 160, .external_lex_state = 16}, + [426] = {.lex_state = 160, .external_lex_state = 16}, + [427] = {.lex_state = 116, .external_lex_state = 5}, + [428] = {.lex_state = 220, .external_lex_state = 22}, + [429] = {.lex_state = 91}, + [430] = {.lex_state = 98}, + [431] = {.lex_state = 220, .external_lex_state = 22}, + [432] = {.lex_state = 107, .external_lex_state = 6}, + [433] = {.lex_state = 222}, + [434] = {.lex_state = 56, .external_lex_state = 2}, + [435] = {.lex_state = 56, .external_lex_state = 2}, + [436] = {.lex_state = 56, .external_lex_state = 2}, + [437] = {.lex_state = 220, .external_lex_state = 16}, + [438] = {.lex_state = 116, .external_lex_state = 5}, + [439] = {.lex_state = 222}, + [440] = {.lex_state = 220, .external_lex_state = 16}, + [441] = {.lex_state = 116, .external_lex_state = 5}, + [442] = {.lex_state = 222}, + [443] = {.lex_state = 220, .external_lex_state = 16}, + [444] = {.lex_state = 116, .external_lex_state = 5}, + [445] = {.lex_state = 204, .external_lex_state = 2}, + [446] = {.lex_state = 127, .external_lex_state = 4}, + [447] = {.lex_state = 131, .external_lex_state = 8}, [448] = {.lex_state = 73}, - [449] = {.lex_state = 124}, - [450] = {.lex_state = 134, .external_lex_state = 12}, - [451] = {.lex_state = 147}, + [449] = {.lex_state = 125}, + [450] = {.lex_state = 135, .external_lex_state = 12}, + [451] = {.lex_state = 148}, [452] = {.lex_state = 83, .external_lex_state = 3}, [453] = {.lex_state = 83, .external_lex_state = 4}, [454] = {.lex_state = 77}, @@ -5529,1417 +5534,1417 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [458] = {.lex_state = 56}, [459] = {.lex_state = 73}, [460] = {.lex_state = 73}, - [461] = {.lex_state = 226, .external_lex_state = 7}, + [461] = {.lex_state = 227, .external_lex_state = 7}, [462] = {.lex_state = 88, .external_lex_state = 7}, [463] = {.lex_state = 83, .external_lex_state = 4}, - [464] = {.lex_state = 113, .external_lex_state = 8}, + [464] = {.lex_state = 114, .external_lex_state = 8}, [465] = {.lex_state = 88, .external_lex_state = 7}, - [466] = {.lex_state = 115, .external_lex_state = 5}, - [467] = {.lex_state = 203, .external_lex_state = 2}, - [468] = {.lex_state = 126, .external_lex_state = 4}, - [469] = {.lex_state = 130, .external_lex_state = 8}, - [470] = {.lex_state = 124}, - [471] = {.lex_state = 132, .external_lex_state = 4}, - [472] = {.lex_state = 130, .external_lex_state = 8}, + [466] = {.lex_state = 116, .external_lex_state = 5}, + [467] = {.lex_state = 204, .external_lex_state = 2}, + [468] = {.lex_state = 127, .external_lex_state = 4}, + [469] = {.lex_state = 131, .external_lex_state = 8}, + [470] = {.lex_state = 125}, + [471] = {.lex_state = 133, .external_lex_state = 4}, + [472] = {.lex_state = 131, .external_lex_state = 8}, [473] = {.lex_state = 83, .external_lex_state = 4}, - [474] = {.lex_state = 113, .external_lex_state = 8}, - [475] = {.lex_state = 132, .external_lex_state = 4}, + [474] = {.lex_state = 114, .external_lex_state = 8}, + [475] = {.lex_state = 133, .external_lex_state = 4}, [476] = {.lex_state = 98}, [477] = {.lex_state = 107, .external_lex_state = 6}, - [478] = {.lex_state = 165, .external_lex_state = 17}, + [478] = {.lex_state = 166, .external_lex_state = 17}, [479] = {.lex_state = 73}, [480] = {.lex_state = 88, .external_lex_state = 5}, [481] = {.lex_state = 88, .external_lex_state = 5}, - [482] = {.lex_state = 115, .external_lex_state = 7}, - [483] = {.lex_state = 188, .external_lex_state = 5}, - [484] = {.lex_state = 188, .external_lex_state = 5}, - [485] = {.lex_state = 228, .external_lex_state = 7}, - [486] = {.lex_state = 228, .external_lex_state = 7}, - [487] = {.lex_state = 188, .external_lex_state = 5}, - [488] = {.lex_state = 188, .external_lex_state = 5}, - [489] = {.lex_state = 228, .external_lex_state = 7}, - [490] = {.lex_state = 132, .external_lex_state = 4}, - [491] = {.lex_state = 188, .external_lex_state = 7}, - [492] = {.lex_state = 188, .external_lex_state = 7}, + [482] = {.lex_state = 116, .external_lex_state = 7}, + [483] = {.lex_state = 189, .external_lex_state = 5}, + [484] = {.lex_state = 189, .external_lex_state = 5}, + [485] = {.lex_state = 229, .external_lex_state = 7}, + [486] = {.lex_state = 229, .external_lex_state = 7}, + [487] = {.lex_state = 189, .external_lex_state = 5}, + [488] = {.lex_state = 189, .external_lex_state = 5}, + [489] = {.lex_state = 229, .external_lex_state = 7}, + [490] = {.lex_state = 133, .external_lex_state = 4}, + [491] = {.lex_state = 189, .external_lex_state = 7}, + [492] = {.lex_state = 189, .external_lex_state = 7}, [493] = {.lex_state = 88, .external_lex_state = 7}, [494] = {.lex_state = 88, .external_lex_state = 7}, - [495] = {.lex_state = 192, .external_lex_state = 12}, + [495] = {.lex_state = 193, .external_lex_state = 12}, [496] = {.lex_state = 62, .external_lex_state = 13}, - [497] = {.lex_state = 192, .external_lex_state = 11}, - [498] = {.lex_state = 192, .external_lex_state = 12}, + [497] = {.lex_state = 193, .external_lex_state = 11}, + [498] = {.lex_state = 193, .external_lex_state = 12}, [499] = {.lex_state = 62, .external_lex_state = 13}, - [500] = {.lex_state = 134, .external_lex_state = 12}, - [501] = {.lex_state = 130, .external_lex_state = 8}, - [502] = {.lex_state = 194, .external_lex_state = 13}, + [500] = {.lex_state = 135, .external_lex_state = 12}, + [501] = {.lex_state = 131, .external_lex_state = 8}, + [502] = {.lex_state = 195, .external_lex_state = 13}, [503] = {.lex_state = 91}, [504] = {.lex_state = 98}, - [505] = {.lex_state = 194, .external_lex_state = 13}, + [505] = {.lex_state = 195, .external_lex_state = 13}, [506] = {.lex_state = 107, .external_lex_state = 6}, [507] = {.lex_state = 56, .external_lex_state = 2}, [508] = {.lex_state = 56, .external_lex_state = 2}, [509] = {.lex_state = 56, .external_lex_state = 2}, - [510] = {.lex_state = 194}, + [510] = {.lex_state = 195}, [511] = {.lex_state = 73}, - [512] = {.lex_state = 113, .external_lex_state = 19}, - [513] = {.lex_state = 130, .external_lex_state = 19}, - [514] = {.lex_state = 151}, + [512] = {.lex_state = 114, .external_lex_state = 19}, + [513] = {.lex_state = 131, .external_lex_state = 19}, + [514] = {.lex_state = 152}, [515] = {.lex_state = 91}, - [516] = {.lex_state = 130, .external_lex_state = 19}, - [517] = {.lex_state = 130, .external_lex_state = 19}, - [518] = {.lex_state = 130, .external_lex_state = 19}, + [516] = {.lex_state = 131, .external_lex_state = 19}, + [517] = {.lex_state = 131, .external_lex_state = 19}, + [518] = {.lex_state = 131, .external_lex_state = 19}, [519] = {.lex_state = 62}, - [520] = {.lex_state = 157, .external_lex_state = 16}, - [521] = {.lex_state = 160, .external_lex_state = 6}, - [522] = {.lex_state = 157, .external_lex_state = 16}, - [523] = {.lex_state = 157, .external_lex_state = 16}, - [524] = {.lex_state = 126, .external_lex_state = 4}, - [525] = {.lex_state = 130, .external_lex_state = 8}, + [520] = {.lex_state = 158, .external_lex_state = 6}, + [521] = {.lex_state = 160, .external_lex_state = 16}, + [522] = {.lex_state = 160, .external_lex_state = 16}, + [523] = {.lex_state = 160, .external_lex_state = 16}, + [524] = {.lex_state = 127, .external_lex_state = 4}, + [525] = {.lex_state = 131, .external_lex_state = 8}, [526] = {.lex_state = 56, .external_lex_state = 2}, [527] = {.lex_state = 83, .external_lex_state = 4}, - [528] = {.lex_state = 113, .external_lex_state = 8}, + [528] = {.lex_state = 114, .external_lex_state = 8}, [529] = {.lex_state = 56, .external_lex_state = 2}, - [530] = {.lex_state = 126, .external_lex_state = 4}, - [531] = {.lex_state = 130, .external_lex_state = 8}, + [530] = {.lex_state = 127, .external_lex_state = 4}, + [531] = {.lex_state = 131, .external_lex_state = 8}, [532] = {.lex_state = 56, .external_lex_state = 2}, - [533] = {.lex_state = 230}, - [534] = {.lex_state = 196, .external_lex_state = 4}, - [535] = {.lex_state = 207}, - [536] = {.lex_state = 196, .external_lex_state = 4}, + [533] = {.lex_state = 231}, + [534] = {.lex_state = 197, .external_lex_state = 4}, + [535] = {.lex_state = 208}, + [536] = {.lex_state = 197, .external_lex_state = 4}, [537] = {.lex_state = 73}, - [538] = {.lex_state = 196, .external_lex_state = 10}, - [539] = {.lex_state = 234, .external_lex_state = 10}, - [540] = {.lex_state = 151}, + [538] = {.lex_state = 197, .external_lex_state = 10}, + [539] = {.lex_state = 235, .external_lex_state = 10}, + [540] = {.lex_state = 152}, [541] = {.lex_state = 91}, - [542] = {.lex_state = 234, .external_lex_state = 10}, - [543] = {.lex_state = 234, .external_lex_state = 10}, - [544] = {.lex_state = 234, .external_lex_state = 10}, + [542] = {.lex_state = 235, .external_lex_state = 10}, + [543] = {.lex_state = 235, .external_lex_state = 10}, + [544] = {.lex_state = 235, .external_lex_state = 10}, [545] = {.lex_state = 62}, - [546] = {.lex_state = 157, .external_lex_state = 16}, - [547] = {.lex_state = 160, .external_lex_state = 6}, - [548] = {.lex_state = 157, .external_lex_state = 16}, - [549] = {.lex_state = 157, .external_lex_state = 16}, - [550] = {.lex_state = 126, .external_lex_state = 4}, - [551] = {.lex_state = 130, .external_lex_state = 8}, + [546] = {.lex_state = 158, .external_lex_state = 6}, + [547] = {.lex_state = 160, .external_lex_state = 16}, + [548] = {.lex_state = 160, .external_lex_state = 16}, + [549] = {.lex_state = 160, .external_lex_state = 16}, + [550] = {.lex_state = 127, .external_lex_state = 4}, + [551] = {.lex_state = 131, .external_lex_state = 8}, [552] = {.lex_state = 56, .external_lex_state = 2}, [553] = {.lex_state = 83, .external_lex_state = 4}, - [554] = {.lex_state = 113, .external_lex_state = 8}, + [554] = {.lex_state = 114, .external_lex_state = 8}, [555] = {.lex_state = 56, .external_lex_state = 2}, - [556] = {.lex_state = 126, .external_lex_state = 4}, - [557] = {.lex_state = 130, .external_lex_state = 8}, + [556] = {.lex_state = 127, .external_lex_state = 4}, + [557] = {.lex_state = 131, .external_lex_state = 8}, [558] = {.lex_state = 56, .external_lex_state = 2}, - [559] = {.lex_state = 119, .external_lex_state = 4}, + [559] = {.lex_state = 120, .external_lex_state = 4}, [560] = {.lex_state = 77}, - [561] = {.lex_state = 209}, - [562] = {.lex_state = 122, .external_lex_state = 10}, - [563] = {.lex_state = 122, .external_lex_state = 10}, - [564] = {.lex_state = 122, .external_lex_state = 4}, + [561] = {.lex_state = 210}, + [562] = {.lex_state = 123, .external_lex_state = 10}, + [563] = {.lex_state = 123, .external_lex_state = 10}, + [564] = {.lex_state = 123, .external_lex_state = 4}, [565] = {.lex_state = 56, .external_lex_state = 2}, - [566] = {.lex_state = 132, .external_lex_state = 4}, - [567] = {.lex_state = 228, .external_lex_state = 7}, + [566] = {.lex_state = 133, .external_lex_state = 4}, + [567] = {.lex_state = 229, .external_lex_state = 7}, [568] = {.lex_state = 56, .external_lex_state = 2}, - [569] = {.lex_state = 132, .external_lex_state = 4}, - [570] = {.lex_state = 188, .external_lex_state = 7}, - [571] = {.lex_state = 132, .external_lex_state = 4}, + [569] = {.lex_state = 133, .external_lex_state = 4}, + [570] = {.lex_state = 189, .external_lex_state = 7}, + [571] = {.lex_state = 133, .external_lex_state = 4}, [572] = {.lex_state = 56, .external_lex_state = 2}, [573] = {.lex_state = 56, .external_lex_state = 2}, [574] = {.lex_state = 73}, [575] = {.lex_state = 73}, [576] = {.lex_state = 56, .external_lex_state = 2}, [577] = {.lex_state = 73}, - [578] = {.lex_state = 122, .external_lex_state = 10}, + [578] = {.lex_state = 123, .external_lex_state = 10}, [579] = {.lex_state = 73}, - [580] = {.lex_state = 119, .external_lex_state = 4}, - [581] = {.lex_state = 122, .external_lex_state = 10}, - [582] = {.lex_state = 122, .external_lex_state = 10}, - [583] = {.lex_state = 151}, + [580] = {.lex_state = 120, .external_lex_state = 4}, + [581] = {.lex_state = 123, .external_lex_state = 10}, + [582] = {.lex_state = 123, .external_lex_state = 10}, + [583] = {.lex_state = 152}, [584] = {.lex_state = 73}, - [585] = {.lex_state = 119, .external_lex_state = 4}, - [586] = {.lex_state = 217, .external_lex_state = 16}, - [587] = {.lex_state = 122, .external_lex_state = 10}, - [588] = {.lex_state = 221}, - [589] = {.lex_state = 219, .external_lex_state = 16}, - [590] = {.lex_state = 62}, - [591] = {.lex_state = 157, .external_lex_state = 16}, - [592] = {.lex_state = 157, .external_lex_state = 16}, - [593] = {.lex_state = 157, .external_lex_state = 16}, - [594] = {.lex_state = 122, .external_lex_state = 10}, - [595] = {.lex_state = 221}, - [596] = {.lex_state = 219, .external_lex_state = 16}, - [597] = {.lex_state = 122, .external_lex_state = 10}, - [598] = {.lex_state = 221}, - [599] = {.lex_state = 219, .external_lex_state = 16}, - [600] = {.lex_state = 122, .external_lex_state = 10}, - [601] = {.lex_state = 203, .external_lex_state = 2}, - [602] = {.lex_state = 126, .external_lex_state = 4}, - [603] = {.lex_state = 130, .external_lex_state = 8}, + [585] = {.lex_state = 120, .external_lex_state = 4}, + [586] = {.lex_state = 218, .external_lex_state = 16}, + [587] = {.lex_state = 62}, + [588] = {.lex_state = 160, .external_lex_state = 16}, + [589] = {.lex_state = 160, .external_lex_state = 16}, + [590] = {.lex_state = 160, .external_lex_state = 16}, + [591] = {.lex_state = 123, .external_lex_state = 10}, + [592] = {.lex_state = 222}, + [593] = {.lex_state = 220, .external_lex_state = 16}, + [594] = {.lex_state = 123, .external_lex_state = 10}, + [595] = {.lex_state = 222}, + [596] = {.lex_state = 220, .external_lex_state = 16}, + [597] = {.lex_state = 123, .external_lex_state = 10}, + [598] = {.lex_state = 222}, + [599] = {.lex_state = 220, .external_lex_state = 16}, + [600] = {.lex_state = 123, .external_lex_state = 10}, + [601] = {.lex_state = 204, .external_lex_state = 2}, + [602] = {.lex_state = 127, .external_lex_state = 4}, + [603] = {.lex_state = 131, .external_lex_state = 8}, [604] = {.lex_state = 56, .external_lex_state = 2}, [605] = {.lex_state = 83, .external_lex_state = 4}, - [606] = {.lex_state = 113, .external_lex_state = 8}, - [607] = {.lex_state = 122, .external_lex_state = 10}, - [608] = {.lex_state = 203, .external_lex_state = 2}, - [609] = {.lex_state = 126, .external_lex_state = 4}, - [610] = {.lex_state = 130, .external_lex_state = 8}, - [611] = {.lex_state = 124}, - [612] = {.lex_state = 238, .external_lex_state = 21}, + [606] = {.lex_state = 114, .external_lex_state = 8}, + [607] = {.lex_state = 123, .external_lex_state = 10}, + [608] = {.lex_state = 204, .external_lex_state = 2}, + [609] = {.lex_state = 127, .external_lex_state = 4}, + [610] = {.lex_state = 131, .external_lex_state = 8}, + [611] = {.lex_state = 125}, + [612] = {.lex_state = 239, .external_lex_state = 21}, [613] = {.lex_state = 83, .external_lex_state = 4}, - [614] = {.lex_state = 113, .external_lex_state = 8}, - [615] = {.lex_state = 198, .external_lex_state = 20}, + [614] = {.lex_state = 114, .external_lex_state = 8}, + [615] = {.lex_state = 199, .external_lex_state = 20}, [616] = {.lex_state = 56}, [617] = {.lex_state = 73}, - [618] = {.lex_state = 132, .external_lex_state = 4}, - [619] = {.lex_state = 130, .external_lex_state = 19}, - [620] = {.lex_state = 130, .external_lex_state = 19}, - [621] = {.lex_state = 205, .external_lex_state = 7}, + [618] = {.lex_state = 133, .external_lex_state = 4}, + [619] = {.lex_state = 131, .external_lex_state = 19}, + [620] = {.lex_state = 131, .external_lex_state = 19}, + [621] = {.lex_state = 206, .external_lex_state = 7}, [622] = {.lex_state = 77}, - [623] = {.lex_state = 240, .external_lex_state = 21}, - [624] = {.lex_state = 205, .external_lex_state = 21}, - [625] = {.lex_state = 117, .external_lex_state = 9}, - [626] = {.lex_state = 126, .external_lex_state = 14}, - [627] = {.lex_state = 126, .external_lex_state = 3}, - [628] = {.lex_state = 126, .external_lex_state = 10}, - [629] = {.lex_state = 126, .external_lex_state = 4}, - [630] = {.lex_state = 115, .external_lex_state = 5}, - [631] = {.lex_state = 124}, - [632] = {.lex_state = 132, .external_lex_state = 4}, - [633] = {.lex_state = 126, .external_lex_state = 4}, - [634] = {.lex_state = 130, .external_lex_state = 8}, + [623] = {.lex_state = 241, .external_lex_state = 21}, + [624] = {.lex_state = 206, .external_lex_state = 21}, + [625] = {.lex_state = 118, .external_lex_state = 9}, + [626] = {.lex_state = 127, .external_lex_state = 14}, + [627] = {.lex_state = 127, .external_lex_state = 3}, + [628] = {.lex_state = 127, .external_lex_state = 10}, + [629] = {.lex_state = 127, .external_lex_state = 4}, + [630] = {.lex_state = 116, .external_lex_state = 5}, + [631] = {.lex_state = 125}, + [632] = {.lex_state = 133, .external_lex_state = 4}, + [633] = {.lex_state = 127, .external_lex_state = 4}, + [634] = {.lex_state = 131, .external_lex_state = 8}, [635] = {.lex_state = 73}, - [636] = {.lex_state = 115, .external_lex_state = 5}, - [637] = {.lex_state = 115, .external_lex_state = 5}, - [638] = {.lex_state = 205, .external_lex_state = 5}, - [639] = {.lex_state = 205, .external_lex_state = 5}, - [640] = {.lex_state = 205, .external_lex_state = 5}, - [641] = {.lex_state = 205, .external_lex_state = 5}, - [642] = {.lex_state = 205, .external_lex_state = 7}, - [643] = {.lex_state = 205, .external_lex_state = 7}, - [644] = {.lex_state = 115, .external_lex_state = 7}, - [645] = {.lex_state = 203, .external_lex_state = 2}, - [646] = {.lex_state = 115, .external_lex_state = 7}, + [636] = {.lex_state = 116, .external_lex_state = 5}, + [637] = {.lex_state = 116, .external_lex_state = 5}, + [638] = {.lex_state = 206, .external_lex_state = 5}, + [639] = {.lex_state = 206, .external_lex_state = 5}, + [640] = {.lex_state = 206, .external_lex_state = 5}, + [641] = {.lex_state = 206, .external_lex_state = 5}, + [642] = {.lex_state = 206, .external_lex_state = 7}, + [643] = {.lex_state = 206, .external_lex_state = 7}, + [644] = {.lex_state = 116, .external_lex_state = 7}, + [645] = {.lex_state = 204, .external_lex_state = 2}, + [646] = {.lex_state = 116, .external_lex_state = 7}, [647] = {.lex_state = 73, .external_lex_state = 2}, - [648] = {.lex_state = 194}, + [648] = {.lex_state = 195}, [649] = {.lex_state = 73, .external_lex_state = 15}, [650] = {.lex_state = 73, .external_lex_state = 15}, - [651] = {.lex_state = 207}, - [652] = {.lex_state = 207, .external_lex_state = 13}, - [653] = {.lex_state = 134, .external_lex_state = 12}, + [651] = {.lex_state = 208}, + [652] = {.lex_state = 208, .external_lex_state = 13}, + [653] = {.lex_state = 135, .external_lex_state = 12}, [654] = {.lex_state = 77}, - [655] = {.lex_state = 209}, - [656] = {.lex_state = 134, .external_lex_state = 11}, - [657] = {.lex_state = 134, .external_lex_state = 11}, - [658] = {.lex_state = 134, .external_lex_state = 11}, - [659] = {.lex_state = 151}, - [660] = {.lex_state = 217, .external_lex_state = 16}, - [661] = {.lex_state = 134, .external_lex_state = 11}, - [662] = {.lex_state = 221}, - [663] = {.lex_state = 219, .external_lex_state = 16}, - [664] = {.lex_state = 62}, - [665] = {.lex_state = 157, .external_lex_state = 16}, - [666] = {.lex_state = 157, .external_lex_state = 16}, - [667] = {.lex_state = 157, .external_lex_state = 16}, - [668] = {.lex_state = 134, .external_lex_state = 11}, - [669] = {.lex_state = 221}, - [670] = {.lex_state = 219, .external_lex_state = 16}, - [671] = {.lex_state = 134, .external_lex_state = 11}, - [672] = {.lex_state = 221}, - [673] = {.lex_state = 219, .external_lex_state = 16}, - [674] = {.lex_state = 134, .external_lex_state = 11}, - [675] = {.lex_state = 203, .external_lex_state = 2}, - [676] = {.lex_state = 126, .external_lex_state = 4}, - [677] = {.lex_state = 130, .external_lex_state = 8}, + [655] = {.lex_state = 210}, + [656] = {.lex_state = 135, .external_lex_state = 11}, + [657] = {.lex_state = 135, .external_lex_state = 11}, + [658] = {.lex_state = 135, .external_lex_state = 11}, + [659] = {.lex_state = 152}, + [660] = {.lex_state = 218, .external_lex_state = 16}, + [661] = {.lex_state = 62}, + [662] = {.lex_state = 160, .external_lex_state = 16}, + [663] = {.lex_state = 160, .external_lex_state = 16}, + [664] = {.lex_state = 160, .external_lex_state = 16}, + [665] = {.lex_state = 135, .external_lex_state = 11}, + [666] = {.lex_state = 222}, + [667] = {.lex_state = 220, .external_lex_state = 16}, + [668] = {.lex_state = 135, .external_lex_state = 11}, + [669] = {.lex_state = 222}, + [670] = {.lex_state = 220, .external_lex_state = 16}, + [671] = {.lex_state = 135, .external_lex_state = 11}, + [672] = {.lex_state = 222}, + [673] = {.lex_state = 220, .external_lex_state = 16}, + [674] = {.lex_state = 135, .external_lex_state = 11}, + [675] = {.lex_state = 204, .external_lex_state = 2}, + [676] = {.lex_state = 127, .external_lex_state = 4}, + [677] = {.lex_state = 131, .external_lex_state = 8}, [678] = {.lex_state = 56, .external_lex_state = 2}, [679] = {.lex_state = 83, .external_lex_state = 4}, - [680] = {.lex_state = 113, .external_lex_state = 8}, - [681] = {.lex_state = 134, .external_lex_state = 11}, - [682] = {.lex_state = 203, .external_lex_state = 2}, - [683] = {.lex_state = 126, .external_lex_state = 4}, - [684] = {.lex_state = 130, .external_lex_state = 8}, - [685] = {.lex_state = 134, .external_lex_state = 12}, + [680] = {.lex_state = 114, .external_lex_state = 8}, + [681] = {.lex_state = 135, .external_lex_state = 11}, + [682] = {.lex_state = 204, .external_lex_state = 2}, + [683] = {.lex_state = 127, .external_lex_state = 4}, + [684] = {.lex_state = 131, .external_lex_state = 8}, + [685] = {.lex_state = 135, .external_lex_state = 12}, [686] = {.lex_state = 56}, [687] = {.lex_state = 73}, [688] = {.lex_state = 56, .external_lex_state = 18}, [689] = {.lex_state = 73}, - [690] = {.lex_state = 188, .external_lex_state = 21}, - [691] = {.lex_state = 134, .external_lex_state = 12}, - [692] = {.lex_state = 242}, - [693] = {.lex_state = 214, .external_lex_state = 13}, - [694] = {.lex_state = 147, .external_lex_state = 13}, - [695] = {.lex_state = 214, .external_lex_state = 13}, - [696] = {.lex_state = 151}, - [697] = {.lex_state = 217, .external_lex_state = 16}, - [698] = {.lex_state = 214, .external_lex_state = 13}, - [699] = {.lex_state = 221}, - [700] = {.lex_state = 219, .external_lex_state = 16}, - [701] = {.lex_state = 62}, - [702] = {.lex_state = 157, .external_lex_state = 16}, - [703] = {.lex_state = 157, .external_lex_state = 16}, - [704] = {.lex_state = 157, .external_lex_state = 16}, - [705] = {.lex_state = 214, .external_lex_state = 13}, - [706] = {.lex_state = 221}, - [707] = {.lex_state = 219, .external_lex_state = 16}, - [708] = {.lex_state = 214, .external_lex_state = 13}, - [709] = {.lex_state = 221}, - [710] = {.lex_state = 219, .external_lex_state = 16}, - [711] = {.lex_state = 214, .external_lex_state = 13}, - [712] = {.lex_state = 203, .external_lex_state = 2}, - [713] = {.lex_state = 126, .external_lex_state = 4}, - [714] = {.lex_state = 130, .external_lex_state = 8}, + [690] = {.lex_state = 189, .external_lex_state = 21}, + [691] = {.lex_state = 135, .external_lex_state = 12}, + [692] = {.lex_state = 243}, + [693] = {.lex_state = 215, .external_lex_state = 13}, + [694] = {.lex_state = 148, .external_lex_state = 13}, + [695] = {.lex_state = 215, .external_lex_state = 13}, + [696] = {.lex_state = 152}, + [697] = {.lex_state = 218, .external_lex_state = 16}, + [698] = {.lex_state = 62}, + [699] = {.lex_state = 160, .external_lex_state = 16}, + [700] = {.lex_state = 160, .external_lex_state = 16}, + [701] = {.lex_state = 160, .external_lex_state = 16}, + [702] = {.lex_state = 215, .external_lex_state = 13}, + [703] = {.lex_state = 222}, + [704] = {.lex_state = 220, .external_lex_state = 16}, + [705] = {.lex_state = 215, .external_lex_state = 13}, + [706] = {.lex_state = 222}, + [707] = {.lex_state = 220, .external_lex_state = 16}, + [708] = {.lex_state = 215, .external_lex_state = 13}, + [709] = {.lex_state = 222}, + [710] = {.lex_state = 220, .external_lex_state = 16}, + [711] = {.lex_state = 215, .external_lex_state = 13}, + [712] = {.lex_state = 204, .external_lex_state = 2}, + [713] = {.lex_state = 127, .external_lex_state = 4}, + [714] = {.lex_state = 131, .external_lex_state = 8}, [715] = {.lex_state = 56, .external_lex_state = 2}, [716] = {.lex_state = 83, .external_lex_state = 4}, - [717] = {.lex_state = 113, .external_lex_state = 8}, - [718] = {.lex_state = 214, .external_lex_state = 13}, - [719] = {.lex_state = 203, .external_lex_state = 2}, - [720] = {.lex_state = 126, .external_lex_state = 4}, - [721] = {.lex_state = 130, .external_lex_state = 8}, - [722] = {.lex_state = 242}, - [723] = {.lex_state = 242}, - [724] = {.lex_state = 126, .external_lex_state = 3}, - [725] = {.lex_state = 194}, + [717] = {.lex_state = 114, .external_lex_state = 8}, + [718] = {.lex_state = 215, .external_lex_state = 13}, + [719] = {.lex_state = 204, .external_lex_state = 2}, + [720] = {.lex_state = 127, .external_lex_state = 4}, + [721] = {.lex_state = 131, .external_lex_state = 8}, + [722] = {.lex_state = 243}, + [723] = {.lex_state = 243}, + [724] = {.lex_state = 127, .external_lex_state = 3}, + [725] = {.lex_state = 195}, [726] = {.lex_state = 83, .external_lex_state = 14}, [727] = {.lex_state = 83, .external_lex_state = 14}, - [728] = {.lex_state = 126, .external_lex_state = 14}, + [728] = {.lex_state = 127, .external_lex_state = 14}, [729] = {.lex_state = 83, .external_lex_state = 14}, - [730] = {.lex_state = 126, .external_lex_state = 14}, - [731] = {.lex_state = 151}, - [732] = {.lex_state = 217, .external_lex_state = 16}, - [733] = {.lex_state = 126, .external_lex_state = 14}, - [734] = {.lex_state = 221}, - [735] = {.lex_state = 219, .external_lex_state = 16}, - [736] = {.lex_state = 62}, - [737] = {.lex_state = 157, .external_lex_state = 16}, - [738] = {.lex_state = 157, .external_lex_state = 16}, - [739] = {.lex_state = 157, .external_lex_state = 16}, - [740] = {.lex_state = 126, .external_lex_state = 14}, - [741] = {.lex_state = 221}, - [742] = {.lex_state = 219, .external_lex_state = 16}, - [743] = {.lex_state = 126, .external_lex_state = 14}, - [744] = {.lex_state = 221}, - [745] = {.lex_state = 219, .external_lex_state = 16}, - [746] = {.lex_state = 126, .external_lex_state = 14}, - [747] = {.lex_state = 203, .external_lex_state = 2}, - [748] = {.lex_state = 126, .external_lex_state = 4}, - [749] = {.lex_state = 130, .external_lex_state = 8}, + [730] = {.lex_state = 127, .external_lex_state = 14}, + [731] = {.lex_state = 152}, + [732] = {.lex_state = 218, .external_lex_state = 16}, + [733] = {.lex_state = 62}, + [734] = {.lex_state = 160, .external_lex_state = 16}, + [735] = {.lex_state = 160, .external_lex_state = 16}, + [736] = {.lex_state = 160, .external_lex_state = 16}, + [737] = {.lex_state = 127, .external_lex_state = 14}, + [738] = {.lex_state = 222}, + [739] = {.lex_state = 220, .external_lex_state = 16}, + [740] = {.lex_state = 127, .external_lex_state = 14}, + [741] = {.lex_state = 222}, + [742] = {.lex_state = 220, .external_lex_state = 16}, + [743] = {.lex_state = 127, .external_lex_state = 14}, + [744] = {.lex_state = 222}, + [745] = {.lex_state = 220, .external_lex_state = 16}, + [746] = {.lex_state = 127, .external_lex_state = 14}, + [747] = {.lex_state = 204, .external_lex_state = 2}, + [748] = {.lex_state = 127, .external_lex_state = 4}, + [749] = {.lex_state = 131, .external_lex_state = 8}, [750] = {.lex_state = 56, .external_lex_state = 2}, [751] = {.lex_state = 83, .external_lex_state = 4}, - [752] = {.lex_state = 113, .external_lex_state = 8}, - [753] = {.lex_state = 126, .external_lex_state = 14}, - [754] = {.lex_state = 203, .external_lex_state = 2}, - [755] = {.lex_state = 126, .external_lex_state = 4}, - [756] = {.lex_state = 130, .external_lex_state = 8}, - [757] = {.lex_state = 126, .external_lex_state = 10}, + [752] = {.lex_state = 114, .external_lex_state = 8}, + [753] = {.lex_state = 127, .external_lex_state = 14}, + [754] = {.lex_state = 204, .external_lex_state = 2}, + [755] = {.lex_state = 127, .external_lex_state = 4}, + [756] = {.lex_state = 131, .external_lex_state = 8}, + [757] = {.lex_state = 127, .external_lex_state = 10}, [758] = {.lex_state = 83, .external_lex_state = 10}, - [759] = {.lex_state = 126, .external_lex_state = 10}, - [760] = {.lex_state = 151}, - [761] = {.lex_state = 217, .external_lex_state = 16}, - [762] = {.lex_state = 126, .external_lex_state = 10}, - [763] = {.lex_state = 221}, - [764] = {.lex_state = 219, .external_lex_state = 16}, - [765] = {.lex_state = 62}, - [766] = {.lex_state = 157, .external_lex_state = 16}, - [767] = {.lex_state = 157, .external_lex_state = 16}, - [768] = {.lex_state = 157, .external_lex_state = 16}, - [769] = {.lex_state = 126, .external_lex_state = 10}, - [770] = {.lex_state = 221}, - [771] = {.lex_state = 219, .external_lex_state = 16}, - [772] = {.lex_state = 126, .external_lex_state = 10}, - [773] = {.lex_state = 221}, - [774] = {.lex_state = 219, .external_lex_state = 16}, - [775] = {.lex_state = 126, .external_lex_state = 10}, - [776] = {.lex_state = 203, .external_lex_state = 2}, - [777] = {.lex_state = 126, .external_lex_state = 4}, - [778] = {.lex_state = 130, .external_lex_state = 8}, + [759] = {.lex_state = 127, .external_lex_state = 10}, + [760] = {.lex_state = 152}, + [761] = {.lex_state = 218, .external_lex_state = 16}, + [762] = {.lex_state = 62}, + [763] = {.lex_state = 160, .external_lex_state = 16}, + [764] = {.lex_state = 160, .external_lex_state = 16}, + [765] = {.lex_state = 160, .external_lex_state = 16}, + [766] = {.lex_state = 127, .external_lex_state = 10}, + [767] = {.lex_state = 222}, + [768] = {.lex_state = 220, .external_lex_state = 16}, + [769] = {.lex_state = 127, .external_lex_state = 10}, + [770] = {.lex_state = 222}, + [771] = {.lex_state = 220, .external_lex_state = 16}, + [772] = {.lex_state = 127, .external_lex_state = 10}, + [773] = {.lex_state = 222}, + [774] = {.lex_state = 220, .external_lex_state = 16}, + [775] = {.lex_state = 127, .external_lex_state = 10}, + [776] = {.lex_state = 204, .external_lex_state = 2}, + [777] = {.lex_state = 127, .external_lex_state = 4}, + [778] = {.lex_state = 131, .external_lex_state = 8}, [779] = {.lex_state = 56, .external_lex_state = 2}, [780] = {.lex_state = 83, .external_lex_state = 4}, - [781] = {.lex_state = 113, .external_lex_state = 8}, - [782] = {.lex_state = 126, .external_lex_state = 10}, - [783] = {.lex_state = 203, .external_lex_state = 2}, - [784] = {.lex_state = 126, .external_lex_state = 4}, - [785] = {.lex_state = 130, .external_lex_state = 8}, + [781] = {.lex_state = 114, .external_lex_state = 8}, + [782] = {.lex_state = 127, .external_lex_state = 10}, + [783] = {.lex_state = 204, .external_lex_state = 2}, + [784] = {.lex_state = 127, .external_lex_state = 4}, + [785] = {.lex_state = 131, .external_lex_state = 8}, [786] = {.lex_state = 73, .external_lex_state = 15}, [787] = {.lex_state = 73, .external_lex_state = 15}, [788] = {.lex_state = 73, .external_lex_state = 15}, - [789] = {.lex_state = 151}, - [790] = {.lex_state = 217, .external_lex_state = 16}, - [791] = {.lex_state = 73, .external_lex_state = 15}, - [792] = {.lex_state = 221}, - [793] = {.lex_state = 219, .external_lex_state = 16}, - [794] = {.lex_state = 62}, - [795] = {.lex_state = 157, .external_lex_state = 16}, - [796] = {.lex_state = 157, .external_lex_state = 16}, - [797] = {.lex_state = 157, .external_lex_state = 16}, + [789] = {.lex_state = 152}, + [790] = {.lex_state = 218, .external_lex_state = 16}, + [791] = {.lex_state = 62}, + [792] = {.lex_state = 160, .external_lex_state = 16}, + [793] = {.lex_state = 160, .external_lex_state = 16}, + [794] = {.lex_state = 160, .external_lex_state = 16}, + [795] = {.lex_state = 73, .external_lex_state = 15}, + [796] = {.lex_state = 222}, + [797] = {.lex_state = 220, .external_lex_state = 16}, [798] = {.lex_state = 73, .external_lex_state = 15}, - [799] = {.lex_state = 221}, - [800] = {.lex_state = 219, .external_lex_state = 16}, + [799] = {.lex_state = 222}, + [800] = {.lex_state = 220, .external_lex_state = 16}, [801] = {.lex_state = 73, .external_lex_state = 15}, - [802] = {.lex_state = 221}, - [803] = {.lex_state = 219, .external_lex_state = 16}, + [802] = {.lex_state = 222}, + [803] = {.lex_state = 220, .external_lex_state = 16}, [804] = {.lex_state = 73, .external_lex_state = 15}, - [805] = {.lex_state = 203, .external_lex_state = 2}, - [806] = {.lex_state = 126, .external_lex_state = 4}, - [807] = {.lex_state = 130, .external_lex_state = 8}, + [805] = {.lex_state = 204, .external_lex_state = 2}, + [806] = {.lex_state = 127, .external_lex_state = 4}, + [807] = {.lex_state = 131, .external_lex_state = 8}, [808] = {.lex_state = 56, .external_lex_state = 2}, [809] = {.lex_state = 83, .external_lex_state = 4}, - [810] = {.lex_state = 113, .external_lex_state = 8}, + [810] = {.lex_state = 114, .external_lex_state = 8}, [811] = {.lex_state = 73, .external_lex_state = 15}, - [812] = {.lex_state = 203, .external_lex_state = 2}, - [813] = {.lex_state = 126, .external_lex_state = 4}, - [814] = {.lex_state = 130, .external_lex_state = 8}, + [812] = {.lex_state = 204, .external_lex_state = 2}, + [813] = {.lex_state = 127, .external_lex_state = 4}, + [814] = {.lex_state = 131, .external_lex_state = 8}, [815] = {.lex_state = 91}, - [816] = {.lex_state = 217, .external_lex_state = 16}, - [817] = {.lex_state = 91, .external_lex_state = 13}, - [818] = {.lex_state = 221}, - [819] = {.lex_state = 219, .external_lex_state = 16}, - [820] = {.lex_state = 62}, - [821] = {.lex_state = 157, .external_lex_state = 16}, - [822] = {.lex_state = 157, .external_lex_state = 16}, - [823] = {.lex_state = 157, .external_lex_state = 16}, + [816] = {.lex_state = 218, .external_lex_state = 16}, + [817] = {.lex_state = 62}, + [818] = {.lex_state = 160, .external_lex_state = 16}, + [819] = {.lex_state = 160, .external_lex_state = 16}, + [820] = {.lex_state = 160, .external_lex_state = 16}, + [821] = {.lex_state = 91, .external_lex_state = 13}, + [822] = {.lex_state = 222}, + [823] = {.lex_state = 220, .external_lex_state = 16}, [824] = {.lex_state = 91, .external_lex_state = 13}, - [825] = {.lex_state = 221}, - [826] = {.lex_state = 219, .external_lex_state = 16}, + [825] = {.lex_state = 222}, + [826] = {.lex_state = 220, .external_lex_state = 16}, [827] = {.lex_state = 91, .external_lex_state = 13}, - [828] = {.lex_state = 221}, - [829] = {.lex_state = 219, .external_lex_state = 16}, + [828] = {.lex_state = 222}, + [829] = {.lex_state = 220, .external_lex_state = 16}, [830] = {.lex_state = 91, .external_lex_state = 13}, - [831] = {.lex_state = 203, .external_lex_state = 2}, - [832] = {.lex_state = 126, .external_lex_state = 4}, - [833] = {.lex_state = 130, .external_lex_state = 8}, + [831] = {.lex_state = 204, .external_lex_state = 2}, + [832] = {.lex_state = 127, .external_lex_state = 4}, + [833] = {.lex_state = 131, .external_lex_state = 8}, [834] = {.lex_state = 56, .external_lex_state = 2}, [835] = {.lex_state = 83, .external_lex_state = 4}, - [836] = {.lex_state = 113, .external_lex_state = 8}, - [837] = {.lex_state = 115, .external_lex_state = 5}, - [838] = {.lex_state = 151}, - [839] = {.lex_state = 192, .external_lex_state = 11}, - [840] = {.lex_state = 192, .external_lex_state = 11}, - [841] = {.lex_state = 192, .external_lex_state = 11}, - [842] = {.lex_state = 115, .external_lex_state = 5}, - [843] = {.lex_state = 198, .external_lex_state = 22}, + [836] = {.lex_state = 114, .external_lex_state = 8}, + [837] = {.lex_state = 116, .external_lex_state = 5}, + [838] = {.lex_state = 152}, + [839] = {.lex_state = 193, .external_lex_state = 11}, + [840] = {.lex_state = 193, .external_lex_state = 11}, + [841] = {.lex_state = 193, .external_lex_state = 11}, + [842] = {.lex_state = 116, .external_lex_state = 5}, + [843] = {.lex_state = 199, .external_lex_state = 22}, [844] = {.lex_state = 91}, [845] = {.lex_state = 98}, - [846] = {.lex_state = 198, .external_lex_state = 22}, + [846] = {.lex_state = 199, .external_lex_state = 22}, [847] = {.lex_state = 107, .external_lex_state = 6}, [848] = {.lex_state = 56, .external_lex_state = 2}, [849] = {.lex_state = 56, .external_lex_state = 2}, [850] = {.lex_state = 56, .external_lex_state = 2}, - [851] = {.lex_state = 198, .external_lex_state = 16}, - [852] = {.lex_state = 73}, - [853] = {.lex_state = 219, .external_lex_state = 22}, - [854] = {.lex_state = 219, .external_lex_state = 22}, - [855] = {.lex_state = 151}, - [856] = {.lex_state = 91}, - [857] = {.lex_state = 219, .external_lex_state = 22}, - [858] = {.lex_state = 219, .external_lex_state = 22}, - [859] = {.lex_state = 219, .external_lex_state = 22}, - [860] = {.lex_state = 62}, - [861] = {.lex_state = 157, .external_lex_state = 16}, - [862] = {.lex_state = 160, .external_lex_state = 6}, - [863] = {.lex_state = 157, .external_lex_state = 16}, - [864] = {.lex_state = 157, .external_lex_state = 16}, - [865] = {.lex_state = 219, .external_lex_state = 16}, - [866] = {.lex_state = 126, .external_lex_state = 4}, - [867] = {.lex_state = 130, .external_lex_state = 8}, - [868] = {.lex_state = 56, .external_lex_state = 2}, - [869] = {.lex_state = 83, .external_lex_state = 4}, - [870] = {.lex_state = 113, .external_lex_state = 8}, - [871] = {.lex_state = 56, .external_lex_state = 2}, - [872] = {.lex_state = 126, .external_lex_state = 4}, - [873] = {.lex_state = 130, .external_lex_state = 8}, - [874] = {.lex_state = 56, .external_lex_state = 2}, - [875] = {.lex_state = 115, .external_lex_state = 5}, - [876] = {.lex_state = 219, .external_lex_state = 16}, - [877] = {.lex_state = 217, .external_lex_state = 16}, - [878] = {.lex_state = 115, .external_lex_state = 5}, - [879] = {.lex_state = 221}, - [880] = {.lex_state = 219, .external_lex_state = 16}, - [881] = {.lex_state = 115, .external_lex_state = 5}, - [882] = {.lex_state = 221}, - [883] = {.lex_state = 219, .external_lex_state = 16}, - [884] = {.lex_state = 221}, - [885] = {.lex_state = 219, .external_lex_state = 16}, - [886] = {.lex_state = 219, .external_lex_state = 16}, - [887] = {.lex_state = 115, .external_lex_state = 5}, - [888] = {.lex_state = 219, .external_lex_state = 16}, - [889] = {.lex_state = 115, .external_lex_state = 5}, - [890] = {.lex_state = 203, .external_lex_state = 2}, - [891] = {.lex_state = 226, .external_lex_state = 7}, + [851] = {.lex_state = 199, .external_lex_state = 16}, + [852] = {.lex_state = 218, .external_lex_state = 16}, + [853] = {.lex_state = 116, .external_lex_state = 5}, + [854] = {.lex_state = 222}, + [855] = {.lex_state = 220, .external_lex_state = 16}, + [856] = {.lex_state = 116, .external_lex_state = 5}, + [857] = {.lex_state = 222}, + [858] = {.lex_state = 220, .external_lex_state = 16}, + [859] = {.lex_state = 222}, + [860] = {.lex_state = 220, .external_lex_state = 16}, + [861] = {.lex_state = 73}, + [862] = {.lex_state = 220, .external_lex_state = 22}, + [863] = {.lex_state = 220, .external_lex_state = 22}, + [864] = {.lex_state = 152}, + [865] = {.lex_state = 91}, + [866] = {.lex_state = 220, .external_lex_state = 22}, + [867] = {.lex_state = 220, .external_lex_state = 22}, + [868] = {.lex_state = 220, .external_lex_state = 22}, + [869] = {.lex_state = 62}, + [870] = {.lex_state = 158, .external_lex_state = 6}, + [871] = {.lex_state = 160, .external_lex_state = 16}, + [872] = {.lex_state = 160, .external_lex_state = 16}, + [873] = {.lex_state = 160, .external_lex_state = 16}, + [874] = {.lex_state = 220, .external_lex_state = 16}, + [875] = {.lex_state = 127, .external_lex_state = 4}, + [876] = {.lex_state = 131, .external_lex_state = 8}, + [877] = {.lex_state = 56, .external_lex_state = 2}, + [878] = {.lex_state = 83, .external_lex_state = 4}, + [879] = {.lex_state = 114, .external_lex_state = 8}, + [880] = {.lex_state = 56, .external_lex_state = 2}, + [881] = {.lex_state = 127, .external_lex_state = 4}, + [882] = {.lex_state = 131, .external_lex_state = 8}, + [883] = {.lex_state = 56, .external_lex_state = 2}, + [884] = {.lex_state = 116, .external_lex_state = 5}, + [885] = {.lex_state = 220, .external_lex_state = 16}, + [886] = {.lex_state = 220, .external_lex_state = 16}, + [887] = {.lex_state = 116, .external_lex_state = 5}, + [888] = {.lex_state = 220, .external_lex_state = 16}, + [889] = {.lex_state = 116, .external_lex_state = 5}, + [890] = {.lex_state = 204, .external_lex_state = 2}, + [891] = {.lex_state = 227, .external_lex_state = 7}, [892] = {.lex_state = 77}, - [893] = {.lex_state = 244, .external_lex_state = 21}, - [894] = {.lex_state = 226, .external_lex_state = 21}, - [895] = {.lex_state = 124}, - [896] = {.lex_state = 113, .external_lex_state = 8}, + [893] = {.lex_state = 245, .external_lex_state = 21}, + [894] = {.lex_state = 227, .external_lex_state = 21}, + [895] = {.lex_state = 125}, + [896] = {.lex_state = 114, .external_lex_state = 8}, [897] = {.lex_state = 83, .external_lex_state = 4}, - [898] = {.lex_state = 113, .external_lex_state = 8}, + [898] = {.lex_state = 114, .external_lex_state = 8}, [899] = {.lex_state = 73}, - [900] = {.lex_state = 226, .external_lex_state = 5}, - [901] = {.lex_state = 226, .external_lex_state = 5}, - [902] = {.lex_state = 226, .external_lex_state = 5}, - [903] = {.lex_state = 226, .external_lex_state = 5}, - [904] = {.lex_state = 226, .external_lex_state = 7}, - [905] = {.lex_state = 226, .external_lex_state = 7}, + [900] = {.lex_state = 227, .external_lex_state = 5}, + [901] = {.lex_state = 227, .external_lex_state = 5}, + [902] = {.lex_state = 227, .external_lex_state = 5}, + [903] = {.lex_state = 227, .external_lex_state = 5}, + [904] = {.lex_state = 227, .external_lex_state = 7}, + [905] = {.lex_state = 227, .external_lex_state = 7}, [906] = {.lex_state = 56, .external_lex_state = 2}, [907] = {.lex_state = 88, .external_lex_state = 7}, - [908] = {.lex_state = 115, .external_lex_state = 5}, - [909] = {.lex_state = 203, .external_lex_state = 2}, - [910] = {.lex_state = 200, .external_lex_state = 21}, - [911] = {.lex_state = 165, .external_lex_state = 17}, - [912] = {.lex_state = 165, .external_lex_state = 17}, + [908] = {.lex_state = 116, .external_lex_state = 5}, + [909] = {.lex_state = 204, .external_lex_state = 2}, + [910] = {.lex_state = 201, .external_lex_state = 21}, + [911] = {.lex_state = 166, .external_lex_state = 17}, + [912] = {.lex_state = 166, .external_lex_state = 17}, [913] = {.lex_state = 62}, - [914] = {.lex_state = 157, .external_lex_state = 16}, - [915] = {.lex_state = 160, .external_lex_state = 6}, - [916] = {.lex_state = 157, .external_lex_state = 16}, - [917] = {.lex_state = 157, .external_lex_state = 16}, - [918] = {.lex_state = 132, .external_lex_state = 4}, - [919] = {.lex_state = 165, .external_lex_state = 17}, - [920] = {.lex_state = 188, .external_lex_state = 5}, - [921] = {.lex_state = 188, .external_lex_state = 5}, - [922] = {.lex_state = 228, .external_lex_state = 7}, - [923] = {.lex_state = 188, .external_lex_state = 5}, - [924] = {.lex_state = 132, .external_lex_state = 4}, - [925] = {.lex_state = 188, .external_lex_state = 7}, + [914] = {.lex_state = 158, .external_lex_state = 6}, + [915] = {.lex_state = 160, .external_lex_state = 16}, + [916] = {.lex_state = 160, .external_lex_state = 16}, + [917] = {.lex_state = 160, .external_lex_state = 16}, + [918] = {.lex_state = 133, .external_lex_state = 4}, + [919] = {.lex_state = 166, .external_lex_state = 17}, + [920] = {.lex_state = 189, .external_lex_state = 5}, + [921] = {.lex_state = 189, .external_lex_state = 5}, + [922] = {.lex_state = 229, .external_lex_state = 7}, + [923] = {.lex_state = 189, .external_lex_state = 5}, + [924] = {.lex_state = 133, .external_lex_state = 4}, + [925] = {.lex_state = 189, .external_lex_state = 7}, [926] = {.lex_state = 62, .external_lex_state = 13}, [927] = {.lex_state = 62}, - [928] = {.lex_state = 192, .external_lex_state = 11}, + [928] = {.lex_state = 193, .external_lex_state = 11}, [929] = {.lex_state = 62, .external_lex_state = 13}, [930] = {.lex_state = 62}, [931] = {.lex_state = 73}, - [932] = {.lex_state = 194, .external_lex_state = 13}, - [933] = {.lex_state = 194, .external_lex_state = 13}, - [934] = {.lex_state = 151}, + [932] = {.lex_state = 195, .external_lex_state = 13}, + [933] = {.lex_state = 195, .external_lex_state = 13}, + [934] = {.lex_state = 152}, [935] = {.lex_state = 91}, - [936] = {.lex_state = 194, .external_lex_state = 13}, - [937] = {.lex_state = 194, .external_lex_state = 13}, - [938] = {.lex_state = 194, .external_lex_state = 13}, + [936] = {.lex_state = 195, .external_lex_state = 13}, + [937] = {.lex_state = 195, .external_lex_state = 13}, + [938] = {.lex_state = 195, .external_lex_state = 13}, [939] = {.lex_state = 62}, - [940] = {.lex_state = 157, .external_lex_state = 16}, - [941] = {.lex_state = 160, .external_lex_state = 6}, - [942] = {.lex_state = 157, .external_lex_state = 16}, - [943] = {.lex_state = 157, .external_lex_state = 16}, - [944] = {.lex_state = 126, .external_lex_state = 4}, - [945] = {.lex_state = 130, .external_lex_state = 8}, + [940] = {.lex_state = 158, .external_lex_state = 6}, + [941] = {.lex_state = 160, .external_lex_state = 16}, + [942] = {.lex_state = 160, .external_lex_state = 16}, + [943] = {.lex_state = 160, .external_lex_state = 16}, + [944] = {.lex_state = 127, .external_lex_state = 4}, + [945] = {.lex_state = 131, .external_lex_state = 8}, [946] = {.lex_state = 56, .external_lex_state = 2}, [947] = {.lex_state = 83, .external_lex_state = 4}, - [948] = {.lex_state = 113, .external_lex_state = 8}, + [948] = {.lex_state = 114, .external_lex_state = 8}, [949] = {.lex_state = 56, .external_lex_state = 2}, - [950] = {.lex_state = 126, .external_lex_state = 4}, - [951] = {.lex_state = 130, .external_lex_state = 8}, + [950] = {.lex_state = 127, .external_lex_state = 4}, + [951] = {.lex_state = 131, .external_lex_state = 8}, [952] = {.lex_state = 56, .external_lex_state = 2}, - [953] = {.lex_state = 130, .external_lex_state = 8}, - [954] = {.lex_state = 194}, - [955] = {.lex_state = 130, .external_lex_state = 19}, - [956] = {.lex_state = 113, .external_lex_state = 19}, - [957] = {.lex_state = 130, .external_lex_state = 19}, - [958] = {.lex_state = 151}, - [959] = {.lex_state = 217, .external_lex_state = 16}, - [960] = {.lex_state = 130, .external_lex_state = 19}, - [961] = {.lex_state = 221}, - [962] = {.lex_state = 219, .external_lex_state = 16}, - [963] = {.lex_state = 62}, - [964] = {.lex_state = 157, .external_lex_state = 16}, - [965] = {.lex_state = 157, .external_lex_state = 16}, - [966] = {.lex_state = 157, .external_lex_state = 16}, - [967] = {.lex_state = 130, .external_lex_state = 19}, - [968] = {.lex_state = 221}, - [969] = {.lex_state = 219, .external_lex_state = 16}, - [970] = {.lex_state = 130, .external_lex_state = 19}, - [971] = {.lex_state = 221}, - [972] = {.lex_state = 219, .external_lex_state = 16}, - [973] = {.lex_state = 130, .external_lex_state = 19}, - [974] = {.lex_state = 203, .external_lex_state = 2}, - [975] = {.lex_state = 126, .external_lex_state = 4}, - [976] = {.lex_state = 130, .external_lex_state = 8}, + [953] = {.lex_state = 131, .external_lex_state = 8}, + [954] = {.lex_state = 195}, + [955] = {.lex_state = 131, .external_lex_state = 19}, + [956] = {.lex_state = 114, .external_lex_state = 19}, + [957] = {.lex_state = 131, .external_lex_state = 19}, + [958] = {.lex_state = 152}, + [959] = {.lex_state = 218, .external_lex_state = 16}, + [960] = {.lex_state = 62}, + [961] = {.lex_state = 160, .external_lex_state = 16}, + [962] = {.lex_state = 160, .external_lex_state = 16}, + [963] = {.lex_state = 160, .external_lex_state = 16}, + [964] = {.lex_state = 131, .external_lex_state = 19}, + [965] = {.lex_state = 222}, + [966] = {.lex_state = 220, .external_lex_state = 16}, + [967] = {.lex_state = 131, .external_lex_state = 19}, + [968] = {.lex_state = 222}, + [969] = {.lex_state = 220, .external_lex_state = 16}, + [970] = {.lex_state = 131, .external_lex_state = 19}, + [971] = {.lex_state = 222}, + [972] = {.lex_state = 220, .external_lex_state = 16}, + [973] = {.lex_state = 131, .external_lex_state = 19}, + [974] = {.lex_state = 204, .external_lex_state = 2}, + [975] = {.lex_state = 127, .external_lex_state = 4}, + [976] = {.lex_state = 131, .external_lex_state = 8}, [977] = {.lex_state = 56, .external_lex_state = 2}, [978] = {.lex_state = 83, .external_lex_state = 4}, - [979] = {.lex_state = 113, .external_lex_state = 8}, - [980] = {.lex_state = 130, .external_lex_state = 19}, - [981] = {.lex_state = 203, .external_lex_state = 2}, - [982] = {.lex_state = 126, .external_lex_state = 4}, - [983] = {.lex_state = 130, .external_lex_state = 8}, - [984] = {.lex_state = 246}, + [979] = {.lex_state = 114, .external_lex_state = 8}, + [980] = {.lex_state = 131, .external_lex_state = 19}, + [981] = {.lex_state = 204, .external_lex_state = 2}, + [982] = {.lex_state = 127, .external_lex_state = 4}, + [983] = {.lex_state = 131, .external_lex_state = 8}, + [984] = {.lex_state = 247}, [985] = {.lex_state = 77}, [986] = {.lex_state = 77}, - [987] = {.lex_state = 248, .external_lex_state = 13}, + [987] = {.lex_state = 249, .external_lex_state = 13}, [988] = {.lex_state = 91}, [989] = {.lex_state = 98}, - [990] = {.lex_state = 248, .external_lex_state = 13}, + [990] = {.lex_state = 249, .external_lex_state = 13}, [991] = {.lex_state = 107, .external_lex_state = 6}, [992] = {.lex_state = 56, .external_lex_state = 2}, [993] = {.lex_state = 56, .external_lex_state = 2}, [994] = {.lex_state = 56, .external_lex_state = 2}, - [995] = {.lex_state = 248}, - [996] = {.lex_state = 230}, - [997] = {.lex_state = 196, .external_lex_state = 4}, - [998] = {.lex_state = 234, .external_lex_state = 10}, - [999] = {.lex_state = 196, .external_lex_state = 10}, - [1000] = {.lex_state = 234, .external_lex_state = 10}, - [1001] = {.lex_state = 151}, - [1002] = {.lex_state = 217, .external_lex_state = 16}, - [1003] = {.lex_state = 234, .external_lex_state = 10}, - [1004] = {.lex_state = 221}, - [1005] = {.lex_state = 219, .external_lex_state = 16}, - [1006] = {.lex_state = 62}, - [1007] = {.lex_state = 157, .external_lex_state = 16}, - [1008] = {.lex_state = 157, .external_lex_state = 16}, - [1009] = {.lex_state = 157, .external_lex_state = 16}, - [1010] = {.lex_state = 234, .external_lex_state = 10}, - [1011] = {.lex_state = 221}, - [1012] = {.lex_state = 219, .external_lex_state = 16}, - [1013] = {.lex_state = 234, .external_lex_state = 10}, - [1014] = {.lex_state = 221}, - [1015] = {.lex_state = 219, .external_lex_state = 16}, - [1016] = {.lex_state = 234, .external_lex_state = 10}, - [1017] = {.lex_state = 203, .external_lex_state = 2}, - [1018] = {.lex_state = 126, .external_lex_state = 4}, - [1019] = {.lex_state = 130, .external_lex_state = 8}, + [995] = {.lex_state = 249}, + [996] = {.lex_state = 231}, + [997] = {.lex_state = 197, .external_lex_state = 4}, + [998] = {.lex_state = 235, .external_lex_state = 10}, + [999] = {.lex_state = 197, .external_lex_state = 10}, + [1000] = {.lex_state = 235, .external_lex_state = 10}, + [1001] = {.lex_state = 152}, + [1002] = {.lex_state = 218, .external_lex_state = 16}, + [1003] = {.lex_state = 62}, + [1004] = {.lex_state = 160, .external_lex_state = 16}, + [1005] = {.lex_state = 160, .external_lex_state = 16}, + [1006] = {.lex_state = 160, .external_lex_state = 16}, + [1007] = {.lex_state = 235, .external_lex_state = 10}, + [1008] = {.lex_state = 222}, + [1009] = {.lex_state = 220, .external_lex_state = 16}, + [1010] = {.lex_state = 235, .external_lex_state = 10}, + [1011] = {.lex_state = 222}, + [1012] = {.lex_state = 220, .external_lex_state = 16}, + [1013] = {.lex_state = 235, .external_lex_state = 10}, + [1014] = {.lex_state = 222}, + [1015] = {.lex_state = 220, .external_lex_state = 16}, + [1016] = {.lex_state = 235, .external_lex_state = 10}, + [1017] = {.lex_state = 204, .external_lex_state = 2}, + [1018] = {.lex_state = 127, .external_lex_state = 4}, + [1019] = {.lex_state = 131, .external_lex_state = 8}, [1020] = {.lex_state = 56, .external_lex_state = 2}, [1021] = {.lex_state = 83, .external_lex_state = 4}, - [1022] = {.lex_state = 113, .external_lex_state = 8}, - [1023] = {.lex_state = 234, .external_lex_state = 10}, - [1024] = {.lex_state = 203, .external_lex_state = 2}, - [1025] = {.lex_state = 126, .external_lex_state = 4}, - [1026] = {.lex_state = 130, .external_lex_state = 8}, - [1027] = {.lex_state = 196, .external_lex_state = 4}, - [1028] = {.lex_state = 196, .external_lex_state = 4}, - [1029] = {.lex_state = 196, .external_lex_state = 4}, - [1030] = {.lex_state = 122, .external_lex_state = 10}, + [1022] = {.lex_state = 114, .external_lex_state = 8}, + [1023] = {.lex_state = 235, .external_lex_state = 10}, + [1024] = {.lex_state = 204, .external_lex_state = 2}, + [1025] = {.lex_state = 127, .external_lex_state = 4}, + [1026] = {.lex_state = 131, .external_lex_state = 8}, + [1027] = {.lex_state = 197, .external_lex_state = 4}, + [1028] = {.lex_state = 197, .external_lex_state = 4}, + [1029] = {.lex_state = 197, .external_lex_state = 4}, + [1030] = {.lex_state = 123, .external_lex_state = 10}, [1031] = {.lex_state = 73}, - [1032] = {.lex_state = 122, .external_lex_state = 4}, - [1033] = {.lex_state = 132, .external_lex_state = 4}, + [1032] = {.lex_state = 123, .external_lex_state = 4}, + [1033] = {.lex_state = 133, .external_lex_state = 4}, [1034] = {.lex_state = 56, .external_lex_state = 2}, - [1035] = {.lex_state = 228, .external_lex_state = 7}, + [1035] = {.lex_state = 229, .external_lex_state = 7}, [1036] = {.lex_state = 56, .external_lex_state = 2}, - [1037] = {.lex_state = 132, .external_lex_state = 4}, + [1037] = {.lex_state = 133, .external_lex_state = 4}, [1038] = {.lex_state = 73}, [1039] = {.lex_state = 56, .external_lex_state = 2}, - [1040] = {.lex_state = 132, .external_lex_state = 4}, + [1040] = {.lex_state = 133, .external_lex_state = 4}, [1041] = {.lex_state = 73}, [1042] = {.lex_state = 56, .external_lex_state = 2}, [1043] = {.lex_state = 73}, [1044] = {.lex_state = 73}, - [1045] = {.lex_state = 132, .external_lex_state = 4}, - [1046] = {.lex_state = 250, .external_lex_state = 13}, - [1047] = {.lex_state = 250, .external_lex_state = 13}, + [1045] = {.lex_state = 133, .external_lex_state = 4}, + [1046] = {.lex_state = 251, .external_lex_state = 13}, + [1047] = {.lex_state = 251, .external_lex_state = 13}, [1048] = {.lex_state = 73}, - [1049] = {.lex_state = 250}, + [1049] = {.lex_state = 251}, [1050] = {.lex_state = 73}, [1051] = {.lex_state = 73}, - [1052] = {.lex_state = 122, .external_lex_state = 10}, - [1053] = {.lex_state = 132, .external_lex_state = 4}, + [1052] = {.lex_state = 123, .external_lex_state = 10}, + [1053] = {.lex_state = 133, .external_lex_state = 4}, [1054] = {.lex_state = 73}, [1055] = {.lex_state = 73}, [1056] = {.lex_state = 73}, - [1057] = {.lex_state = 122, .external_lex_state = 10}, - [1058] = {.lex_state = 198, .external_lex_state = 22}, - [1059] = {.lex_state = 198, .external_lex_state = 22}, - [1060] = {.lex_state = 198, .external_lex_state = 16}, - [1061] = {.lex_state = 219, .external_lex_state = 16}, - [1062] = {.lex_state = 122, .external_lex_state = 10}, - [1063] = {.lex_state = 217, .external_lex_state = 16}, - [1064] = {.lex_state = 122, .external_lex_state = 10}, - [1065] = {.lex_state = 221}, - [1066] = {.lex_state = 219, .external_lex_state = 16}, - [1067] = {.lex_state = 122, .external_lex_state = 10}, - [1068] = {.lex_state = 221}, - [1069] = {.lex_state = 219, .external_lex_state = 16}, - [1070] = {.lex_state = 221}, - [1071] = {.lex_state = 219, .external_lex_state = 16}, - [1072] = {.lex_state = 219, .external_lex_state = 16}, - [1073] = {.lex_state = 122, .external_lex_state = 10}, - [1074] = {.lex_state = 219, .external_lex_state = 16}, - [1075] = {.lex_state = 122, .external_lex_state = 10}, - [1076] = {.lex_state = 203, .external_lex_state = 2}, + [1057] = {.lex_state = 123, .external_lex_state = 10}, + [1058] = {.lex_state = 199, .external_lex_state = 22}, + [1059] = {.lex_state = 199, .external_lex_state = 22}, + [1060] = {.lex_state = 199, .external_lex_state = 16}, + [1061] = {.lex_state = 218, .external_lex_state = 16}, + [1062] = {.lex_state = 123, .external_lex_state = 10}, + [1063] = {.lex_state = 222}, + [1064] = {.lex_state = 220, .external_lex_state = 16}, + [1065] = {.lex_state = 123, .external_lex_state = 10}, + [1066] = {.lex_state = 222}, + [1067] = {.lex_state = 220, .external_lex_state = 16}, + [1068] = {.lex_state = 222}, + [1069] = {.lex_state = 220, .external_lex_state = 16}, + [1070] = {.lex_state = 220, .external_lex_state = 16}, + [1071] = {.lex_state = 123, .external_lex_state = 10}, + [1072] = {.lex_state = 220, .external_lex_state = 16}, + [1073] = {.lex_state = 123, .external_lex_state = 10}, + [1074] = {.lex_state = 220, .external_lex_state = 16}, + [1075] = {.lex_state = 123, .external_lex_state = 10}, + [1076] = {.lex_state = 204, .external_lex_state = 2}, [1077] = {.lex_state = 56, .external_lex_state = 2}, - [1078] = {.lex_state = 122, .external_lex_state = 10}, - [1079] = {.lex_state = 203, .external_lex_state = 2}, - [1080] = {.lex_state = 200, .external_lex_state = 21}, - [1081] = {.lex_state = 198, .external_lex_state = 20}, - [1082] = {.lex_state = 238, .external_lex_state = 21}, - [1083] = {.lex_state = 198, .external_lex_state = 20}, + [1078] = {.lex_state = 123, .external_lex_state = 10}, + [1079] = {.lex_state = 204, .external_lex_state = 2}, + [1080] = {.lex_state = 201, .external_lex_state = 21}, + [1081] = {.lex_state = 199, .external_lex_state = 20}, + [1082] = {.lex_state = 239, .external_lex_state = 21}, + [1083] = {.lex_state = 199, .external_lex_state = 20}, [1084] = {.lex_state = 73}, - [1085] = {.lex_state = 132, .external_lex_state = 10}, - [1086] = {.lex_state = 132, .external_lex_state = 10}, - [1087] = {.lex_state = 132, .external_lex_state = 4}, - [1088] = {.lex_state = 130, .external_lex_state = 19}, - [1089] = {.lex_state = 205, .external_lex_state = 7}, - [1090] = {.lex_state = 124}, + [1085] = {.lex_state = 133, .external_lex_state = 10}, + [1086] = {.lex_state = 133, .external_lex_state = 10}, + [1087] = {.lex_state = 133, .external_lex_state = 4}, + [1088] = {.lex_state = 131, .external_lex_state = 19}, + [1089] = {.lex_state = 206, .external_lex_state = 7}, + [1090] = {.lex_state = 125}, [1091] = {.lex_state = 56}, [1092] = {.lex_state = 73}, [1093] = {.lex_state = 56}, [1094] = {.lex_state = 73}, [1095] = {.lex_state = 73}, - [1096] = {.lex_state = 205, .external_lex_state = 21}, - [1097] = {.lex_state = 126, .external_lex_state = 14}, - [1098] = {.lex_state = 126, .external_lex_state = 14}, - [1099] = {.lex_state = 126, .external_lex_state = 14}, - [1100] = {.lex_state = 126, .external_lex_state = 10}, - [1101] = {.lex_state = 240, .external_lex_state = 21}, - [1102] = {.lex_state = 205, .external_lex_state = 5}, - [1103] = {.lex_state = 205, .external_lex_state = 5}, - [1104] = {.lex_state = 205, .external_lex_state = 5}, - [1105] = {.lex_state = 132, .external_lex_state = 4}, - [1106] = {.lex_state = 205, .external_lex_state = 7}, + [1096] = {.lex_state = 206, .external_lex_state = 21}, + [1097] = {.lex_state = 127, .external_lex_state = 14}, + [1098] = {.lex_state = 127, .external_lex_state = 14}, + [1099] = {.lex_state = 127, .external_lex_state = 14}, + [1100] = {.lex_state = 127, .external_lex_state = 10}, + [1101] = {.lex_state = 241, .external_lex_state = 21}, + [1102] = {.lex_state = 206, .external_lex_state = 5}, + [1103] = {.lex_state = 206, .external_lex_state = 5}, + [1104] = {.lex_state = 206, .external_lex_state = 5}, + [1105] = {.lex_state = 133, .external_lex_state = 4}, + [1106] = {.lex_state = 206, .external_lex_state = 7}, [1107] = {.lex_state = 73, .external_lex_state = 2}, - [1108] = {.lex_state = 194}, - [1109] = {.lex_state = 207, .external_lex_state = 13}, - [1110] = {.lex_state = 134, .external_lex_state = 11}, - [1111] = {.lex_state = 134, .external_lex_state = 11}, - [1112] = {.lex_state = 198, .external_lex_state = 22}, - [1113] = {.lex_state = 198, .external_lex_state = 22}, - [1114] = {.lex_state = 198, .external_lex_state = 16}, - [1115] = {.lex_state = 219, .external_lex_state = 16}, - [1116] = {.lex_state = 134, .external_lex_state = 11}, - [1117] = {.lex_state = 217, .external_lex_state = 16}, - [1118] = {.lex_state = 134, .external_lex_state = 11}, - [1119] = {.lex_state = 221}, - [1120] = {.lex_state = 219, .external_lex_state = 16}, - [1121] = {.lex_state = 134, .external_lex_state = 11}, - [1122] = {.lex_state = 221}, - [1123] = {.lex_state = 219, .external_lex_state = 16}, - [1124] = {.lex_state = 221}, - [1125] = {.lex_state = 219, .external_lex_state = 16}, - [1126] = {.lex_state = 219, .external_lex_state = 16}, - [1127] = {.lex_state = 134, .external_lex_state = 11}, - [1128] = {.lex_state = 219, .external_lex_state = 16}, - [1129] = {.lex_state = 134, .external_lex_state = 11}, - [1130] = {.lex_state = 203, .external_lex_state = 2}, + [1108] = {.lex_state = 195}, + [1109] = {.lex_state = 208, .external_lex_state = 13}, + [1110] = {.lex_state = 135, .external_lex_state = 11}, + [1111] = {.lex_state = 135, .external_lex_state = 11}, + [1112] = {.lex_state = 199, .external_lex_state = 22}, + [1113] = {.lex_state = 199, .external_lex_state = 22}, + [1114] = {.lex_state = 199, .external_lex_state = 16}, + [1115] = {.lex_state = 218, .external_lex_state = 16}, + [1116] = {.lex_state = 135, .external_lex_state = 11}, + [1117] = {.lex_state = 222}, + [1118] = {.lex_state = 220, .external_lex_state = 16}, + [1119] = {.lex_state = 135, .external_lex_state = 11}, + [1120] = {.lex_state = 222}, + [1121] = {.lex_state = 220, .external_lex_state = 16}, + [1122] = {.lex_state = 222}, + [1123] = {.lex_state = 220, .external_lex_state = 16}, + [1124] = {.lex_state = 220, .external_lex_state = 16}, + [1125] = {.lex_state = 135, .external_lex_state = 11}, + [1126] = {.lex_state = 220, .external_lex_state = 16}, + [1127] = {.lex_state = 135, .external_lex_state = 11}, + [1128] = {.lex_state = 220, .external_lex_state = 16}, + [1129] = {.lex_state = 135, .external_lex_state = 11}, + [1130] = {.lex_state = 204, .external_lex_state = 2}, [1131] = {.lex_state = 56, .external_lex_state = 2}, - [1132] = {.lex_state = 134, .external_lex_state = 11}, - [1133] = {.lex_state = 203, .external_lex_state = 2}, + [1132] = {.lex_state = 135, .external_lex_state = 11}, + [1133] = {.lex_state = 204, .external_lex_state = 2}, [1134] = {.lex_state = 73}, - [1135] = {.lex_state = 188, .external_lex_state = 23}, + [1135] = {.lex_state = 189, .external_lex_state = 23}, [1136] = {.lex_state = 91}, [1137] = {.lex_state = 98}, - [1138] = {.lex_state = 188, .external_lex_state = 23}, + [1138] = {.lex_state = 189, .external_lex_state = 23}, [1139] = {.lex_state = 107, .external_lex_state = 6}, [1140] = {.lex_state = 56, .external_lex_state = 2}, [1141] = {.lex_state = 56, .external_lex_state = 2}, [1142] = {.lex_state = 56, .external_lex_state = 2}, - [1143] = {.lex_state = 228, .external_lex_state = 21}, - [1144] = {.lex_state = 228, .external_lex_state = 21}, - [1145] = {.lex_state = 188, .external_lex_state = 23}, - [1146] = {.lex_state = 188, .external_lex_state = 23}, - [1147] = {.lex_state = 228, .external_lex_state = 21}, - [1148] = {.lex_state = 188, .external_lex_state = 21}, - [1149] = {.lex_state = 214, .external_lex_state = 13}, - [1150] = {.lex_state = 214, .external_lex_state = 13}, - [1151] = {.lex_state = 198, .external_lex_state = 22}, - [1152] = {.lex_state = 198, .external_lex_state = 22}, - [1153] = {.lex_state = 198, .external_lex_state = 16}, - [1154] = {.lex_state = 219, .external_lex_state = 16}, - [1155] = {.lex_state = 214, .external_lex_state = 13}, - [1156] = {.lex_state = 217, .external_lex_state = 16}, - [1157] = {.lex_state = 214, .external_lex_state = 13}, - [1158] = {.lex_state = 221}, - [1159] = {.lex_state = 219, .external_lex_state = 16}, - [1160] = {.lex_state = 214, .external_lex_state = 13}, - [1161] = {.lex_state = 221}, - [1162] = {.lex_state = 219, .external_lex_state = 16}, - [1163] = {.lex_state = 221}, - [1164] = {.lex_state = 219, .external_lex_state = 16}, - [1165] = {.lex_state = 219, .external_lex_state = 16}, - [1166] = {.lex_state = 214, .external_lex_state = 13}, - [1167] = {.lex_state = 219, .external_lex_state = 16}, - [1168] = {.lex_state = 214, .external_lex_state = 13}, - [1169] = {.lex_state = 203, .external_lex_state = 2}, + [1143] = {.lex_state = 229, .external_lex_state = 21}, + [1144] = {.lex_state = 229, .external_lex_state = 21}, + [1145] = {.lex_state = 189, .external_lex_state = 23}, + [1146] = {.lex_state = 189, .external_lex_state = 23}, + [1147] = {.lex_state = 229, .external_lex_state = 21}, + [1148] = {.lex_state = 189, .external_lex_state = 21}, + [1149] = {.lex_state = 215, .external_lex_state = 13}, + [1150] = {.lex_state = 215, .external_lex_state = 13}, + [1151] = {.lex_state = 199, .external_lex_state = 22}, + [1152] = {.lex_state = 199, .external_lex_state = 22}, + [1153] = {.lex_state = 199, .external_lex_state = 16}, + [1154] = {.lex_state = 218, .external_lex_state = 16}, + [1155] = {.lex_state = 215, .external_lex_state = 13}, + [1156] = {.lex_state = 222}, + [1157] = {.lex_state = 220, .external_lex_state = 16}, + [1158] = {.lex_state = 215, .external_lex_state = 13}, + [1159] = {.lex_state = 222}, + [1160] = {.lex_state = 220, .external_lex_state = 16}, + [1161] = {.lex_state = 222}, + [1162] = {.lex_state = 220, .external_lex_state = 16}, + [1163] = {.lex_state = 220, .external_lex_state = 16}, + [1164] = {.lex_state = 215, .external_lex_state = 13}, + [1165] = {.lex_state = 220, .external_lex_state = 16}, + [1166] = {.lex_state = 215, .external_lex_state = 13}, + [1167] = {.lex_state = 220, .external_lex_state = 16}, + [1168] = {.lex_state = 215, .external_lex_state = 13}, + [1169] = {.lex_state = 204, .external_lex_state = 2}, [1170] = {.lex_state = 56, .external_lex_state = 2}, - [1171] = {.lex_state = 214, .external_lex_state = 13}, - [1172] = {.lex_state = 203, .external_lex_state = 2}, - [1173] = {.lex_state = 126, .external_lex_state = 3}, - [1174] = {.lex_state = 194}, - [1175] = {.lex_state = 126, .external_lex_state = 14}, - [1176] = {.lex_state = 126, .external_lex_state = 14}, - [1177] = {.lex_state = 198, .external_lex_state = 22}, - [1178] = {.lex_state = 198, .external_lex_state = 22}, - [1179] = {.lex_state = 198, .external_lex_state = 16}, - [1180] = {.lex_state = 219, .external_lex_state = 16}, - [1181] = {.lex_state = 126, .external_lex_state = 14}, - [1182] = {.lex_state = 217, .external_lex_state = 16}, - [1183] = {.lex_state = 126, .external_lex_state = 14}, - [1184] = {.lex_state = 221}, - [1185] = {.lex_state = 219, .external_lex_state = 16}, - [1186] = {.lex_state = 126, .external_lex_state = 14}, - [1187] = {.lex_state = 221}, - [1188] = {.lex_state = 219, .external_lex_state = 16}, - [1189] = {.lex_state = 221}, - [1190] = {.lex_state = 219, .external_lex_state = 16}, - [1191] = {.lex_state = 219, .external_lex_state = 16}, - [1192] = {.lex_state = 126, .external_lex_state = 14}, - [1193] = {.lex_state = 219, .external_lex_state = 16}, - [1194] = {.lex_state = 126, .external_lex_state = 14}, - [1195] = {.lex_state = 203, .external_lex_state = 2}, + [1171] = {.lex_state = 215, .external_lex_state = 13}, + [1172] = {.lex_state = 204, .external_lex_state = 2}, + [1173] = {.lex_state = 127, .external_lex_state = 3}, + [1174] = {.lex_state = 195}, + [1175] = {.lex_state = 127, .external_lex_state = 14}, + [1176] = {.lex_state = 127, .external_lex_state = 14}, + [1177] = {.lex_state = 199, .external_lex_state = 22}, + [1178] = {.lex_state = 199, .external_lex_state = 22}, + [1179] = {.lex_state = 199, .external_lex_state = 16}, + [1180] = {.lex_state = 218, .external_lex_state = 16}, + [1181] = {.lex_state = 127, .external_lex_state = 14}, + [1182] = {.lex_state = 222}, + [1183] = {.lex_state = 220, .external_lex_state = 16}, + [1184] = {.lex_state = 127, .external_lex_state = 14}, + [1185] = {.lex_state = 222}, + [1186] = {.lex_state = 220, .external_lex_state = 16}, + [1187] = {.lex_state = 222}, + [1188] = {.lex_state = 220, .external_lex_state = 16}, + [1189] = {.lex_state = 220, .external_lex_state = 16}, + [1190] = {.lex_state = 127, .external_lex_state = 14}, + [1191] = {.lex_state = 220, .external_lex_state = 16}, + [1192] = {.lex_state = 127, .external_lex_state = 14}, + [1193] = {.lex_state = 220, .external_lex_state = 16}, + [1194] = {.lex_state = 127, .external_lex_state = 14}, + [1195] = {.lex_state = 204, .external_lex_state = 2}, [1196] = {.lex_state = 56, .external_lex_state = 2}, - [1197] = {.lex_state = 126, .external_lex_state = 14}, - [1198] = {.lex_state = 203, .external_lex_state = 2}, - [1199] = {.lex_state = 126, .external_lex_state = 10}, - [1200] = {.lex_state = 126, .external_lex_state = 10}, - [1201] = {.lex_state = 198, .external_lex_state = 22}, - [1202] = {.lex_state = 198, .external_lex_state = 22}, - [1203] = {.lex_state = 198, .external_lex_state = 16}, - [1204] = {.lex_state = 219, .external_lex_state = 16}, - [1205] = {.lex_state = 126, .external_lex_state = 10}, - [1206] = {.lex_state = 217, .external_lex_state = 16}, - [1207] = {.lex_state = 126, .external_lex_state = 10}, - [1208] = {.lex_state = 221}, - [1209] = {.lex_state = 219, .external_lex_state = 16}, - [1210] = {.lex_state = 126, .external_lex_state = 10}, - [1211] = {.lex_state = 221}, - [1212] = {.lex_state = 219, .external_lex_state = 16}, - [1213] = {.lex_state = 221}, - [1214] = {.lex_state = 219, .external_lex_state = 16}, - [1215] = {.lex_state = 219, .external_lex_state = 16}, - [1216] = {.lex_state = 126, .external_lex_state = 10}, - [1217] = {.lex_state = 219, .external_lex_state = 16}, - [1218] = {.lex_state = 126, .external_lex_state = 10}, - [1219] = {.lex_state = 203, .external_lex_state = 2}, + [1197] = {.lex_state = 127, .external_lex_state = 14}, + [1198] = {.lex_state = 204, .external_lex_state = 2}, + [1199] = {.lex_state = 127, .external_lex_state = 10}, + [1200] = {.lex_state = 127, .external_lex_state = 10}, + [1201] = {.lex_state = 199, .external_lex_state = 22}, + [1202] = {.lex_state = 199, .external_lex_state = 22}, + [1203] = {.lex_state = 199, .external_lex_state = 16}, + [1204] = {.lex_state = 218, .external_lex_state = 16}, + [1205] = {.lex_state = 127, .external_lex_state = 10}, + [1206] = {.lex_state = 222}, + [1207] = {.lex_state = 220, .external_lex_state = 16}, + [1208] = {.lex_state = 127, .external_lex_state = 10}, + [1209] = {.lex_state = 222}, + [1210] = {.lex_state = 220, .external_lex_state = 16}, + [1211] = {.lex_state = 222}, + [1212] = {.lex_state = 220, .external_lex_state = 16}, + [1213] = {.lex_state = 220, .external_lex_state = 16}, + [1214] = {.lex_state = 127, .external_lex_state = 10}, + [1215] = {.lex_state = 220, .external_lex_state = 16}, + [1216] = {.lex_state = 127, .external_lex_state = 10}, + [1217] = {.lex_state = 220, .external_lex_state = 16}, + [1218] = {.lex_state = 127, .external_lex_state = 10}, + [1219] = {.lex_state = 204, .external_lex_state = 2}, [1220] = {.lex_state = 56, .external_lex_state = 2}, - [1221] = {.lex_state = 126, .external_lex_state = 10}, - [1222] = {.lex_state = 203, .external_lex_state = 2}, + [1221] = {.lex_state = 127, .external_lex_state = 10}, + [1222] = {.lex_state = 204, .external_lex_state = 2}, [1223] = {.lex_state = 73, .external_lex_state = 15}, [1224] = {.lex_state = 73, .external_lex_state = 15}, - [1225] = {.lex_state = 198, .external_lex_state = 22}, - [1226] = {.lex_state = 198, .external_lex_state = 22}, - [1227] = {.lex_state = 198, .external_lex_state = 16}, - [1228] = {.lex_state = 219, .external_lex_state = 16}, + [1225] = {.lex_state = 199, .external_lex_state = 22}, + [1226] = {.lex_state = 199, .external_lex_state = 22}, + [1227] = {.lex_state = 199, .external_lex_state = 16}, + [1228] = {.lex_state = 218, .external_lex_state = 16}, [1229] = {.lex_state = 73, .external_lex_state = 15}, - [1230] = {.lex_state = 217, .external_lex_state = 16}, - [1231] = {.lex_state = 73, .external_lex_state = 15}, - [1232] = {.lex_state = 221}, - [1233] = {.lex_state = 219, .external_lex_state = 16}, - [1234] = {.lex_state = 73, .external_lex_state = 15}, - [1235] = {.lex_state = 221}, - [1236] = {.lex_state = 219, .external_lex_state = 16}, - [1237] = {.lex_state = 221}, - [1238] = {.lex_state = 219, .external_lex_state = 16}, - [1239] = {.lex_state = 219, .external_lex_state = 16}, + [1230] = {.lex_state = 222}, + [1231] = {.lex_state = 220, .external_lex_state = 16}, + [1232] = {.lex_state = 73, .external_lex_state = 15}, + [1233] = {.lex_state = 222}, + [1234] = {.lex_state = 220, .external_lex_state = 16}, + [1235] = {.lex_state = 222}, + [1236] = {.lex_state = 220, .external_lex_state = 16}, + [1237] = {.lex_state = 220, .external_lex_state = 16}, + [1238] = {.lex_state = 73, .external_lex_state = 15}, + [1239] = {.lex_state = 220, .external_lex_state = 16}, [1240] = {.lex_state = 73, .external_lex_state = 15}, - [1241] = {.lex_state = 219, .external_lex_state = 16}, + [1241] = {.lex_state = 220, .external_lex_state = 16}, [1242] = {.lex_state = 73, .external_lex_state = 15}, - [1243] = {.lex_state = 203, .external_lex_state = 2}, + [1243] = {.lex_state = 204, .external_lex_state = 2}, [1244] = {.lex_state = 56, .external_lex_state = 2}, [1245] = {.lex_state = 73, .external_lex_state = 15}, - [1246] = {.lex_state = 203, .external_lex_state = 2}, + [1246] = {.lex_state = 204, .external_lex_state = 2}, [1247] = {.lex_state = 91, .external_lex_state = 13}, - [1248] = {.lex_state = 198, .external_lex_state = 22}, - [1249] = {.lex_state = 198, .external_lex_state = 22}, - [1250] = {.lex_state = 198, .external_lex_state = 16}, - [1251] = {.lex_state = 219, .external_lex_state = 16}, + [1248] = {.lex_state = 199, .external_lex_state = 22}, + [1249] = {.lex_state = 199, .external_lex_state = 22}, + [1250] = {.lex_state = 199, .external_lex_state = 16}, + [1251] = {.lex_state = 218, .external_lex_state = 16}, [1252] = {.lex_state = 91, .external_lex_state = 13}, - [1253] = {.lex_state = 217, .external_lex_state = 16}, - [1254] = {.lex_state = 91, .external_lex_state = 13}, - [1255] = {.lex_state = 221}, - [1256] = {.lex_state = 219, .external_lex_state = 16}, - [1257] = {.lex_state = 91, .external_lex_state = 13}, - [1258] = {.lex_state = 221}, - [1259] = {.lex_state = 219, .external_lex_state = 16}, - [1260] = {.lex_state = 221}, - [1261] = {.lex_state = 219, .external_lex_state = 16}, - [1262] = {.lex_state = 219, .external_lex_state = 16}, + [1253] = {.lex_state = 222}, + [1254] = {.lex_state = 220, .external_lex_state = 16}, + [1255] = {.lex_state = 91, .external_lex_state = 13}, + [1256] = {.lex_state = 222}, + [1257] = {.lex_state = 220, .external_lex_state = 16}, + [1258] = {.lex_state = 222}, + [1259] = {.lex_state = 220, .external_lex_state = 16}, + [1260] = {.lex_state = 220, .external_lex_state = 16}, + [1261] = {.lex_state = 91, .external_lex_state = 13}, + [1262] = {.lex_state = 220, .external_lex_state = 16}, [1263] = {.lex_state = 91, .external_lex_state = 13}, - [1264] = {.lex_state = 219, .external_lex_state = 16}, + [1264] = {.lex_state = 220, .external_lex_state = 16}, [1265] = {.lex_state = 91, .external_lex_state = 13}, - [1266] = {.lex_state = 203, .external_lex_state = 2}, + [1266] = {.lex_state = 204, .external_lex_state = 2}, [1267] = {.lex_state = 56, .external_lex_state = 2}, - [1268] = {.lex_state = 192, .external_lex_state = 12}, - [1269] = {.lex_state = 157, .external_lex_state = 22}, - [1270] = {.lex_state = 192, .external_lex_state = 12}, - [1271] = {.lex_state = 157, .external_lex_state = 22}, - [1272] = {.lex_state = 134, .external_lex_state = 12}, + [1268] = {.lex_state = 193, .external_lex_state = 12}, + [1269] = {.lex_state = 160, .external_lex_state = 22}, + [1270] = {.lex_state = 193, .external_lex_state = 12}, + [1271] = {.lex_state = 160, .external_lex_state = 22}, + [1272] = {.lex_state = 135, .external_lex_state = 12}, [1273] = {.lex_state = 73}, - [1274] = {.lex_state = 115, .external_lex_state = 5}, - [1275] = {.lex_state = 198, .external_lex_state = 22}, - [1276] = {.lex_state = 198, .external_lex_state = 22}, - [1277] = {.lex_state = 151}, + [1274] = {.lex_state = 116, .external_lex_state = 5}, + [1275] = {.lex_state = 199, .external_lex_state = 22}, + [1276] = {.lex_state = 199, .external_lex_state = 22}, + [1277] = {.lex_state = 152}, [1278] = {.lex_state = 91}, - [1279] = {.lex_state = 198, .external_lex_state = 22}, - [1280] = {.lex_state = 198, .external_lex_state = 22}, - [1281] = {.lex_state = 198, .external_lex_state = 22}, - [1282] = {.lex_state = 115, .external_lex_state = 5}, + [1279] = {.lex_state = 199, .external_lex_state = 22}, + [1280] = {.lex_state = 199, .external_lex_state = 22}, + [1281] = {.lex_state = 199, .external_lex_state = 22}, + [1282] = {.lex_state = 116, .external_lex_state = 5}, [1283] = {.lex_state = 62}, - [1284] = {.lex_state = 157, .external_lex_state = 16}, - [1285] = {.lex_state = 160, .external_lex_state = 6}, - [1286] = {.lex_state = 157, .external_lex_state = 16}, - [1287] = {.lex_state = 157, .external_lex_state = 16}, - [1288] = {.lex_state = 126, .external_lex_state = 4}, - [1289] = {.lex_state = 130, .external_lex_state = 8}, + [1284] = {.lex_state = 158, .external_lex_state = 6}, + [1285] = {.lex_state = 160, .external_lex_state = 16}, + [1286] = {.lex_state = 160, .external_lex_state = 16}, + [1287] = {.lex_state = 160, .external_lex_state = 16}, + [1288] = {.lex_state = 127, .external_lex_state = 4}, + [1289] = {.lex_state = 131, .external_lex_state = 8}, [1290] = {.lex_state = 56, .external_lex_state = 2}, [1291] = {.lex_state = 83, .external_lex_state = 4}, - [1292] = {.lex_state = 113, .external_lex_state = 8}, + [1292] = {.lex_state = 114, .external_lex_state = 8}, [1293] = {.lex_state = 56, .external_lex_state = 2}, - [1294] = {.lex_state = 126, .external_lex_state = 4}, - [1295] = {.lex_state = 130, .external_lex_state = 8}, + [1294] = {.lex_state = 127, .external_lex_state = 4}, + [1295] = {.lex_state = 131, .external_lex_state = 8}, [1296] = {.lex_state = 56, .external_lex_state = 2}, - [1297] = {.lex_state = 219, .external_lex_state = 22}, - [1298] = {.lex_state = 219, .external_lex_state = 22}, - [1299] = {.lex_state = 219, .external_lex_state = 22}, - [1300] = {.lex_state = 151}, - [1301] = {.lex_state = 217, .external_lex_state = 16}, - [1302] = {.lex_state = 219, .external_lex_state = 22}, - [1303] = {.lex_state = 221}, - [1304] = {.lex_state = 219, .external_lex_state = 16}, - [1305] = {.lex_state = 62}, - [1306] = {.lex_state = 157, .external_lex_state = 16}, - [1307] = {.lex_state = 157, .external_lex_state = 16}, - [1308] = {.lex_state = 157, .external_lex_state = 16}, - [1309] = {.lex_state = 219, .external_lex_state = 22}, - [1310] = {.lex_state = 221}, - [1311] = {.lex_state = 219, .external_lex_state = 16}, - [1312] = {.lex_state = 219, .external_lex_state = 22}, - [1313] = {.lex_state = 221}, - [1314] = {.lex_state = 219, .external_lex_state = 16}, - [1315] = {.lex_state = 115, .external_lex_state = 5}, - [1316] = {.lex_state = 219, .external_lex_state = 16}, - [1317] = {.lex_state = 219, .external_lex_state = 22}, - [1318] = {.lex_state = 203, .external_lex_state = 2}, - [1319] = {.lex_state = 126, .external_lex_state = 4}, - [1320] = {.lex_state = 130, .external_lex_state = 8}, - [1321] = {.lex_state = 56, .external_lex_state = 2}, - [1322] = {.lex_state = 83, .external_lex_state = 4}, - [1323] = {.lex_state = 113, .external_lex_state = 8}, - [1324] = {.lex_state = 219, .external_lex_state = 22}, - [1325] = {.lex_state = 203, .external_lex_state = 2}, - [1326] = {.lex_state = 126, .external_lex_state = 4}, - [1327] = {.lex_state = 130, .external_lex_state = 8}, - [1328] = {.lex_state = 198, .external_lex_state = 22}, - [1329] = {.lex_state = 198, .external_lex_state = 22}, - [1330] = {.lex_state = 198, .external_lex_state = 16}, - [1331] = {.lex_state = 219, .external_lex_state = 16}, - [1332] = {.lex_state = 115, .external_lex_state = 5}, - [1333] = {.lex_state = 219, .external_lex_state = 16}, - [1334] = {.lex_state = 115, .external_lex_state = 5}, - [1335] = {.lex_state = 219, .external_lex_state = 16}, - [1336] = {.lex_state = 115, .external_lex_state = 5}, - [1337] = {.lex_state = 219, .external_lex_state = 16}, - [1338] = {.lex_state = 115, .external_lex_state = 5}, - [1339] = {.lex_state = 219, .external_lex_state = 16}, - [1340] = {.lex_state = 115, .external_lex_state = 5}, - [1341] = {.lex_state = 226, .external_lex_state = 7}, - [1342] = {.lex_state = 124}, + [1297] = {.lex_state = 199, .external_lex_state = 22}, + [1298] = {.lex_state = 199, .external_lex_state = 22}, + [1299] = {.lex_state = 199, .external_lex_state = 16}, + [1300] = {.lex_state = 220, .external_lex_state = 16}, + [1301] = {.lex_state = 116, .external_lex_state = 5}, + [1302] = {.lex_state = 220, .external_lex_state = 16}, + [1303] = {.lex_state = 116, .external_lex_state = 5}, + [1304] = {.lex_state = 220, .external_lex_state = 16}, + [1305] = {.lex_state = 220, .external_lex_state = 22}, + [1306] = {.lex_state = 220, .external_lex_state = 22}, + [1307] = {.lex_state = 220, .external_lex_state = 22}, + [1308] = {.lex_state = 152}, + [1309] = {.lex_state = 218, .external_lex_state = 16}, + [1310] = {.lex_state = 62}, + [1311] = {.lex_state = 160, .external_lex_state = 16}, + [1312] = {.lex_state = 160, .external_lex_state = 16}, + [1313] = {.lex_state = 160, .external_lex_state = 16}, + [1314] = {.lex_state = 220, .external_lex_state = 22}, + [1315] = {.lex_state = 222}, + [1316] = {.lex_state = 220, .external_lex_state = 16}, + [1317] = {.lex_state = 220, .external_lex_state = 22}, + [1318] = {.lex_state = 222}, + [1319] = {.lex_state = 220, .external_lex_state = 16}, + [1320] = {.lex_state = 220, .external_lex_state = 22}, + [1321] = {.lex_state = 222}, + [1322] = {.lex_state = 220, .external_lex_state = 16}, + [1323] = {.lex_state = 116, .external_lex_state = 5}, + [1324] = {.lex_state = 220, .external_lex_state = 16}, + [1325] = {.lex_state = 220, .external_lex_state = 22}, + [1326] = {.lex_state = 204, .external_lex_state = 2}, + [1327] = {.lex_state = 127, .external_lex_state = 4}, + [1328] = {.lex_state = 131, .external_lex_state = 8}, + [1329] = {.lex_state = 56, .external_lex_state = 2}, + [1330] = {.lex_state = 83, .external_lex_state = 4}, + [1331] = {.lex_state = 114, .external_lex_state = 8}, + [1332] = {.lex_state = 220, .external_lex_state = 22}, + [1333] = {.lex_state = 204, .external_lex_state = 2}, + [1334] = {.lex_state = 127, .external_lex_state = 4}, + [1335] = {.lex_state = 131, .external_lex_state = 8}, + [1336] = {.lex_state = 116, .external_lex_state = 5}, + [1337] = {.lex_state = 220, .external_lex_state = 16}, + [1338] = {.lex_state = 116, .external_lex_state = 5}, + [1339] = {.lex_state = 220, .external_lex_state = 16}, + [1340] = {.lex_state = 116, .external_lex_state = 5}, + [1341] = {.lex_state = 227, .external_lex_state = 7}, + [1342] = {.lex_state = 125}, [1343] = {.lex_state = 56}, [1344] = {.lex_state = 73}, [1345] = {.lex_state = 56}, [1346] = {.lex_state = 73}, [1347] = {.lex_state = 73}, - [1348] = {.lex_state = 226, .external_lex_state = 21}, - [1349] = {.lex_state = 244, .external_lex_state = 21}, - [1350] = {.lex_state = 226, .external_lex_state = 5}, - [1351] = {.lex_state = 226, .external_lex_state = 5}, - [1352] = {.lex_state = 226, .external_lex_state = 5}, - [1353] = {.lex_state = 226, .external_lex_state = 7}, - [1354] = {.lex_state = 115, .external_lex_state = 5}, - [1355] = {.lex_state = 132, .external_lex_state = 4}, - [1356] = {.lex_state = 217, .external_lex_state = 16}, - [1357] = {.lex_state = 165, .external_lex_state = 17}, - [1358] = {.lex_state = 221}, - [1359] = {.lex_state = 219, .external_lex_state = 16}, - [1360] = {.lex_state = 62}, - [1361] = {.lex_state = 157, .external_lex_state = 16}, - [1362] = {.lex_state = 157, .external_lex_state = 16}, - [1363] = {.lex_state = 157, .external_lex_state = 16}, - [1364] = {.lex_state = 165, .external_lex_state = 17}, - [1365] = {.lex_state = 221}, - [1366] = {.lex_state = 219, .external_lex_state = 16}, - [1367] = {.lex_state = 165, .external_lex_state = 17}, - [1368] = {.lex_state = 221}, - [1369] = {.lex_state = 219, .external_lex_state = 16}, - [1370] = {.lex_state = 188, .external_lex_state = 5}, - [1371] = {.lex_state = 132, .external_lex_state = 4}, + [1348] = {.lex_state = 227, .external_lex_state = 21}, + [1349] = {.lex_state = 245, .external_lex_state = 21}, + [1350] = {.lex_state = 227, .external_lex_state = 5}, + [1351] = {.lex_state = 227, .external_lex_state = 5}, + [1352] = {.lex_state = 227, .external_lex_state = 5}, + [1353] = {.lex_state = 227, .external_lex_state = 7}, + [1354] = {.lex_state = 116, .external_lex_state = 5}, + [1355] = {.lex_state = 133, .external_lex_state = 4}, + [1356] = {.lex_state = 218, .external_lex_state = 16}, + [1357] = {.lex_state = 62}, + [1358] = {.lex_state = 160, .external_lex_state = 16}, + [1359] = {.lex_state = 160, .external_lex_state = 16}, + [1360] = {.lex_state = 160, .external_lex_state = 16}, + [1361] = {.lex_state = 166, .external_lex_state = 17}, + [1362] = {.lex_state = 222}, + [1363] = {.lex_state = 220, .external_lex_state = 16}, + [1364] = {.lex_state = 166, .external_lex_state = 17}, + [1365] = {.lex_state = 222}, + [1366] = {.lex_state = 220, .external_lex_state = 16}, + [1367] = {.lex_state = 166, .external_lex_state = 17}, + [1368] = {.lex_state = 222}, + [1369] = {.lex_state = 220, .external_lex_state = 16}, + [1370] = {.lex_state = 189, .external_lex_state = 5}, + [1371] = {.lex_state = 133, .external_lex_state = 4}, [1372] = {.lex_state = 62}, [1373] = {.lex_state = 62}, - [1374] = {.lex_state = 194, .external_lex_state = 13}, - [1375] = {.lex_state = 194, .external_lex_state = 13}, - [1376] = {.lex_state = 194, .external_lex_state = 13}, - [1377] = {.lex_state = 151}, - [1378] = {.lex_state = 217, .external_lex_state = 16}, - [1379] = {.lex_state = 194, .external_lex_state = 13}, - [1380] = {.lex_state = 221}, - [1381] = {.lex_state = 219, .external_lex_state = 16}, - [1382] = {.lex_state = 62}, - [1383] = {.lex_state = 157, .external_lex_state = 16}, - [1384] = {.lex_state = 157, .external_lex_state = 16}, - [1385] = {.lex_state = 157, .external_lex_state = 16}, - [1386] = {.lex_state = 194, .external_lex_state = 13}, - [1387] = {.lex_state = 221}, - [1388] = {.lex_state = 219, .external_lex_state = 16}, - [1389] = {.lex_state = 194, .external_lex_state = 13}, - [1390] = {.lex_state = 221}, - [1391] = {.lex_state = 219, .external_lex_state = 16}, - [1392] = {.lex_state = 194, .external_lex_state = 13}, - [1393] = {.lex_state = 203, .external_lex_state = 2}, - [1394] = {.lex_state = 126, .external_lex_state = 4}, - [1395] = {.lex_state = 130, .external_lex_state = 8}, + [1374] = {.lex_state = 195, .external_lex_state = 13}, + [1375] = {.lex_state = 195, .external_lex_state = 13}, + [1376] = {.lex_state = 195, .external_lex_state = 13}, + [1377] = {.lex_state = 152}, + [1378] = {.lex_state = 218, .external_lex_state = 16}, + [1379] = {.lex_state = 62}, + [1380] = {.lex_state = 160, .external_lex_state = 16}, + [1381] = {.lex_state = 160, .external_lex_state = 16}, + [1382] = {.lex_state = 160, .external_lex_state = 16}, + [1383] = {.lex_state = 195, .external_lex_state = 13}, + [1384] = {.lex_state = 222}, + [1385] = {.lex_state = 220, .external_lex_state = 16}, + [1386] = {.lex_state = 195, .external_lex_state = 13}, + [1387] = {.lex_state = 222}, + [1388] = {.lex_state = 220, .external_lex_state = 16}, + [1389] = {.lex_state = 195, .external_lex_state = 13}, + [1390] = {.lex_state = 222}, + [1391] = {.lex_state = 220, .external_lex_state = 16}, + [1392] = {.lex_state = 195, .external_lex_state = 13}, + [1393] = {.lex_state = 204, .external_lex_state = 2}, + [1394] = {.lex_state = 127, .external_lex_state = 4}, + [1395] = {.lex_state = 131, .external_lex_state = 8}, [1396] = {.lex_state = 56, .external_lex_state = 2}, [1397] = {.lex_state = 83, .external_lex_state = 4}, - [1398] = {.lex_state = 113, .external_lex_state = 8}, - [1399] = {.lex_state = 194, .external_lex_state = 13}, - [1400] = {.lex_state = 203, .external_lex_state = 2}, - [1401] = {.lex_state = 126, .external_lex_state = 4}, - [1402] = {.lex_state = 130, .external_lex_state = 8}, - [1403] = {.lex_state = 130, .external_lex_state = 19}, - [1404] = {.lex_state = 130, .external_lex_state = 19}, - [1405] = {.lex_state = 198, .external_lex_state = 22}, - [1406] = {.lex_state = 198, .external_lex_state = 22}, - [1407] = {.lex_state = 198, .external_lex_state = 16}, - [1408] = {.lex_state = 219, .external_lex_state = 16}, - [1409] = {.lex_state = 130, .external_lex_state = 19}, - [1410] = {.lex_state = 217, .external_lex_state = 16}, - [1411] = {.lex_state = 130, .external_lex_state = 19}, - [1412] = {.lex_state = 221}, - [1413] = {.lex_state = 219, .external_lex_state = 16}, - [1414] = {.lex_state = 130, .external_lex_state = 19}, - [1415] = {.lex_state = 221}, - [1416] = {.lex_state = 219, .external_lex_state = 16}, - [1417] = {.lex_state = 221}, - [1418] = {.lex_state = 219, .external_lex_state = 16}, - [1419] = {.lex_state = 219, .external_lex_state = 16}, - [1420] = {.lex_state = 130, .external_lex_state = 19}, - [1421] = {.lex_state = 219, .external_lex_state = 16}, - [1422] = {.lex_state = 130, .external_lex_state = 19}, - [1423] = {.lex_state = 203, .external_lex_state = 2}, + [1398] = {.lex_state = 114, .external_lex_state = 8}, + [1399] = {.lex_state = 195, .external_lex_state = 13}, + [1400] = {.lex_state = 204, .external_lex_state = 2}, + [1401] = {.lex_state = 127, .external_lex_state = 4}, + [1402] = {.lex_state = 131, .external_lex_state = 8}, + [1403] = {.lex_state = 131, .external_lex_state = 19}, + [1404] = {.lex_state = 131, .external_lex_state = 19}, + [1405] = {.lex_state = 199, .external_lex_state = 22}, + [1406] = {.lex_state = 199, .external_lex_state = 22}, + [1407] = {.lex_state = 199, .external_lex_state = 16}, + [1408] = {.lex_state = 218, .external_lex_state = 16}, + [1409] = {.lex_state = 131, .external_lex_state = 19}, + [1410] = {.lex_state = 222}, + [1411] = {.lex_state = 220, .external_lex_state = 16}, + [1412] = {.lex_state = 131, .external_lex_state = 19}, + [1413] = {.lex_state = 222}, + [1414] = {.lex_state = 220, .external_lex_state = 16}, + [1415] = {.lex_state = 222}, + [1416] = {.lex_state = 220, .external_lex_state = 16}, + [1417] = {.lex_state = 220, .external_lex_state = 16}, + [1418] = {.lex_state = 131, .external_lex_state = 19}, + [1419] = {.lex_state = 220, .external_lex_state = 16}, + [1420] = {.lex_state = 131, .external_lex_state = 19}, + [1421] = {.lex_state = 220, .external_lex_state = 16}, + [1422] = {.lex_state = 131, .external_lex_state = 19}, + [1423] = {.lex_state = 204, .external_lex_state = 2}, [1424] = {.lex_state = 56, .external_lex_state = 2}, - [1425] = {.lex_state = 130, .external_lex_state = 19}, - [1426] = {.lex_state = 203, .external_lex_state = 2}, - [1427] = {.lex_state = 198, .external_lex_state = 20}, - [1428] = {.lex_state = 132, .external_lex_state = 4}, - [1429] = {.lex_state = 207}, - [1430] = {.lex_state = 248}, + [1425] = {.lex_state = 131, .external_lex_state = 19}, + [1426] = {.lex_state = 204, .external_lex_state = 2}, + [1427] = {.lex_state = 199, .external_lex_state = 20}, + [1428] = {.lex_state = 133, .external_lex_state = 4}, + [1429] = {.lex_state = 208}, + [1430] = {.lex_state = 249}, [1431] = {.lex_state = 73}, - [1432] = {.lex_state = 248, .external_lex_state = 13}, - [1433] = {.lex_state = 248, .external_lex_state = 13}, - [1434] = {.lex_state = 151}, + [1432] = {.lex_state = 249, .external_lex_state = 13}, + [1433] = {.lex_state = 249, .external_lex_state = 13}, + [1434] = {.lex_state = 152}, [1435] = {.lex_state = 91}, - [1436] = {.lex_state = 248, .external_lex_state = 13}, - [1437] = {.lex_state = 248, .external_lex_state = 13}, - [1438] = {.lex_state = 248, .external_lex_state = 13}, + [1436] = {.lex_state = 249, .external_lex_state = 13}, + [1437] = {.lex_state = 249, .external_lex_state = 13}, + [1438] = {.lex_state = 249, .external_lex_state = 13}, [1439] = {.lex_state = 62}, - [1440] = {.lex_state = 157, .external_lex_state = 16}, - [1441] = {.lex_state = 160, .external_lex_state = 6}, - [1442] = {.lex_state = 157, .external_lex_state = 16}, - [1443] = {.lex_state = 157, .external_lex_state = 16}, - [1444] = {.lex_state = 126, .external_lex_state = 4}, - [1445] = {.lex_state = 130, .external_lex_state = 8}, + [1440] = {.lex_state = 158, .external_lex_state = 6}, + [1441] = {.lex_state = 160, .external_lex_state = 16}, + [1442] = {.lex_state = 160, .external_lex_state = 16}, + [1443] = {.lex_state = 160, .external_lex_state = 16}, + [1444] = {.lex_state = 127, .external_lex_state = 4}, + [1445] = {.lex_state = 131, .external_lex_state = 8}, [1446] = {.lex_state = 56, .external_lex_state = 2}, [1447] = {.lex_state = 83, .external_lex_state = 4}, - [1448] = {.lex_state = 113, .external_lex_state = 8}, + [1448] = {.lex_state = 114, .external_lex_state = 8}, [1449] = {.lex_state = 56, .external_lex_state = 2}, - [1450] = {.lex_state = 126, .external_lex_state = 4}, - [1451] = {.lex_state = 130, .external_lex_state = 8}, + [1450] = {.lex_state = 127, .external_lex_state = 4}, + [1451] = {.lex_state = 131, .external_lex_state = 8}, [1452] = {.lex_state = 56, .external_lex_state = 2}, - [1453] = {.lex_state = 246}, + [1453] = {.lex_state = 247}, [1454] = {.lex_state = 77}, - [1455] = {.lex_state = 209}, - [1456] = {.lex_state = 248}, - [1457] = {.lex_state = 234, .external_lex_state = 10}, - [1458] = {.lex_state = 234, .external_lex_state = 10}, - [1459] = {.lex_state = 198, .external_lex_state = 22}, - [1460] = {.lex_state = 198, .external_lex_state = 22}, - [1461] = {.lex_state = 198, .external_lex_state = 16}, - [1462] = {.lex_state = 219, .external_lex_state = 16}, - [1463] = {.lex_state = 234, .external_lex_state = 10}, - [1464] = {.lex_state = 217, .external_lex_state = 16}, - [1465] = {.lex_state = 234, .external_lex_state = 10}, - [1466] = {.lex_state = 221}, - [1467] = {.lex_state = 219, .external_lex_state = 16}, - [1468] = {.lex_state = 234, .external_lex_state = 10}, - [1469] = {.lex_state = 221}, - [1470] = {.lex_state = 219, .external_lex_state = 16}, - [1471] = {.lex_state = 221}, - [1472] = {.lex_state = 219, .external_lex_state = 16}, - [1473] = {.lex_state = 219, .external_lex_state = 16}, - [1474] = {.lex_state = 234, .external_lex_state = 10}, - [1475] = {.lex_state = 219, .external_lex_state = 16}, - [1476] = {.lex_state = 234, .external_lex_state = 10}, - [1477] = {.lex_state = 203, .external_lex_state = 2}, + [1455] = {.lex_state = 210}, + [1456] = {.lex_state = 249}, + [1457] = {.lex_state = 235, .external_lex_state = 10}, + [1458] = {.lex_state = 235, .external_lex_state = 10}, + [1459] = {.lex_state = 199, .external_lex_state = 22}, + [1460] = {.lex_state = 199, .external_lex_state = 22}, + [1461] = {.lex_state = 199, .external_lex_state = 16}, + [1462] = {.lex_state = 218, .external_lex_state = 16}, + [1463] = {.lex_state = 235, .external_lex_state = 10}, + [1464] = {.lex_state = 222}, + [1465] = {.lex_state = 220, .external_lex_state = 16}, + [1466] = {.lex_state = 235, .external_lex_state = 10}, + [1467] = {.lex_state = 222}, + [1468] = {.lex_state = 220, .external_lex_state = 16}, + [1469] = {.lex_state = 222}, + [1470] = {.lex_state = 220, .external_lex_state = 16}, + [1471] = {.lex_state = 220, .external_lex_state = 16}, + [1472] = {.lex_state = 235, .external_lex_state = 10}, + [1473] = {.lex_state = 220, .external_lex_state = 16}, + [1474] = {.lex_state = 235, .external_lex_state = 10}, + [1475] = {.lex_state = 220, .external_lex_state = 16}, + [1476] = {.lex_state = 235, .external_lex_state = 10}, + [1477] = {.lex_state = 204, .external_lex_state = 2}, [1478] = {.lex_state = 56, .external_lex_state = 2}, - [1479] = {.lex_state = 234, .external_lex_state = 10}, - [1480] = {.lex_state = 203, .external_lex_state = 2}, - [1481] = {.lex_state = 230}, - [1482] = {.lex_state = 122, .external_lex_state = 10}, - [1483] = {.lex_state = 132, .external_lex_state = 4}, - [1484] = {.lex_state = 132, .external_lex_state = 4}, + [1479] = {.lex_state = 235, .external_lex_state = 10}, + [1480] = {.lex_state = 204, .external_lex_state = 2}, + [1481] = {.lex_state = 231}, + [1482] = {.lex_state = 123, .external_lex_state = 10}, + [1483] = {.lex_state = 133, .external_lex_state = 4}, + [1484] = {.lex_state = 133, .external_lex_state = 4}, [1485] = {.lex_state = 56, .external_lex_state = 2}, [1486] = {.lex_state = 56, .external_lex_state = 2}, - [1487] = {.lex_state = 132, .external_lex_state = 4}, + [1487] = {.lex_state = 133, .external_lex_state = 4}, [1488] = {.lex_state = 73}, [1489] = {.lex_state = 73}, - [1490] = {.lex_state = 162, .external_lex_state = 2}, - [1491] = {.lex_state = 250}, - [1492] = {.lex_state = 250, .external_lex_state = 13}, - [1493] = {.lex_state = 162, .external_lex_state = 2}, - [1494] = {.lex_state = 250}, - [1495] = {.lex_state = 132, .external_lex_state = 4}, + [1490] = {.lex_state = 163, .external_lex_state = 2}, + [1491] = {.lex_state = 251}, + [1492] = {.lex_state = 251, .external_lex_state = 13}, + [1493] = {.lex_state = 163, .external_lex_state = 2}, + [1494] = {.lex_state = 251}, + [1495] = {.lex_state = 133, .external_lex_state = 4}, [1496] = {.lex_state = 73}, [1497] = {.lex_state = 73}, - [1498] = {.lex_state = 132, .external_lex_state = 4}, + [1498] = {.lex_state = 133, .external_lex_state = 4}, [1499] = {.lex_state = 73}, - [1500] = {.lex_state = 132, .external_lex_state = 4}, + [1500] = {.lex_state = 133, .external_lex_state = 4}, [1501] = {.lex_state = 73}, - [1502] = {.lex_state = 132, .external_lex_state = 4}, + [1502] = {.lex_state = 133, .external_lex_state = 4}, [1503] = {.lex_state = 73}, - [1504] = {.lex_state = 122, .external_lex_state = 10}, - [1505] = {.lex_state = 122, .external_lex_state = 10}, - [1506] = {.lex_state = 122, .external_lex_state = 10}, - [1507] = {.lex_state = 219, .external_lex_state = 16}, - [1508] = {.lex_state = 198, .external_lex_state = 22}, - [1509] = {.lex_state = 198, .external_lex_state = 22}, - [1510] = {.lex_state = 198, .external_lex_state = 16}, - [1511] = {.lex_state = 219, .external_lex_state = 16}, - [1512] = {.lex_state = 122, .external_lex_state = 10}, - [1513] = {.lex_state = 219, .external_lex_state = 16}, - [1514] = {.lex_state = 122, .external_lex_state = 10}, - [1515] = {.lex_state = 219, .external_lex_state = 16}, - [1516] = {.lex_state = 122, .external_lex_state = 10}, - [1517] = {.lex_state = 219, .external_lex_state = 16}, - [1518] = {.lex_state = 122, .external_lex_state = 10}, - [1519] = {.lex_state = 219, .external_lex_state = 16}, - [1520] = {.lex_state = 122, .external_lex_state = 10}, - [1521] = {.lex_state = 122, .external_lex_state = 10}, - [1522] = {.lex_state = 132, .external_lex_state = 4}, - [1523] = {.lex_state = 132, .external_lex_state = 10}, - [1524] = {.lex_state = 132, .external_lex_state = 10}, - [1525] = {.lex_state = 132, .external_lex_state = 4}, - [1526] = {.lex_state = 132, .external_lex_state = 10}, - [1527] = {.lex_state = 130, .external_lex_state = 19}, - [1528] = {.lex_state = 240, .external_lex_state = 21}, + [1504] = {.lex_state = 123, .external_lex_state = 10}, + [1505] = {.lex_state = 123, .external_lex_state = 10}, + [1506] = {.lex_state = 199, .external_lex_state = 22}, + [1507] = {.lex_state = 199, .external_lex_state = 22}, + [1508] = {.lex_state = 199, .external_lex_state = 16}, + [1509] = {.lex_state = 220, .external_lex_state = 16}, + [1510] = {.lex_state = 123, .external_lex_state = 10}, + [1511] = {.lex_state = 220, .external_lex_state = 16}, + [1512] = {.lex_state = 123, .external_lex_state = 10}, + [1513] = {.lex_state = 220, .external_lex_state = 16}, + [1514] = {.lex_state = 123, .external_lex_state = 10}, + [1515] = {.lex_state = 220, .external_lex_state = 16}, + [1516] = {.lex_state = 123, .external_lex_state = 10}, + [1517] = {.lex_state = 220, .external_lex_state = 16}, + [1518] = {.lex_state = 123, .external_lex_state = 10}, + [1519] = {.lex_state = 220, .external_lex_state = 16}, + [1520] = {.lex_state = 123, .external_lex_state = 10}, + [1521] = {.lex_state = 123, .external_lex_state = 10}, + [1522] = {.lex_state = 133, .external_lex_state = 4}, + [1523] = {.lex_state = 133, .external_lex_state = 10}, + [1524] = {.lex_state = 133, .external_lex_state = 10}, + [1525] = {.lex_state = 133, .external_lex_state = 4}, + [1526] = {.lex_state = 133, .external_lex_state = 10}, + [1527] = {.lex_state = 131, .external_lex_state = 19}, + [1528] = {.lex_state = 241, .external_lex_state = 21}, [1529] = {.lex_state = 73}, - [1530] = {.lex_state = 132, .external_lex_state = 10}, - [1531] = {.lex_state = 132, .external_lex_state = 10}, + [1530] = {.lex_state = 133, .external_lex_state = 10}, + [1531] = {.lex_state = 133, .external_lex_state = 10}, [1532] = {.lex_state = 73}, - [1533] = {.lex_state = 205, .external_lex_state = 23}, - [1534] = {.lex_state = 205, .external_lex_state = 23}, - [1535] = {.lex_state = 205, .external_lex_state = 23}, - [1536] = {.lex_state = 205, .external_lex_state = 23}, - [1537] = {.lex_state = 205, .external_lex_state = 21}, - [1538] = {.lex_state = 205, .external_lex_state = 5}, + [1533] = {.lex_state = 206, .external_lex_state = 23}, + [1534] = {.lex_state = 206, .external_lex_state = 23}, + [1535] = {.lex_state = 206, .external_lex_state = 23}, + [1536] = {.lex_state = 206, .external_lex_state = 23}, + [1537] = {.lex_state = 206, .external_lex_state = 21}, + [1538] = {.lex_state = 206, .external_lex_state = 5}, [1539] = {.lex_state = 73, .external_lex_state = 2}, - [1540] = {.lex_state = 134, .external_lex_state = 11}, - [1541] = {.lex_state = 134, .external_lex_state = 11}, - [1542] = {.lex_state = 134, .external_lex_state = 11}, - [1543] = {.lex_state = 219, .external_lex_state = 16}, - [1544] = {.lex_state = 198, .external_lex_state = 22}, - [1545] = {.lex_state = 198, .external_lex_state = 22}, - [1546] = {.lex_state = 198, .external_lex_state = 16}, - [1547] = {.lex_state = 219, .external_lex_state = 16}, - [1548] = {.lex_state = 134, .external_lex_state = 11}, - [1549] = {.lex_state = 219, .external_lex_state = 16}, - [1550] = {.lex_state = 134, .external_lex_state = 11}, - [1551] = {.lex_state = 219, .external_lex_state = 16}, - [1552] = {.lex_state = 134, .external_lex_state = 11}, - [1553] = {.lex_state = 219, .external_lex_state = 16}, - [1554] = {.lex_state = 134, .external_lex_state = 11}, - [1555] = {.lex_state = 219, .external_lex_state = 16}, - [1556] = {.lex_state = 134, .external_lex_state = 11}, - [1557] = {.lex_state = 134, .external_lex_state = 11}, - [1558] = {.lex_state = 188, .external_lex_state = 23}, - [1559] = {.lex_state = 188, .external_lex_state = 23}, - [1560] = {.lex_state = 228, .external_lex_state = 21}, + [1540] = {.lex_state = 135, .external_lex_state = 11}, + [1541] = {.lex_state = 135, .external_lex_state = 11}, + [1542] = {.lex_state = 199, .external_lex_state = 22}, + [1543] = {.lex_state = 199, .external_lex_state = 22}, + [1544] = {.lex_state = 199, .external_lex_state = 16}, + [1545] = {.lex_state = 220, .external_lex_state = 16}, + [1546] = {.lex_state = 135, .external_lex_state = 11}, + [1547] = {.lex_state = 220, .external_lex_state = 16}, + [1548] = {.lex_state = 135, .external_lex_state = 11}, + [1549] = {.lex_state = 220, .external_lex_state = 16}, + [1550] = {.lex_state = 135, .external_lex_state = 11}, + [1551] = {.lex_state = 220, .external_lex_state = 16}, + [1552] = {.lex_state = 135, .external_lex_state = 11}, + [1553] = {.lex_state = 220, .external_lex_state = 16}, + [1554] = {.lex_state = 135, .external_lex_state = 11}, + [1555] = {.lex_state = 220, .external_lex_state = 16}, + [1556] = {.lex_state = 135, .external_lex_state = 11}, + [1557] = {.lex_state = 135, .external_lex_state = 11}, + [1558] = {.lex_state = 189, .external_lex_state = 23}, + [1559] = {.lex_state = 189, .external_lex_state = 23}, + [1560] = {.lex_state = 229, .external_lex_state = 21}, [1561] = {.lex_state = 73}, - [1562] = {.lex_state = 188, .external_lex_state = 23}, - [1563] = {.lex_state = 228, .external_lex_state = 23}, - [1564] = {.lex_state = 151}, + [1562] = {.lex_state = 189, .external_lex_state = 23}, + [1563] = {.lex_state = 229, .external_lex_state = 23}, + [1564] = {.lex_state = 152}, [1565] = {.lex_state = 91}, - [1566] = {.lex_state = 228, .external_lex_state = 23}, - [1567] = {.lex_state = 228, .external_lex_state = 23}, - [1568] = {.lex_state = 228, .external_lex_state = 23}, + [1566] = {.lex_state = 229, .external_lex_state = 23}, + [1567] = {.lex_state = 229, .external_lex_state = 23}, + [1568] = {.lex_state = 229, .external_lex_state = 23}, [1569] = {.lex_state = 62}, - [1570] = {.lex_state = 157, .external_lex_state = 16}, - [1571] = {.lex_state = 160, .external_lex_state = 6}, - [1572] = {.lex_state = 157, .external_lex_state = 16}, - [1573] = {.lex_state = 157, .external_lex_state = 16}, - [1574] = {.lex_state = 126, .external_lex_state = 4}, - [1575] = {.lex_state = 130, .external_lex_state = 8}, + [1570] = {.lex_state = 158, .external_lex_state = 6}, + [1571] = {.lex_state = 160, .external_lex_state = 16}, + [1572] = {.lex_state = 160, .external_lex_state = 16}, + [1573] = {.lex_state = 160, .external_lex_state = 16}, + [1574] = {.lex_state = 127, .external_lex_state = 4}, + [1575] = {.lex_state = 131, .external_lex_state = 8}, [1576] = {.lex_state = 56, .external_lex_state = 2}, [1577] = {.lex_state = 83, .external_lex_state = 4}, - [1578] = {.lex_state = 113, .external_lex_state = 8}, + [1578] = {.lex_state = 114, .external_lex_state = 8}, [1579] = {.lex_state = 56, .external_lex_state = 2}, - [1580] = {.lex_state = 126, .external_lex_state = 4}, - [1581] = {.lex_state = 130, .external_lex_state = 8}, + [1580] = {.lex_state = 127, .external_lex_state = 4}, + [1581] = {.lex_state = 131, .external_lex_state = 8}, [1582] = {.lex_state = 56, .external_lex_state = 2}, - [1583] = {.lex_state = 214, .external_lex_state = 13}, - [1584] = {.lex_state = 214, .external_lex_state = 13}, - [1585] = {.lex_state = 214, .external_lex_state = 13}, - [1586] = {.lex_state = 219, .external_lex_state = 16}, - [1587] = {.lex_state = 198, .external_lex_state = 22}, - [1588] = {.lex_state = 198, .external_lex_state = 22}, - [1589] = {.lex_state = 198, .external_lex_state = 16}, - [1590] = {.lex_state = 219, .external_lex_state = 16}, - [1591] = {.lex_state = 214, .external_lex_state = 13}, - [1592] = {.lex_state = 219, .external_lex_state = 16}, - [1593] = {.lex_state = 214, .external_lex_state = 13}, - [1594] = {.lex_state = 219, .external_lex_state = 16}, - [1595] = {.lex_state = 214, .external_lex_state = 13}, - [1596] = {.lex_state = 219, .external_lex_state = 16}, - [1597] = {.lex_state = 214, .external_lex_state = 13}, - [1598] = {.lex_state = 219, .external_lex_state = 16}, - [1599] = {.lex_state = 214, .external_lex_state = 13}, - [1600] = {.lex_state = 214, .external_lex_state = 13}, - [1601] = {.lex_state = 126, .external_lex_state = 3}, - [1602] = {.lex_state = 126, .external_lex_state = 14}, - [1603] = {.lex_state = 126, .external_lex_state = 14}, - [1604] = {.lex_state = 126, .external_lex_state = 14}, - [1605] = {.lex_state = 219, .external_lex_state = 16}, - [1606] = {.lex_state = 198, .external_lex_state = 22}, - [1607] = {.lex_state = 198, .external_lex_state = 22}, - [1608] = {.lex_state = 198, .external_lex_state = 16}, - [1609] = {.lex_state = 219, .external_lex_state = 16}, - [1610] = {.lex_state = 126, .external_lex_state = 14}, - [1611] = {.lex_state = 219, .external_lex_state = 16}, - [1612] = {.lex_state = 126, .external_lex_state = 14}, - [1613] = {.lex_state = 219, .external_lex_state = 16}, - [1614] = {.lex_state = 126, .external_lex_state = 14}, - [1615] = {.lex_state = 219, .external_lex_state = 16}, - [1616] = {.lex_state = 126, .external_lex_state = 14}, - [1617] = {.lex_state = 219, .external_lex_state = 16}, - [1618] = {.lex_state = 126, .external_lex_state = 14}, - [1619] = {.lex_state = 126, .external_lex_state = 14}, - [1620] = {.lex_state = 126, .external_lex_state = 10}, - [1621] = {.lex_state = 126, .external_lex_state = 10}, - [1622] = {.lex_state = 126, .external_lex_state = 10}, - [1623] = {.lex_state = 219, .external_lex_state = 16}, - [1624] = {.lex_state = 198, .external_lex_state = 22}, - [1625] = {.lex_state = 198, .external_lex_state = 22}, - [1626] = {.lex_state = 198, .external_lex_state = 16}, - [1627] = {.lex_state = 219, .external_lex_state = 16}, - [1628] = {.lex_state = 126, .external_lex_state = 10}, - [1629] = {.lex_state = 219, .external_lex_state = 16}, - [1630] = {.lex_state = 126, .external_lex_state = 10}, - [1631] = {.lex_state = 219, .external_lex_state = 16}, - [1632] = {.lex_state = 126, .external_lex_state = 10}, - [1633] = {.lex_state = 219, .external_lex_state = 16}, - [1634] = {.lex_state = 126, .external_lex_state = 10}, - [1635] = {.lex_state = 219, .external_lex_state = 16}, - [1636] = {.lex_state = 126, .external_lex_state = 10}, - [1637] = {.lex_state = 126, .external_lex_state = 10}, + [1583] = {.lex_state = 215, .external_lex_state = 13}, + [1584] = {.lex_state = 215, .external_lex_state = 13}, + [1585] = {.lex_state = 199, .external_lex_state = 22}, + [1586] = {.lex_state = 199, .external_lex_state = 22}, + [1587] = {.lex_state = 199, .external_lex_state = 16}, + [1588] = {.lex_state = 220, .external_lex_state = 16}, + [1589] = {.lex_state = 215, .external_lex_state = 13}, + [1590] = {.lex_state = 220, .external_lex_state = 16}, + [1591] = {.lex_state = 215, .external_lex_state = 13}, + [1592] = {.lex_state = 220, .external_lex_state = 16}, + [1593] = {.lex_state = 215, .external_lex_state = 13}, + [1594] = {.lex_state = 220, .external_lex_state = 16}, + [1595] = {.lex_state = 215, .external_lex_state = 13}, + [1596] = {.lex_state = 220, .external_lex_state = 16}, + [1597] = {.lex_state = 215, .external_lex_state = 13}, + [1598] = {.lex_state = 220, .external_lex_state = 16}, + [1599] = {.lex_state = 215, .external_lex_state = 13}, + [1600] = {.lex_state = 215, .external_lex_state = 13}, + [1601] = {.lex_state = 127, .external_lex_state = 3}, + [1602] = {.lex_state = 127, .external_lex_state = 14}, + [1603] = {.lex_state = 127, .external_lex_state = 14}, + [1604] = {.lex_state = 199, .external_lex_state = 22}, + [1605] = {.lex_state = 199, .external_lex_state = 22}, + [1606] = {.lex_state = 199, .external_lex_state = 16}, + [1607] = {.lex_state = 220, .external_lex_state = 16}, + [1608] = {.lex_state = 127, .external_lex_state = 14}, + [1609] = {.lex_state = 220, .external_lex_state = 16}, + [1610] = {.lex_state = 127, .external_lex_state = 14}, + [1611] = {.lex_state = 220, .external_lex_state = 16}, + [1612] = {.lex_state = 127, .external_lex_state = 14}, + [1613] = {.lex_state = 220, .external_lex_state = 16}, + [1614] = {.lex_state = 127, .external_lex_state = 14}, + [1615] = {.lex_state = 220, .external_lex_state = 16}, + [1616] = {.lex_state = 127, .external_lex_state = 14}, + [1617] = {.lex_state = 220, .external_lex_state = 16}, + [1618] = {.lex_state = 127, .external_lex_state = 14}, + [1619] = {.lex_state = 127, .external_lex_state = 14}, + [1620] = {.lex_state = 127, .external_lex_state = 10}, + [1621] = {.lex_state = 127, .external_lex_state = 10}, + [1622] = {.lex_state = 199, .external_lex_state = 22}, + [1623] = {.lex_state = 199, .external_lex_state = 22}, + [1624] = {.lex_state = 199, .external_lex_state = 16}, + [1625] = {.lex_state = 220, .external_lex_state = 16}, + [1626] = {.lex_state = 127, .external_lex_state = 10}, + [1627] = {.lex_state = 220, .external_lex_state = 16}, + [1628] = {.lex_state = 127, .external_lex_state = 10}, + [1629] = {.lex_state = 220, .external_lex_state = 16}, + [1630] = {.lex_state = 127, .external_lex_state = 10}, + [1631] = {.lex_state = 220, .external_lex_state = 16}, + [1632] = {.lex_state = 127, .external_lex_state = 10}, + [1633] = {.lex_state = 220, .external_lex_state = 16}, + [1634] = {.lex_state = 127, .external_lex_state = 10}, + [1635] = {.lex_state = 220, .external_lex_state = 16}, + [1636] = {.lex_state = 127, .external_lex_state = 10}, + [1637] = {.lex_state = 127, .external_lex_state = 10}, [1638] = {.lex_state = 73, .external_lex_state = 15}, [1639] = {.lex_state = 73, .external_lex_state = 15}, - [1640] = {.lex_state = 73, .external_lex_state = 15}, - [1641] = {.lex_state = 219, .external_lex_state = 16}, - [1642] = {.lex_state = 198, .external_lex_state = 22}, - [1643] = {.lex_state = 198, .external_lex_state = 22}, - [1644] = {.lex_state = 198, .external_lex_state = 16}, - [1645] = {.lex_state = 219, .external_lex_state = 16}, + [1640] = {.lex_state = 199, .external_lex_state = 22}, + [1641] = {.lex_state = 199, .external_lex_state = 22}, + [1642] = {.lex_state = 199, .external_lex_state = 16}, + [1643] = {.lex_state = 220, .external_lex_state = 16}, + [1644] = {.lex_state = 73, .external_lex_state = 15}, + [1645] = {.lex_state = 220, .external_lex_state = 16}, [1646] = {.lex_state = 73, .external_lex_state = 15}, - [1647] = {.lex_state = 219, .external_lex_state = 16}, + [1647] = {.lex_state = 220, .external_lex_state = 16}, [1648] = {.lex_state = 73, .external_lex_state = 15}, - [1649] = {.lex_state = 219, .external_lex_state = 16}, + [1649] = {.lex_state = 220, .external_lex_state = 16}, [1650] = {.lex_state = 73, .external_lex_state = 15}, - [1651] = {.lex_state = 219, .external_lex_state = 16}, + [1651] = {.lex_state = 220, .external_lex_state = 16}, [1652] = {.lex_state = 73, .external_lex_state = 15}, - [1653] = {.lex_state = 219, .external_lex_state = 16}, + [1653] = {.lex_state = 220, .external_lex_state = 16}, [1654] = {.lex_state = 73, .external_lex_state = 15}, [1655] = {.lex_state = 73, .external_lex_state = 15}, [1656] = {.lex_state = 91, .external_lex_state = 13}, [1657] = {.lex_state = 91, .external_lex_state = 13}, - [1658] = {.lex_state = 91, .external_lex_state = 13}, - [1659] = {.lex_state = 219, .external_lex_state = 16}, - [1660] = {.lex_state = 198, .external_lex_state = 22}, - [1661] = {.lex_state = 198, .external_lex_state = 22}, - [1662] = {.lex_state = 198, .external_lex_state = 16}, - [1663] = {.lex_state = 219, .external_lex_state = 16}, + [1658] = {.lex_state = 199, .external_lex_state = 22}, + [1659] = {.lex_state = 199, .external_lex_state = 22}, + [1660] = {.lex_state = 199, .external_lex_state = 16}, + [1661] = {.lex_state = 220, .external_lex_state = 16}, + [1662] = {.lex_state = 91, .external_lex_state = 13}, + [1663] = {.lex_state = 220, .external_lex_state = 16}, [1664] = {.lex_state = 91, .external_lex_state = 13}, - [1665] = {.lex_state = 219, .external_lex_state = 16}, + [1665] = {.lex_state = 220, .external_lex_state = 16}, [1666] = {.lex_state = 91, .external_lex_state = 13}, - [1667] = {.lex_state = 219, .external_lex_state = 16}, + [1667] = {.lex_state = 220, .external_lex_state = 16}, [1668] = {.lex_state = 91, .external_lex_state = 13}, - [1669] = {.lex_state = 219, .external_lex_state = 16}, + [1669] = {.lex_state = 220, .external_lex_state = 16}, [1670] = {.lex_state = 91, .external_lex_state = 13}, - [1671] = {.lex_state = 219, .external_lex_state = 16}, + [1671] = {.lex_state = 220, .external_lex_state = 16}, [1672] = {.lex_state = 91, .external_lex_state = 13}, - [1673] = {.lex_state = 157, .external_lex_state = 22}, - [1674] = {.lex_state = 157, .external_lex_state = 16}, - [1675] = {.lex_state = 157, .external_lex_state = 22}, - [1676] = {.lex_state = 157, .external_lex_state = 16}, - [1677] = {.lex_state = 198, .external_lex_state = 22}, - [1678] = {.lex_state = 198, .external_lex_state = 22}, - [1679] = {.lex_state = 198, .external_lex_state = 22}, - [1680] = {.lex_state = 151}, - [1681] = {.lex_state = 217, .external_lex_state = 16}, - [1682] = {.lex_state = 198, .external_lex_state = 22}, - [1683] = {.lex_state = 221}, - [1684] = {.lex_state = 219, .external_lex_state = 16}, - [1685] = {.lex_state = 62}, - [1686] = {.lex_state = 157, .external_lex_state = 16}, - [1687] = {.lex_state = 157, .external_lex_state = 16}, - [1688] = {.lex_state = 157, .external_lex_state = 16}, - [1689] = {.lex_state = 198, .external_lex_state = 22}, - [1690] = {.lex_state = 221}, - [1691] = {.lex_state = 219, .external_lex_state = 16}, - [1692] = {.lex_state = 198, .external_lex_state = 22}, - [1693] = {.lex_state = 221}, - [1694] = {.lex_state = 219, .external_lex_state = 16}, - [1695] = {.lex_state = 198, .external_lex_state = 22}, - [1696] = {.lex_state = 203, .external_lex_state = 2}, - [1697] = {.lex_state = 126, .external_lex_state = 4}, - [1698] = {.lex_state = 130, .external_lex_state = 8}, + [1673] = {.lex_state = 160, .external_lex_state = 22}, + [1674] = {.lex_state = 160, .external_lex_state = 16}, + [1675] = {.lex_state = 160, .external_lex_state = 22}, + [1676] = {.lex_state = 160, .external_lex_state = 16}, + [1677] = {.lex_state = 199, .external_lex_state = 22}, + [1678] = {.lex_state = 199, .external_lex_state = 22}, + [1679] = {.lex_state = 199, .external_lex_state = 22}, + [1680] = {.lex_state = 152}, + [1681] = {.lex_state = 218, .external_lex_state = 16}, + [1682] = {.lex_state = 62}, + [1683] = {.lex_state = 160, .external_lex_state = 16}, + [1684] = {.lex_state = 160, .external_lex_state = 16}, + [1685] = {.lex_state = 160, .external_lex_state = 16}, + [1686] = {.lex_state = 199, .external_lex_state = 22}, + [1687] = {.lex_state = 222}, + [1688] = {.lex_state = 220, .external_lex_state = 16}, + [1689] = {.lex_state = 199, .external_lex_state = 22}, + [1690] = {.lex_state = 222}, + [1691] = {.lex_state = 220, .external_lex_state = 16}, + [1692] = {.lex_state = 199, .external_lex_state = 22}, + [1693] = {.lex_state = 222}, + [1694] = {.lex_state = 220, .external_lex_state = 16}, + [1695] = {.lex_state = 199, .external_lex_state = 22}, + [1696] = {.lex_state = 204, .external_lex_state = 2}, + [1697] = {.lex_state = 127, .external_lex_state = 4}, + [1698] = {.lex_state = 131, .external_lex_state = 8}, [1699] = {.lex_state = 56, .external_lex_state = 2}, [1700] = {.lex_state = 83, .external_lex_state = 4}, - [1701] = {.lex_state = 113, .external_lex_state = 8}, - [1702] = {.lex_state = 198, .external_lex_state = 22}, - [1703] = {.lex_state = 203, .external_lex_state = 2}, - [1704] = {.lex_state = 126, .external_lex_state = 4}, - [1705] = {.lex_state = 130, .external_lex_state = 8}, - [1706] = {.lex_state = 219, .external_lex_state = 22}, - [1707] = {.lex_state = 219, .external_lex_state = 22}, - [1708] = {.lex_state = 198, .external_lex_state = 22}, - [1709] = {.lex_state = 198, .external_lex_state = 22}, - [1710] = {.lex_state = 198, .external_lex_state = 16}, - [1711] = {.lex_state = 219, .external_lex_state = 16}, - [1712] = {.lex_state = 219, .external_lex_state = 22}, - [1713] = {.lex_state = 217, .external_lex_state = 16}, - [1714] = {.lex_state = 219, .external_lex_state = 22}, - [1715] = {.lex_state = 221}, - [1716] = {.lex_state = 219, .external_lex_state = 16}, - [1717] = {.lex_state = 219, .external_lex_state = 22}, - [1718] = {.lex_state = 221}, - [1719] = {.lex_state = 219, .external_lex_state = 16}, - [1720] = {.lex_state = 221}, - [1721] = {.lex_state = 219, .external_lex_state = 16}, - [1722] = {.lex_state = 219, .external_lex_state = 16}, - [1723] = {.lex_state = 219, .external_lex_state = 22}, - [1724] = {.lex_state = 219, .external_lex_state = 16}, - [1725] = {.lex_state = 115, .external_lex_state = 5}, - [1726] = {.lex_state = 219, .external_lex_state = 22}, - [1727] = {.lex_state = 203, .external_lex_state = 2}, - [1728] = {.lex_state = 56, .external_lex_state = 2}, - [1729] = {.lex_state = 219, .external_lex_state = 22}, - [1730] = {.lex_state = 203, .external_lex_state = 2}, - [1731] = {.lex_state = 115, .external_lex_state = 5}, - [1732] = {.lex_state = 115, .external_lex_state = 5}, - [1733] = {.lex_state = 115, .external_lex_state = 5}, - [1734] = {.lex_state = 219, .external_lex_state = 16}, - [1735] = {.lex_state = 115, .external_lex_state = 5}, - [1736] = {.lex_state = 219, .external_lex_state = 16}, - [1737] = {.lex_state = 115, .external_lex_state = 5}, - [1738] = {.lex_state = 219, .external_lex_state = 16}, - [1739] = {.lex_state = 115, .external_lex_state = 5}, - [1740] = {.lex_state = 115, .external_lex_state = 5}, - [1741] = {.lex_state = 244, .external_lex_state = 21}, + [1701] = {.lex_state = 114, .external_lex_state = 8}, + [1702] = {.lex_state = 199, .external_lex_state = 22}, + [1703] = {.lex_state = 204, .external_lex_state = 2}, + [1704] = {.lex_state = 127, .external_lex_state = 4}, + [1705] = {.lex_state = 131, .external_lex_state = 8}, + [1706] = {.lex_state = 116, .external_lex_state = 5}, + [1707] = {.lex_state = 116, .external_lex_state = 5}, + [1708] = {.lex_state = 116, .external_lex_state = 5}, + [1709] = {.lex_state = 220, .external_lex_state = 16}, + [1710] = {.lex_state = 116, .external_lex_state = 5}, + [1711] = {.lex_state = 220, .external_lex_state = 16}, + [1712] = {.lex_state = 116, .external_lex_state = 5}, + [1713] = {.lex_state = 220, .external_lex_state = 16}, + [1714] = {.lex_state = 220, .external_lex_state = 22}, + [1715] = {.lex_state = 220, .external_lex_state = 22}, + [1716] = {.lex_state = 199, .external_lex_state = 22}, + [1717] = {.lex_state = 199, .external_lex_state = 22}, + [1718] = {.lex_state = 199, .external_lex_state = 16}, + [1719] = {.lex_state = 218, .external_lex_state = 16}, + [1720] = {.lex_state = 220, .external_lex_state = 22}, + [1721] = {.lex_state = 222}, + [1722] = {.lex_state = 220, .external_lex_state = 16}, + [1723] = {.lex_state = 220, .external_lex_state = 22}, + [1724] = {.lex_state = 222}, + [1725] = {.lex_state = 220, .external_lex_state = 16}, + [1726] = {.lex_state = 222}, + [1727] = {.lex_state = 220, .external_lex_state = 16}, + [1728] = {.lex_state = 220, .external_lex_state = 16}, + [1729] = {.lex_state = 220, .external_lex_state = 22}, + [1730] = {.lex_state = 220, .external_lex_state = 16}, + [1731] = {.lex_state = 220, .external_lex_state = 22}, + [1732] = {.lex_state = 220, .external_lex_state = 16}, + [1733] = {.lex_state = 116, .external_lex_state = 5}, + [1734] = {.lex_state = 220, .external_lex_state = 22}, + [1735] = {.lex_state = 204, .external_lex_state = 2}, + [1736] = {.lex_state = 56, .external_lex_state = 2}, + [1737] = {.lex_state = 220, .external_lex_state = 22}, + [1738] = {.lex_state = 204, .external_lex_state = 2}, + [1739] = {.lex_state = 116, .external_lex_state = 5}, + [1740] = {.lex_state = 116, .external_lex_state = 5}, + [1741] = {.lex_state = 245, .external_lex_state = 21}, [1742] = {.lex_state = 73}, - [1743] = {.lex_state = 132, .external_lex_state = 10}, - [1744] = {.lex_state = 132, .external_lex_state = 10}, + [1743] = {.lex_state = 133, .external_lex_state = 10}, + [1744] = {.lex_state = 133, .external_lex_state = 10}, [1745] = {.lex_state = 73}, - [1746] = {.lex_state = 226, .external_lex_state = 23}, - [1747] = {.lex_state = 226, .external_lex_state = 23}, - [1748] = {.lex_state = 226, .external_lex_state = 23}, - [1749] = {.lex_state = 226, .external_lex_state = 23}, - [1750] = {.lex_state = 226, .external_lex_state = 21}, - [1751] = {.lex_state = 226, .external_lex_state = 5}, - [1752] = {.lex_state = 165, .external_lex_state = 17}, - [1753] = {.lex_state = 198, .external_lex_state = 22}, - [1754] = {.lex_state = 198, .external_lex_state = 22}, - [1755] = {.lex_state = 198, .external_lex_state = 16}, - [1756] = {.lex_state = 219, .external_lex_state = 16}, - [1757] = {.lex_state = 165, .external_lex_state = 17}, - [1758] = {.lex_state = 217, .external_lex_state = 16}, - [1759] = {.lex_state = 165, .external_lex_state = 17}, - [1760] = {.lex_state = 221}, - [1761] = {.lex_state = 219, .external_lex_state = 16}, - [1762] = {.lex_state = 165, .external_lex_state = 17}, - [1763] = {.lex_state = 221}, - [1764] = {.lex_state = 219, .external_lex_state = 16}, - [1765] = {.lex_state = 221}, - [1766] = {.lex_state = 219, .external_lex_state = 16}, - [1767] = {.lex_state = 219, .external_lex_state = 16}, - [1768] = {.lex_state = 165, .external_lex_state = 17}, - [1769] = {.lex_state = 219, .external_lex_state = 16}, - [1770] = {.lex_state = 194, .external_lex_state = 13}, - [1771] = {.lex_state = 194, .external_lex_state = 13}, - [1772] = {.lex_state = 198, .external_lex_state = 22}, - [1773] = {.lex_state = 198, .external_lex_state = 22}, - [1774] = {.lex_state = 198, .external_lex_state = 16}, - [1775] = {.lex_state = 219, .external_lex_state = 16}, - [1776] = {.lex_state = 194, .external_lex_state = 13}, - [1777] = {.lex_state = 217, .external_lex_state = 16}, - [1778] = {.lex_state = 194, .external_lex_state = 13}, - [1779] = {.lex_state = 221}, - [1780] = {.lex_state = 219, .external_lex_state = 16}, - [1781] = {.lex_state = 194, .external_lex_state = 13}, - [1782] = {.lex_state = 221}, - [1783] = {.lex_state = 219, .external_lex_state = 16}, - [1784] = {.lex_state = 221}, - [1785] = {.lex_state = 219, .external_lex_state = 16}, - [1786] = {.lex_state = 219, .external_lex_state = 16}, - [1787] = {.lex_state = 194, .external_lex_state = 13}, - [1788] = {.lex_state = 219, .external_lex_state = 16}, - [1789] = {.lex_state = 194, .external_lex_state = 13}, - [1790] = {.lex_state = 203, .external_lex_state = 2}, + [1746] = {.lex_state = 227, .external_lex_state = 23}, + [1747] = {.lex_state = 227, .external_lex_state = 23}, + [1748] = {.lex_state = 227, .external_lex_state = 23}, + [1749] = {.lex_state = 227, .external_lex_state = 23}, + [1750] = {.lex_state = 227, .external_lex_state = 21}, + [1751] = {.lex_state = 227, .external_lex_state = 5}, + [1752] = {.lex_state = 166, .external_lex_state = 17}, + [1753] = {.lex_state = 199, .external_lex_state = 22}, + [1754] = {.lex_state = 199, .external_lex_state = 22}, + [1755] = {.lex_state = 199, .external_lex_state = 16}, + [1756] = {.lex_state = 218, .external_lex_state = 16}, + [1757] = {.lex_state = 166, .external_lex_state = 17}, + [1758] = {.lex_state = 222}, + [1759] = {.lex_state = 220, .external_lex_state = 16}, + [1760] = {.lex_state = 166, .external_lex_state = 17}, + [1761] = {.lex_state = 222}, + [1762] = {.lex_state = 220, .external_lex_state = 16}, + [1763] = {.lex_state = 222}, + [1764] = {.lex_state = 220, .external_lex_state = 16}, + [1765] = {.lex_state = 220, .external_lex_state = 16}, + [1766] = {.lex_state = 166, .external_lex_state = 17}, + [1767] = {.lex_state = 220, .external_lex_state = 16}, + [1768] = {.lex_state = 166, .external_lex_state = 17}, + [1769] = {.lex_state = 220, .external_lex_state = 16}, + [1770] = {.lex_state = 195, .external_lex_state = 13}, + [1771] = {.lex_state = 195, .external_lex_state = 13}, + [1772] = {.lex_state = 199, .external_lex_state = 22}, + [1773] = {.lex_state = 199, .external_lex_state = 22}, + [1774] = {.lex_state = 199, .external_lex_state = 16}, + [1775] = {.lex_state = 218, .external_lex_state = 16}, + [1776] = {.lex_state = 195, .external_lex_state = 13}, + [1777] = {.lex_state = 222}, + [1778] = {.lex_state = 220, .external_lex_state = 16}, + [1779] = {.lex_state = 195, .external_lex_state = 13}, + [1780] = {.lex_state = 222}, + [1781] = {.lex_state = 220, .external_lex_state = 16}, + [1782] = {.lex_state = 222}, + [1783] = {.lex_state = 220, .external_lex_state = 16}, + [1784] = {.lex_state = 220, .external_lex_state = 16}, + [1785] = {.lex_state = 195, .external_lex_state = 13}, + [1786] = {.lex_state = 220, .external_lex_state = 16}, + [1787] = {.lex_state = 195, .external_lex_state = 13}, + [1788] = {.lex_state = 220, .external_lex_state = 16}, + [1789] = {.lex_state = 195, .external_lex_state = 13}, + [1790] = {.lex_state = 204, .external_lex_state = 2}, [1791] = {.lex_state = 56, .external_lex_state = 2}, - [1792] = {.lex_state = 194, .external_lex_state = 13}, - [1793] = {.lex_state = 203, .external_lex_state = 2}, - [1794] = {.lex_state = 130, .external_lex_state = 19}, - [1795] = {.lex_state = 130, .external_lex_state = 19}, - [1796] = {.lex_state = 130, .external_lex_state = 19}, - [1797] = {.lex_state = 219, .external_lex_state = 16}, - [1798] = {.lex_state = 198, .external_lex_state = 22}, - [1799] = {.lex_state = 198, .external_lex_state = 22}, - [1800] = {.lex_state = 198, .external_lex_state = 16}, - [1801] = {.lex_state = 219, .external_lex_state = 16}, - [1802] = {.lex_state = 130, .external_lex_state = 19}, - [1803] = {.lex_state = 219, .external_lex_state = 16}, - [1804] = {.lex_state = 130, .external_lex_state = 19}, - [1805] = {.lex_state = 219, .external_lex_state = 16}, - [1806] = {.lex_state = 130, .external_lex_state = 19}, - [1807] = {.lex_state = 219, .external_lex_state = 16}, - [1808] = {.lex_state = 130, .external_lex_state = 19}, - [1809] = {.lex_state = 219, .external_lex_state = 16}, - [1810] = {.lex_state = 130, .external_lex_state = 19}, - [1811] = {.lex_state = 130, .external_lex_state = 19}, - [1812] = {.lex_state = 132, .external_lex_state = 4}, - [1813] = {.lex_state = 198, .external_lex_state = 20}, - [1814] = {.lex_state = 248}, - [1815] = {.lex_state = 248, .external_lex_state = 13}, - [1816] = {.lex_state = 248, .external_lex_state = 13}, - [1817] = {.lex_state = 248, .external_lex_state = 13}, - [1818] = {.lex_state = 151}, - [1819] = {.lex_state = 217, .external_lex_state = 16}, - [1820] = {.lex_state = 248, .external_lex_state = 13}, - [1821] = {.lex_state = 221}, - [1822] = {.lex_state = 219, .external_lex_state = 16}, - [1823] = {.lex_state = 62}, - [1824] = {.lex_state = 157, .external_lex_state = 16}, - [1825] = {.lex_state = 157, .external_lex_state = 16}, - [1826] = {.lex_state = 157, .external_lex_state = 16}, - [1827] = {.lex_state = 248, .external_lex_state = 13}, - [1828] = {.lex_state = 221}, - [1829] = {.lex_state = 219, .external_lex_state = 16}, - [1830] = {.lex_state = 248, .external_lex_state = 13}, - [1831] = {.lex_state = 221}, - [1832] = {.lex_state = 219, .external_lex_state = 16}, - [1833] = {.lex_state = 248, .external_lex_state = 13}, - [1834] = {.lex_state = 203, .external_lex_state = 2}, - [1835] = {.lex_state = 126, .external_lex_state = 4}, - [1836] = {.lex_state = 130, .external_lex_state = 8}, + [1792] = {.lex_state = 195, .external_lex_state = 13}, + [1793] = {.lex_state = 204, .external_lex_state = 2}, + [1794] = {.lex_state = 131, .external_lex_state = 19}, + [1795] = {.lex_state = 131, .external_lex_state = 19}, + [1796] = {.lex_state = 199, .external_lex_state = 22}, + [1797] = {.lex_state = 199, .external_lex_state = 22}, + [1798] = {.lex_state = 199, .external_lex_state = 16}, + [1799] = {.lex_state = 220, .external_lex_state = 16}, + [1800] = {.lex_state = 131, .external_lex_state = 19}, + [1801] = {.lex_state = 220, .external_lex_state = 16}, + [1802] = {.lex_state = 131, .external_lex_state = 19}, + [1803] = {.lex_state = 220, .external_lex_state = 16}, + [1804] = {.lex_state = 131, .external_lex_state = 19}, + [1805] = {.lex_state = 220, .external_lex_state = 16}, + [1806] = {.lex_state = 131, .external_lex_state = 19}, + [1807] = {.lex_state = 220, .external_lex_state = 16}, + [1808] = {.lex_state = 131, .external_lex_state = 19}, + [1809] = {.lex_state = 220, .external_lex_state = 16}, + [1810] = {.lex_state = 131, .external_lex_state = 19}, + [1811] = {.lex_state = 131, .external_lex_state = 19}, + [1812] = {.lex_state = 133, .external_lex_state = 4}, + [1813] = {.lex_state = 199, .external_lex_state = 20}, + [1814] = {.lex_state = 249}, + [1815] = {.lex_state = 249, .external_lex_state = 13}, + [1816] = {.lex_state = 249, .external_lex_state = 13}, + [1817] = {.lex_state = 249, .external_lex_state = 13}, + [1818] = {.lex_state = 152}, + [1819] = {.lex_state = 218, .external_lex_state = 16}, + [1820] = {.lex_state = 62}, + [1821] = {.lex_state = 160, .external_lex_state = 16}, + [1822] = {.lex_state = 160, .external_lex_state = 16}, + [1823] = {.lex_state = 160, .external_lex_state = 16}, + [1824] = {.lex_state = 249, .external_lex_state = 13}, + [1825] = {.lex_state = 222}, + [1826] = {.lex_state = 220, .external_lex_state = 16}, + [1827] = {.lex_state = 249, .external_lex_state = 13}, + [1828] = {.lex_state = 222}, + [1829] = {.lex_state = 220, .external_lex_state = 16}, + [1830] = {.lex_state = 249, .external_lex_state = 13}, + [1831] = {.lex_state = 222}, + [1832] = {.lex_state = 220, .external_lex_state = 16}, + [1833] = {.lex_state = 249, .external_lex_state = 13}, + [1834] = {.lex_state = 204, .external_lex_state = 2}, + [1835] = {.lex_state = 127, .external_lex_state = 4}, + [1836] = {.lex_state = 131, .external_lex_state = 8}, [1837] = {.lex_state = 56, .external_lex_state = 2}, [1838] = {.lex_state = 83, .external_lex_state = 4}, - [1839] = {.lex_state = 113, .external_lex_state = 8}, - [1840] = {.lex_state = 248, .external_lex_state = 13}, - [1841] = {.lex_state = 203, .external_lex_state = 2}, - [1842] = {.lex_state = 126, .external_lex_state = 4}, - [1843] = {.lex_state = 130, .external_lex_state = 8}, - [1844] = {.lex_state = 132, .external_lex_state = 4}, - [1845] = {.lex_state = 248}, - [1846] = {.lex_state = 248}, - [1847] = {.lex_state = 246}, - [1848] = {.lex_state = 234, .external_lex_state = 10}, - [1849] = {.lex_state = 234, .external_lex_state = 10}, - [1850] = {.lex_state = 234, .external_lex_state = 10}, - [1851] = {.lex_state = 219, .external_lex_state = 16}, - [1852] = {.lex_state = 198, .external_lex_state = 22}, - [1853] = {.lex_state = 198, .external_lex_state = 22}, - [1854] = {.lex_state = 198, .external_lex_state = 16}, - [1855] = {.lex_state = 219, .external_lex_state = 16}, - [1856] = {.lex_state = 234, .external_lex_state = 10}, - [1857] = {.lex_state = 219, .external_lex_state = 16}, - [1858] = {.lex_state = 234, .external_lex_state = 10}, - [1859] = {.lex_state = 219, .external_lex_state = 16}, - [1860] = {.lex_state = 234, .external_lex_state = 10}, - [1861] = {.lex_state = 219, .external_lex_state = 16}, - [1862] = {.lex_state = 234, .external_lex_state = 10}, - [1863] = {.lex_state = 219, .external_lex_state = 16}, - [1864] = {.lex_state = 234, .external_lex_state = 10}, - [1865] = {.lex_state = 234, .external_lex_state = 10}, - [1866] = {.lex_state = 248}, + [1839] = {.lex_state = 114, .external_lex_state = 8}, + [1840] = {.lex_state = 249, .external_lex_state = 13}, + [1841] = {.lex_state = 204, .external_lex_state = 2}, + [1842] = {.lex_state = 127, .external_lex_state = 4}, + [1843] = {.lex_state = 131, .external_lex_state = 8}, + [1844] = {.lex_state = 133, .external_lex_state = 4}, + [1845] = {.lex_state = 249}, + [1846] = {.lex_state = 249}, + [1847] = {.lex_state = 247}, + [1848] = {.lex_state = 235, .external_lex_state = 10}, + [1849] = {.lex_state = 235, .external_lex_state = 10}, + [1850] = {.lex_state = 199, .external_lex_state = 22}, + [1851] = {.lex_state = 199, .external_lex_state = 22}, + [1852] = {.lex_state = 199, .external_lex_state = 16}, + [1853] = {.lex_state = 220, .external_lex_state = 16}, + [1854] = {.lex_state = 235, .external_lex_state = 10}, + [1855] = {.lex_state = 220, .external_lex_state = 16}, + [1856] = {.lex_state = 235, .external_lex_state = 10}, + [1857] = {.lex_state = 220, .external_lex_state = 16}, + [1858] = {.lex_state = 235, .external_lex_state = 10}, + [1859] = {.lex_state = 220, .external_lex_state = 16}, + [1860] = {.lex_state = 235, .external_lex_state = 10}, + [1861] = {.lex_state = 220, .external_lex_state = 16}, + [1862] = {.lex_state = 235, .external_lex_state = 10}, + [1863] = {.lex_state = 220, .external_lex_state = 16}, + [1864] = {.lex_state = 235, .external_lex_state = 10}, + [1865] = {.lex_state = 235, .external_lex_state = 10}, + [1866] = {.lex_state = 249}, [1867] = {.lex_state = 56, .external_lex_state = 2}, - [1868] = {.lex_state = 132, .external_lex_state = 4}, - [1869] = {.lex_state = 250, .external_lex_state = 13}, - [1870] = {.lex_state = 250, .external_lex_state = 13}, - [1871] = {.lex_state = 250}, + [1868] = {.lex_state = 133, .external_lex_state = 4}, + [1869] = {.lex_state = 251, .external_lex_state = 13}, + [1870] = {.lex_state = 251, .external_lex_state = 13}, + [1871] = {.lex_state = 251}, [1872] = {.lex_state = 62}, [1873] = {.lex_state = 56, .external_lex_state = 2}, [1874] = {.lex_state = 73}, @@ -6951,282 +6956,282 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [1880] = {.lex_state = 83, .external_lex_state = 4}, [1881] = {.lex_state = 88, .external_lex_state = 5}, [1882] = {.lex_state = 88, .external_lex_state = 5}, - [1883] = {.lex_state = 109, .external_lex_state = 5}, - [1884] = {.lex_state = 132, .external_lex_state = 4}, + [1883] = {.lex_state = 110, .external_lex_state = 5}, + [1884] = {.lex_state = 133, .external_lex_state = 4}, [1885] = {.lex_state = 88, .external_lex_state = 7}, - [1886] = {.lex_state = 113, .external_lex_state = 8}, + [1886] = {.lex_state = 114, .external_lex_state = 8}, [1887] = {.lex_state = 62}, - [1888] = {.lex_state = 162, .external_lex_state = 2}, + [1888] = {.lex_state = 163, .external_lex_state = 2}, [1889] = {.lex_state = 73, .external_lex_state = 2}, - [1890] = {.lex_state = 162, .external_lex_state = 2}, - [1891] = {.lex_state = 250}, - [1892] = {.lex_state = 250, .external_lex_state = 13}, + [1890] = {.lex_state = 163, .external_lex_state = 2}, + [1891] = {.lex_state = 251}, + [1892] = {.lex_state = 251, .external_lex_state = 13}, [1893] = {.lex_state = 73}, - [1894] = {.lex_state = 132, .external_lex_state = 4}, - [1895] = {.lex_state = 113, .external_lex_state = 8}, - [1896] = {.lex_state = 162, .external_lex_state = 2}, - [1897] = {.lex_state = 162, .external_lex_state = 2}, - [1898] = {.lex_state = 132, .external_lex_state = 4}, - [1899] = {.lex_state = 250, .external_lex_state = 13}, - [1900] = {.lex_state = 250, .external_lex_state = 13}, - [1901] = {.lex_state = 250}, + [1894] = {.lex_state = 133, .external_lex_state = 4}, + [1895] = {.lex_state = 114, .external_lex_state = 8}, + [1896] = {.lex_state = 163, .external_lex_state = 2}, + [1897] = {.lex_state = 163, .external_lex_state = 2}, + [1898] = {.lex_state = 133, .external_lex_state = 4}, + [1899] = {.lex_state = 251, .external_lex_state = 13}, + [1900] = {.lex_state = 251, .external_lex_state = 13}, + [1901] = {.lex_state = 251}, [1902] = {.lex_state = 73}, - [1903] = {.lex_state = 132, .external_lex_state = 4}, + [1903] = {.lex_state = 133, .external_lex_state = 4}, [1904] = {.lex_state = 73}, - [1905] = {.lex_state = 122, .external_lex_state = 10}, - [1906] = {.lex_state = 122, .external_lex_state = 10}, - [1907] = {.lex_state = 122, .external_lex_state = 10}, - [1908] = {.lex_state = 122, .external_lex_state = 10}, - [1909] = {.lex_state = 219, .external_lex_state = 16}, - [1910] = {.lex_state = 122, .external_lex_state = 10}, - [1911] = {.lex_state = 219, .external_lex_state = 16}, - [1912] = {.lex_state = 122, .external_lex_state = 10}, - [1913] = {.lex_state = 219, .external_lex_state = 16}, - [1914] = {.lex_state = 122, .external_lex_state = 10}, - [1915] = {.lex_state = 122, .external_lex_state = 10}, - [1916] = {.lex_state = 132, .external_lex_state = 10}, - [1917] = {.lex_state = 132, .external_lex_state = 10}, - [1918] = {.lex_state = 132, .external_lex_state = 10}, - [1919] = {.lex_state = 132, .external_lex_state = 10}, - [1920] = {.lex_state = 205, .external_lex_state = 23}, - [1921] = {.lex_state = 205, .external_lex_state = 23}, - [1922] = {.lex_state = 205, .external_lex_state = 23}, - [1923] = {.lex_state = 134, .external_lex_state = 11}, - [1924] = {.lex_state = 134, .external_lex_state = 11}, - [1925] = {.lex_state = 134, .external_lex_state = 11}, - [1926] = {.lex_state = 134, .external_lex_state = 11}, - [1927] = {.lex_state = 219, .external_lex_state = 16}, - [1928] = {.lex_state = 134, .external_lex_state = 11}, - [1929] = {.lex_state = 219, .external_lex_state = 16}, - [1930] = {.lex_state = 134, .external_lex_state = 11}, - [1931] = {.lex_state = 219, .external_lex_state = 16}, - [1932] = {.lex_state = 134, .external_lex_state = 11}, - [1933] = {.lex_state = 134, .external_lex_state = 11}, - [1934] = {.lex_state = 228, .external_lex_state = 23}, - [1935] = {.lex_state = 188, .external_lex_state = 23}, - [1936] = {.lex_state = 228, .external_lex_state = 23}, - [1937] = {.lex_state = 151}, - [1938] = {.lex_state = 217, .external_lex_state = 16}, - [1939] = {.lex_state = 228, .external_lex_state = 23}, - [1940] = {.lex_state = 221}, - [1941] = {.lex_state = 219, .external_lex_state = 16}, - [1942] = {.lex_state = 62}, - [1943] = {.lex_state = 157, .external_lex_state = 16}, - [1944] = {.lex_state = 157, .external_lex_state = 16}, - [1945] = {.lex_state = 157, .external_lex_state = 16}, - [1946] = {.lex_state = 228, .external_lex_state = 23}, - [1947] = {.lex_state = 221}, - [1948] = {.lex_state = 219, .external_lex_state = 16}, - [1949] = {.lex_state = 228, .external_lex_state = 23}, - [1950] = {.lex_state = 221}, - [1951] = {.lex_state = 219, .external_lex_state = 16}, - [1952] = {.lex_state = 228, .external_lex_state = 23}, - [1953] = {.lex_state = 203, .external_lex_state = 2}, - [1954] = {.lex_state = 126, .external_lex_state = 4}, - [1955] = {.lex_state = 130, .external_lex_state = 8}, + [1905] = {.lex_state = 123, .external_lex_state = 10}, + [1906] = {.lex_state = 123, .external_lex_state = 10}, + [1907] = {.lex_state = 123, .external_lex_state = 10}, + [1908] = {.lex_state = 220, .external_lex_state = 16}, + [1909] = {.lex_state = 123, .external_lex_state = 10}, + [1910] = {.lex_state = 220, .external_lex_state = 16}, + [1911] = {.lex_state = 123, .external_lex_state = 10}, + [1912] = {.lex_state = 220, .external_lex_state = 16}, + [1913] = {.lex_state = 123, .external_lex_state = 10}, + [1914] = {.lex_state = 123, .external_lex_state = 10}, + [1915] = {.lex_state = 123, .external_lex_state = 10}, + [1916] = {.lex_state = 133, .external_lex_state = 10}, + [1917] = {.lex_state = 133, .external_lex_state = 10}, + [1918] = {.lex_state = 133, .external_lex_state = 10}, + [1919] = {.lex_state = 133, .external_lex_state = 10}, + [1920] = {.lex_state = 206, .external_lex_state = 23}, + [1921] = {.lex_state = 206, .external_lex_state = 23}, + [1922] = {.lex_state = 206, .external_lex_state = 23}, + [1923] = {.lex_state = 135, .external_lex_state = 11}, + [1924] = {.lex_state = 135, .external_lex_state = 11}, + [1925] = {.lex_state = 135, .external_lex_state = 11}, + [1926] = {.lex_state = 220, .external_lex_state = 16}, + [1927] = {.lex_state = 135, .external_lex_state = 11}, + [1928] = {.lex_state = 220, .external_lex_state = 16}, + [1929] = {.lex_state = 135, .external_lex_state = 11}, + [1930] = {.lex_state = 220, .external_lex_state = 16}, + [1931] = {.lex_state = 135, .external_lex_state = 11}, + [1932] = {.lex_state = 135, .external_lex_state = 11}, + [1933] = {.lex_state = 135, .external_lex_state = 11}, + [1934] = {.lex_state = 229, .external_lex_state = 23}, + [1935] = {.lex_state = 189, .external_lex_state = 23}, + [1936] = {.lex_state = 229, .external_lex_state = 23}, + [1937] = {.lex_state = 152}, + [1938] = {.lex_state = 218, .external_lex_state = 16}, + [1939] = {.lex_state = 62}, + [1940] = {.lex_state = 160, .external_lex_state = 16}, + [1941] = {.lex_state = 160, .external_lex_state = 16}, + [1942] = {.lex_state = 160, .external_lex_state = 16}, + [1943] = {.lex_state = 229, .external_lex_state = 23}, + [1944] = {.lex_state = 222}, + [1945] = {.lex_state = 220, .external_lex_state = 16}, + [1946] = {.lex_state = 229, .external_lex_state = 23}, + [1947] = {.lex_state = 222}, + [1948] = {.lex_state = 220, .external_lex_state = 16}, + [1949] = {.lex_state = 229, .external_lex_state = 23}, + [1950] = {.lex_state = 222}, + [1951] = {.lex_state = 220, .external_lex_state = 16}, + [1952] = {.lex_state = 229, .external_lex_state = 23}, + [1953] = {.lex_state = 204, .external_lex_state = 2}, + [1954] = {.lex_state = 127, .external_lex_state = 4}, + [1955] = {.lex_state = 131, .external_lex_state = 8}, [1956] = {.lex_state = 56, .external_lex_state = 2}, [1957] = {.lex_state = 83, .external_lex_state = 4}, - [1958] = {.lex_state = 113, .external_lex_state = 8}, - [1959] = {.lex_state = 228, .external_lex_state = 23}, - [1960] = {.lex_state = 203, .external_lex_state = 2}, - [1961] = {.lex_state = 126, .external_lex_state = 4}, - [1962] = {.lex_state = 130, .external_lex_state = 8}, - [1963] = {.lex_state = 214, .external_lex_state = 13}, - [1964] = {.lex_state = 214, .external_lex_state = 13}, - [1965] = {.lex_state = 214, .external_lex_state = 13}, - [1966] = {.lex_state = 214, .external_lex_state = 13}, - [1967] = {.lex_state = 219, .external_lex_state = 16}, - [1968] = {.lex_state = 214, .external_lex_state = 13}, - [1969] = {.lex_state = 219, .external_lex_state = 16}, - [1970] = {.lex_state = 214, .external_lex_state = 13}, - [1971] = {.lex_state = 219, .external_lex_state = 16}, - [1972] = {.lex_state = 214, .external_lex_state = 13}, - [1973] = {.lex_state = 214, .external_lex_state = 13}, - [1974] = {.lex_state = 126, .external_lex_state = 14}, - [1975] = {.lex_state = 126, .external_lex_state = 14}, - [1976] = {.lex_state = 126, .external_lex_state = 14}, - [1977] = {.lex_state = 126, .external_lex_state = 14}, - [1978] = {.lex_state = 219, .external_lex_state = 16}, - [1979] = {.lex_state = 126, .external_lex_state = 14}, - [1980] = {.lex_state = 219, .external_lex_state = 16}, - [1981] = {.lex_state = 126, .external_lex_state = 14}, - [1982] = {.lex_state = 219, .external_lex_state = 16}, - [1983] = {.lex_state = 126, .external_lex_state = 14}, - [1984] = {.lex_state = 126, .external_lex_state = 14}, - [1985] = {.lex_state = 126, .external_lex_state = 10}, - [1986] = {.lex_state = 126, .external_lex_state = 10}, - [1987] = {.lex_state = 126, .external_lex_state = 10}, - [1988] = {.lex_state = 126, .external_lex_state = 10}, - [1989] = {.lex_state = 219, .external_lex_state = 16}, - [1990] = {.lex_state = 126, .external_lex_state = 10}, - [1991] = {.lex_state = 219, .external_lex_state = 16}, - [1992] = {.lex_state = 126, .external_lex_state = 10}, - [1993] = {.lex_state = 219, .external_lex_state = 16}, - [1994] = {.lex_state = 126, .external_lex_state = 10}, - [1995] = {.lex_state = 126, .external_lex_state = 10}, + [1958] = {.lex_state = 114, .external_lex_state = 8}, + [1959] = {.lex_state = 229, .external_lex_state = 23}, + [1960] = {.lex_state = 204, .external_lex_state = 2}, + [1961] = {.lex_state = 127, .external_lex_state = 4}, + [1962] = {.lex_state = 131, .external_lex_state = 8}, + [1963] = {.lex_state = 215, .external_lex_state = 13}, + [1964] = {.lex_state = 215, .external_lex_state = 13}, + [1965] = {.lex_state = 215, .external_lex_state = 13}, + [1966] = {.lex_state = 220, .external_lex_state = 16}, + [1967] = {.lex_state = 215, .external_lex_state = 13}, + [1968] = {.lex_state = 220, .external_lex_state = 16}, + [1969] = {.lex_state = 215, .external_lex_state = 13}, + [1970] = {.lex_state = 220, .external_lex_state = 16}, + [1971] = {.lex_state = 215, .external_lex_state = 13}, + [1972] = {.lex_state = 215, .external_lex_state = 13}, + [1973] = {.lex_state = 215, .external_lex_state = 13}, + [1974] = {.lex_state = 127, .external_lex_state = 14}, + [1975] = {.lex_state = 127, .external_lex_state = 14}, + [1976] = {.lex_state = 127, .external_lex_state = 14}, + [1977] = {.lex_state = 220, .external_lex_state = 16}, + [1978] = {.lex_state = 127, .external_lex_state = 14}, + [1979] = {.lex_state = 220, .external_lex_state = 16}, + [1980] = {.lex_state = 127, .external_lex_state = 14}, + [1981] = {.lex_state = 220, .external_lex_state = 16}, + [1982] = {.lex_state = 127, .external_lex_state = 14}, + [1983] = {.lex_state = 127, .external_lex_state = 14}, + [1984] = {.lex_state = 127, .external_lex_state = 14}, + [1985] = {.lex_state = 127, .external_lex_state = 10}, + [1986] = {.lex_state = 127, .external_lex_state = 10}, + [1987] = {.lex_state = 127, .external_lex_state = 10}, + [1988] = {.lex_state = 220, .external_lex_state = 16}, + [1989] = {.lex_state = 127, .external_lex_state = 10}, + [1990] = {.lex_state = 220, .external_lex_state = 16}, + [1991] = {.lex_state = 127, .external_lex_state = 10}, + [1992] = {.lex_state = 220, .external_lex_state = 16}, + [1993] = {.lex_state = 127, .external_lex_state = 10}, + [1994] = {.lex_state = 127, .external_lex_state = 10}, + [1995] = {.lex_state = 127, .external_lex_state = 10}, [1996] = {.lex_state = 73, .external_lex_state = 15}, [1997] = {.lex_state = 73, .external_lex_state = 15}, [1998] = {.lex_state = 73, .external_lex_state = 15}, - [1999] = {.lex_state = 73, .external_lex_state = 15}, - [2000] = {.lex_state = 219, .external_lex_state = 16}, - [2001] = {.lex_state = 73, .external_lex_state = 15}, - [2002] = {.lex_state = 219, .external_lex_state = 16}, - [2003] = {.lex_state = 73, .external_lex_state = 15}, - [2004] = {.lex_state = 219, .external_lex_state = 16}, + [1999] = {.lex_state = 220, .external_lex_state = 16}, + [2000] = {.lex_state = 73, .external_lex_state = 15}, + [2001] = {.lex_state = 220, .external_lex_state = 16}, + [2002] = {.lex_state = 73, .external_lex_state = 15}, + [2003] = {.lex_state = 220, .external_lex_state = 16}, + [2004] = {.lex_state = 73, .external_lex_state = 15}, [2005] = {.lex_state = 73, .external_lex_state = 15}, [2006] = {.lex_state = 73, .external_lex_state = 15}, [2007] = {.lex_state = 91, .external_lex_state = 13}, [2008] = {.lex_state = 91, .external_lex_state = 13}, [2009] = {.lex_state = 91, .external_lex_state = 13}, - [2010] = {.lex_state = 91, .external_lex_state = 13}, - [2011] = {.lex_state = 219, .external_lex_state = 16}, - [2012] = {.lex_state = 91, .external_lex_state = 13}, - [2013] = {.lex_state = 219, .external_lex_state = 16}, - [2014] = {.lex_state = 91, .external_lex_state = 13}, - [2015] = {.lex_state = 219, .external_lex_state = 16}, + [2010] = {.lex_state = 220, .external_lex_state = 16}, + [2011] = {.lex_state = 91, .external_lex_state = 13}, + [2012] = {.lex_state = 220, .external_lex_state = 16}, + [2013] = {.lex_state = 91, .external_lex_state = 13}, + [2014] = {.lex_state = 220, .external_lex_state = 16}, + [2015] = {.lex_state = 91, .external_lex_state = 13}, [2016] = {.lex_state = 91, .external_lex_state = 13}, [2017] = {.lex_state = 91, .external_lex_state = 13}, - [2018] = {.lex_state = 157, .external_lex_state = 16}, - [2019] = {.lex_state = 157, .external_lex_state = 16}, - [2020] = {.lex_state = 198, .external_lex_state = 22}, - [2021] = {.lex_state = 198, .external_lex_state = 22}, - [2022] = {.lex_state = 198, .external_lex_state = 22}, - [2023] = {.lex_state = 198, .external_lex_state = 22}, - [2024] = {.lex_state = 198, .external_lex_state = 16}, - [2025] = {.lex_state = 219, .external_lex_state = 16}, - [2026] = {.lex_state = 198, .external_lex_state = 22}, - [2027] = {.lex_state = 217, .external_lex_state = 16}, - [2028] = {.lex_state = 198, .external_lex_state = 22}, - [2029] = {.lex_state = 221}, - [2030] = {.lex_state = 219, .external_lex_state = 16}, - [2031] = {.lex_state = 198, .external_lex_state = 22}, - [2032] = {.lex_state = 221}, - [2033] = {.lex_state = 219, .external_lex_state = 16}, - [2034] = {.lex_state = 221}, - [2035] = {.lex_state = 219, .external_lex_state = 16}, - [2036] = {.lex_state = 219, .external_lex_state = 16}, - [2037] = {.lex_state = 198, .external_lex_state = 22}, - [2038] = {.lex_state = 219, .external_lex_state = 16}, - [2039] = {.lex_state = 198, .external_lex_state = 22}, - [2040] = {.lex_state = 203, .external_lex_state = 2}, + [2018] = {.lex_state = 160, .external_lex_state = 16}, + [2019] = {.lex_state = 160, .external_lex_state = 16}, + [2020] = {.lex_state = 199, .external_lex_state = 22}, + [2021] = {.lex_state = 199, .external_lex_state = 22}, + [2022] = {.lex_state = 199, .external_lex_state = 22}, + [2023] = {.lex_state = 199, .external_lex_state = 22}, + [2024] = {.lex_state = 199, .external_lex_state = 16}, + [2025] = {.lex_state = 218, .external_lex_state = 16}, + [2026] = {.lex_state = 199, .external_lex_state = 22}, + [2027] = {.lex_state = 222}, + [2028] = {.lex_state = 220, .external_lex_state = 16}, + [2029] = {.lex_state = 199, .external_lex_state = 22}, + [2030] = {.lex_state = 222}, + [2031] = {.lex_state = 220, .external_lex_state = 16}, + [2032] = {.lex_state = 222}, + [2033] = {.lex_state = 220, .external_lex_state = 16}, + [2034] = {.lex_state = 220, .external_lex_state = 16}, + [2035] = {.lex_state = 199, .external_lex_state = 22}, + [2036] = {.lex_state = 220, .external_lex_state = 16}, + [2037] = {.lex_state = 199, .external_lex_state = 22}, + [2038] = {.lex_state = 220, .external_lex_state = 16}, + [2039] = {.lex_state = 199, .external_lex_state = 22}, + [2040] = {.lex_state = 204, .external_lex_state = 2}, [2041] = {.lex_state = 56, .external_lex_state = 2}, - [2042] = {.lex_state = 198, .external_lex_state = 22}, - [2043] = {.lex_state = 203, .external_lex_state = 2}, - [2044] = {.lex_state = 219, .external_lex_state = 22}, - [2045] = {.lex_state = 219, .external_lex_state = 22}, - [2046] = {.lex_state = 219, .external_lex_state = 22}, - [2047] = {.lex_state = 219, .external_lex_state = 16}, - [2048] = {.lex_state = 198, .external_lex_state = 22}, - [2049] = {.lex_state = 198, .external_lex_state = 22}, - [2050] = {.lex_state = 198, .external_lex_state = 16}, - [2051] = {.lex_state = 219, .external_lex_state = 16}, - [2052] = {.lex_state = 219, .external_lex_state = 22}, - [2053] = {.lex_state = 219, .external_lex_state = 16}, - [2054] = {.lex_state = 219, .external_lex_state = 22}, - [2055] = {.lex_state = 219, .external_lex_state = 16}, - [2056] = {.lex_state = 219, .external_lex_state = 22}, - [2057] = {.lex_state = 219, .external_lex_state = 16}, - [2058] = {.lex_state = 219, .external_lex_state = 22}, - [2059] = {.lex_state = 219, .external_lex_state = 16}, - [2060] = {.lex_state = 219, .external_lex_state = 22}, - [2061] = {.lex_state = 219, .external_lex_state = 22}, - [2062] = {.lex_state = 115, .external_lex_state = 5}, - [2063] = {.lex_state = 115, .external_lex_state = 5}, - [2064] = {.lex_state = 115, .external_lex_state = 5}, - [2065] = {.lex_state = 132, .external_lex_state = 10}, - [2066] = {.lex_state = 132, .external_lex_state = 10}, - [2067] = {.lex_state = 132, .external_lex_state = 10}, - [2068] = {.lex_state = 226, .external_lex_state = 23}, - [2069] = {.lex_state = 226, .external_lex_state = 23}, - [2070] = {.lex_state = 226, .external_lex_state = 23}, - [2071] = {.lex_state = 165, .external_lex_state = 17}, - [2072] = {.lex_state = 165, .external_lex_state = 17}, - [2073] = {.lex_state = 165, .external_lex_state = 17}, - [2074] = {.lex_state = 219, .external_lex_state = 16}, - [2075] = {.lex_state = 198, .external_lex_state = 22}, - [2076] = {.lex_state = 198, .external_lex_state = 22}, - [2077] = {.lex_state = 198, .external_lex_state = 16}, - [2078] = {.lex_state = 219, .external_lex_state = 16}, - [2079] = {.lex_state = 165, .external_lex_state = 17}, - [2080] = {.lex_state = 219, .external_lex_state = 16}, - [2081] = {.lex_state = 165, .external_lex_state = 17}, - [2082] = {.lex_state = 219, .external_lex_state = 16}, - [2083] = {.lex_state = 165, .external_lex_state = 17}, - [2084] = {.lex_state = 219, .external_lex_state = 16}, - [2085] = {.lex_state = 165, .external_lex_state = 17}, - [2086] = {.lex_state = 219, .external_lex_state = 16}, - [2087] = {.lex_state = 194, .external_lex_state = 13}, - [2088] = {.lex_state = 194, .external_lex_state = 13}, - [2089] = {.lex_state = 194, .external_lex_state = 13}, - [2090] = {.lex_state = 219, .external_lex_state = 16}, - [2091] = {.lex_state = 198, .external_lex_state = 22}, - [2092] = {.lex_state = 198, .external_lex_state = 22}, - [2093] = {.lex_state = 198, .external_lex_state = 16}, - [2094] = {.lex_state = 219, .external_lex_state = 16}, - [2095] = {.lex_state = 194, .external_lex_state = 13}, - [2096] = {.lex_state = 219, .external_lex_state = 16}, - [2097] = {.lex_state = 194, .external_lex_state = 13}, - [2098] = {.lex_state = 219, .external_lex_state = 16}, - [2099] = {.lex_state = 194, .external_lex_state = 13}, - [2100] = {.lex_state = 219, .external_lex_state = 16}, - [2101] = {.lex_state = 194, .external_lex_state = 13}, - [2102] = {.lex_state = 219, .external_lex_state = 16}, - [2103] = {.lex_state = 194, .external_lex_state = 13}, - [2104] = {.lex_state = 194, .external_lex_state = 13}, - [2105] = {.lex_state = 130, .external_lex_state = 19}, - [2106] = {.lex_state = 130, .external_lex_state = 19}, - [2107] = {.lex_state = 130, .external_lex_state = 19}, - [2108] = {.lex_state = 130, .external_lex_state = 19}, - [2109] = {.lex_state = 219, .external_lex_state = 16}, - [2110] = {.lex_state = 130, .external_lex_state = 19}, - [2111] = {.lex_state = 219, .external_lex_state = 16}, - [2112] = {.lex_state = 130, .external_lex_state = 19}, - [2113] = {.lex_state = 219, .external_lex_state = 16}, - [2114] = {.lex_state = 130, .external_lex_state = 19}, - [2115] = {.lex_state = 130, .external_lex_state = 19}, - [2116] = {.lex_state = 132, .external_lex_state = 4}, - [2117] = {.lex_state = 248, .external_lex_state = 13}, - [2118] = {.lex_state = 248, .external_lex_state = 13}, - [2119] = {.lex_state = 198, .external_lex_state = 22}, - [2120] = {.lex_state = 198, .external_lex_state = 22}, - [2121] = {.lex_state = 198, .external_lex_state = 16}, - [2122] = {.lex_state = 219, .external_lex_state = 16}, - [2123] = {.lex_state = 248, .external_lex_state = 13}, - [2124] = {.lex_state = 217, .external_lex_state = 16}, - [2125] = {.lex_state = 248, .external_lex_state = 13}, - [2126] = {.lex_state = 221}, - [2127] = {.lex_state = 219, .external_lex_state = 16}, - [2128] = {.lex_state = 248, .external_lex_state = 13}, - [2129] = {.lex_state = 221}, - [2130] = {.lex_state = 219, .external_lex_state = 16}, - [2131] = {.lex_state = 221}, - [2132] = {.lex_state = 219, .external_lex_state = 16}, - [2133] = {.lex_state = 219, .external_lex_state = 16}, - [2134] = {.lex_state = 248, .external_lex_state = 13}, - [2135] = {.lex_state = 219, .external_lex_state = 16}, - [2136] = {.lex_state = 248, .external_lex_state = 13}, - [2137] = {.lex_state = 203, .external_lex_state = 2}, + [2042] = {.lex_state = 199, .external_lex_state = 22}, + [2043] = {.lex_state = 204, .external_lex_state = 2}, + [2044] = {.lex_state = 116, .external_lex_state = 5}, + [2045] = {.lex_state = 116, .external_lex_state = 5}, + [2046] = {.lex_state = 116, .external_lex_state = 5}, + [2047] = {.lex_state = 220, .external_lex_state = 22}, + [2048] = {.lex_state = 220, .external_lex_state = 22}, + [2049] = {.lex_state = 199, .external_lex_state = 22}, + [2050] = {.lex_state = 199, .external_lex_state = 22}, + [2051] = {.lex_state = 199, .external_lex_state = 16}, + [2052] = {.lex_state = 220, .external_lex_state = 16}, + [2053] = {.lex_state = 220, .external_lex_state = 22}, + [2054] = {.lex_state = 220, .external_lex_state = 16}, + [2055] = {.lex_state = 220, .external_lex_state = 22}, + [2056] = {.lex_state = 220, .external_lex_state = 16}, + [2057] = {.lex_state = 220, .external_lex_state = 22}, + [2058] = {.lex_state = 220, .external_lex_state = 16}, + [2059] = {.lex_state = 220, .external_lex_state = 22}, + [2060] = {.lex_state = 220, .external_lex_state = 16}, + [2061] = {.lex_state = 220, .external_lex_state = 22}, + [2062] = {.lex_state = 220, .external_lex_state = 16}, + [2063] = {.lex_state = 220, .external_lex_state = 22}, + [2064] = {.lex_state = 220, .external_lex_state = 22}, + [2065] = {.lex_state = 133, .external_lex_state = 10}, + [2066] = {.lex_state = 133, .external_lex_state = 10}, + [2067] = {.lex_state = 133, .external_lex_state = 10}, + [2068] = {.lex_state = 227, .external_lex_state = 23}, + [2069] = {.lex_state = 227, .external_lex_state = 23}, + [2070] = {.lex_state = 227, .external_lex_state = 23}, + [2071] = {.lex_state = 166, .external_lex_state = 17}, + [2072] = {.lex_state = 166, .external_lex_state = 17}, + [2073] = {.lex_state = 199, .external_lex_state = 22}, + [2074] = {.lex_state = 199, .external_lex_state = 22}, + [2075] = {.lex_state = 199, .external_lex_state = 16}, + [2076] = {.lex_state = 220, .external_lex_state = 16}, + [2077] = {.lex_state = 166, .external_lex_state = 17}, + [2078] = {.lex_state = 220, .external_lex_state = 16}, + [2079] = {.lex_state = 166, .external_lex_state = 17}, + [2080] = {.lex_state = 220, .external_lex_state = 16}, + [2081] = {.lex_state = 166, .external_lex_state = 17}, + [2082] = {.lex_state = 220, .external_lex_state = 16}, + [2083] = {.lex_state = 166, .external_lex_state = 17}, + [2084] = {.lex_state = 220, .external_lex_state = 16}, + [2085] = {.lex_state = 166, .external_lex_state = 17}, + [2086] = {.lex_state = 220, .external_lex_state = 16}, + [2087] = {.lex_state = 195, .external_lex_state = 13}, + [2088] = {.lex_state = 195, .external_lex_state = 13}, + [2089] = {.lex_state = 199, .external_lex_state = 22}, + [2090] = {.lex_state = 199, .external_lex_state = 22}, + [2091] = {.lex_state = 199, .external_lex_state = 16}, + [2092] = {.lex_state = 220, .external_lex_state = 16}, + [2093] = {.lex_state = 195, .external_lex_state = 13}, + [2094] = {.lex_state = 220, .external_lex_state = 16}, + [2095] = {.lex_state = 195, .external_lex_state = 13}, + [2096] = {.lex_state = 220, .external_lex_state = 16}, + [2097] = {.lex_state = 195, .external_lex_state = 13}, + [2098] = {.lex_state = 220, .external_lex_state = 16}, + [2099] = {.lex_state = 195, .external_lex_state = 13}, + [2100] = {.lex_state = 220, .external_lex_state = 16}, + [2101] = {.lex_state = 195, .external_lex_state = 13}, + [2102] = {.lex_state = 220, .external_lex_state = 16}, + [2103] = {.lex_state = 195, .external_lex_state = 13}, + [2104] = {.lex_state = 195, .external_lex_state = 13}, + [2105] = {.lex_state = 131, .external_lex_state = 19}, + [2106] = {.lex_state = 131, .external_lex_state = 19}, + [2107] = {.lex_state = 131, .external_lex_state = 19}, + [2108] = {.lex_state = 220, .external_lex_state = 16}, + [2109] = {.lex_state = 131, .external_lex_state = 19}, + [2110] = {.lex_state = 220, .external_lex_state = 16}, + [2111] = {.lex_state = 131, .external_lex_state = 19}, + [2112] = {.lex_state = 220, .external_lex_state = 16}, + [2113] = {.lex_state = 131, .external_lex_state = 19}, + [2114] = {.lex_state = 131, .external_lex_state = 19}, + [2115] = {.lex_state = 131, .external_lex_state = 19}, + [2116] = {.lex_state = 133, .external_lex_state = 4}, + [2117] = {.lex_state = 249, .external_lex_state = 13}, + [2118] = {.lex_state = 249, .external_lex_state = 13}, + [2119] = {.lex_state = 199, .external_lex_state = 22}, + [2120] = {.lex_state = 199, .external_lex_state = 22}, + [2121] = {.lex_state = 199, .external_lex_state = 16}, + [2122] = {.lex_state = 218, .external_lex_state = 16}, + [2123] = {.lex_state = 249, .external_lex_state = 13}, + [2124] = {.lex_state = 222}, + [2125] = {.lex_state = 220, .external_lex_state = 16}, + [2126] = {.lex_state = 249, .external_lex_state = 13}, + [2127] = {.lex_state = 222}, + [2128] = {.lex_state = 220, .external_lex_state = 16}, + [2129] = {.lex_state = 222}, + [2130] = {.lex_state = 220, .external_lex_state = 16}, + [2131] = {.lex_state = 220, .external_lex_state = 16}, + [2132] = {.lex_state = 249, .external_lex_state = 13}, + [2133] = {.lex_state = 220, .external_lex_state = 16}, + [2134] = {.lex_state = 249, .external_lex_state = 13}, + [2135] = {.lex_state = 220, .external_lex_state = 16}, + [2136] = {.lex_state = 249, .external_lex_state = 13}, + [2137] = {.lex_state = 204, .external_lex_state = 2}, [2138] = {.lex_state = 56, .external_lex_state = 2}, - [2139] = {.lex_state = 248, .external_lex_state = 13}, - [2140] = {.lex_state = 203, .external_lex_state = 2}, - [2141] = {.lex_state = 132, .external_lex_state = 4}, - [2142] = {.lex_state = 234, .external_lex_state = 10}, - [2143] = {.lex_state = 234, .external_lex_state = 10}, - [2144] = {.lex_state = 234, .external_lex_state = 10}, - [2145] = {.lex_state = 234, .external_lex_state = 10}, - [2146] = {.lex_state = 219, .external_lex_state = 16}, - [2147] = {.lex_state = 234, .external_lex_state = 10}, - [2148] = {.lex_state = 219, .external_lex_state = 16}, - [2149] = {.lex_state = 234, .external_lex_state = 10}, - [2150] = {.lex_state = 219, .external_lex_state = 16}, - [2151] = {.lex_state = 234, .external_lex_state = 10}, - [2152] = {.lex_state = 234, .external_lex_state = 10}, - [2153] = {.lex_state = 246}, - [2154] = {.lex_state = 117, .external_lex_state = 9}, + [2139] = {.lex_state = 249, .external_lex_state = 13}, + [2140] = {.lex_state = 204, .external_lex_state = 2}, + [2141] = {.lex_state = 133, .external_lex_state = 4}, + [2142] = {.lex_state = 235, .external_lex_state = 10}, + [2143] = {.lex_state = 235, .external_lex_state = 10}, + [2144] = {.lex_state = 235, .external_lex_state = 10}, + [2145] = {.lex_state = 220, .external_lex_state = 16}, + [2146] = {.lex_state = 235, .external_lex_state = 10}, + [2147] = {.lex_state = 220, .external_lex_state = 16}, + [2148] = {.lex_state = 235, .external_lex_state = 10}, + [2149] = {.lex_state = 220, .external_lex_state = 16}, + [2150] = {.lex_state = 235, .external_lex_state = 10}, + [2151] = {.lex_state = 235, .external_lex_state = 10}, + [2152] = {.lex_state = 235, .external_lex_state = 10}, + [2153] = {.lex_state = 247}, + [2154] = {.lex_state = 118, .external_lex_state = 9}, [2155] = {.lex_state = 73}, - [2156] = {.lex_state = 124}, - [2157] = {.lex_state = 134, .external_lex_state = 12}, - [2158] = {.lex_state = 147}, + [2156] = {.lex_state = 125}, + [2157] = {.lex_state = 135, .external_lex_state = 12}, + [2158] = {.lex_state = 148}, [2159] = {.lex_state = 62}, [2160] = {.lex_state = 83, .external_lex_state = 14}, [2161] = {.lex_state = 91}, @@ -7252,539 +7257,539 @@ static TSLexMode ts_lex_modes[STATE_COUNT] = { [2181] = {.lex_state = 88, .external_lex_state = 5}, [2182] = {.lex_state = 77}, [2183] = {.lex_state = 56, .external_lex_state = 2}, - [2184] = {.lex_state = 162, .external_lex_state = 2}, + [2184] = {.lex_state = 163, .external_lex_state = 2}, [2185] = {.lex_state = 56, .external_lex_state = 2}, [2186] = {.lex_state = 56}, - [2187] = {.lex_state = 168}, + [2187] = {.lex_state = 169}, [2188] = {.lex_state = 73}, [2189] = {.lex_state = 73}, [2190] = {.lex_state = 88, .external_lex_state = 5}, [2191] = {.lex_state = 88, .external_lex_state = 5}, - [2192] = {.lex_state = 253, .external_lex_state = 7}, + [2192] = {.lex_state = 254, .external_lex_state = 7}, [2193] = {.lex_state = 88, .external_lex_state = 7}, [2194] = {.lex_state = 73}, - [2195] = {.lex_state = 132, .external_lex_state = 4}, - [2196] = {.lex_state = 113, .external_lex_state = 8}, - [2197] = {.lex_state = 162, .external_lex_state = 2}, + [2195] = {.lex_state = 133, .external_lex_state = 4}, + [2196] = {.lex_state = 114, .external_lex_state = 8}, + [2197] = {.lex_state = 163, .external_lex_state = 2}, [2198] = {.lex_state = 88, .external_lex_state = 7}, - [2199] = {.lex_state = 162, .external_lex_state = 2}, - [2200] = {.lex_state = 162, .external_lex_state = 2}, + [2199] = {.lex_state = 163, .external_lex_state = 2}, + [2200] = {.lex_state = 163, .external_lex_state = 2}, [2201] = {.lex_state = 73}, - [2202] = {.lex_state = 132, .external_lex_state = 4}, - [2203] = {.lex_state = 113, .external_lex_state = 8}, - [2204] = {.lex_state = 162, .external_lex_state = 2}, - [2205] = {.lex_state = 162, .external_lex_state = 2}, - [2206] = {.lex_state = 250}, - [2207] = {.lex_state = 162, .external_lex_state = 2}, - [2208] = {.lex_state = 250}, - [2209] = {.lex_state = 132, .external_lex_state = 4}, - [2210] = {.lex_state = 132, .external_lex_state = 4}, - [2211] = {.lex_state = 122, .external_lex_state = 10}, - [2212] = {.lex_state = 122, .external_lex_state = 10}, - [2213] = {.lex_state = 122, .external_lex_state = 10}, - [2214] = {.lex_state = 132, .external_lex_state = 10}, - [2215] = {.lex_state = 205, .external_lex_state = 23}, - [2216] = {.lex_state = 134, .external_lex_state = 11}, - [2217] = {.lex_state = 134, .external_lex_state = 11}, - [2218] = {.lex_state = 134, .external_lex_state = 11}, - [2219] = {.lex_state = 228, .external_lex_state = 23}, - [2220] = {.lex_state = 228, .external_lex_state = 23}, - [2221] = {.lex_state = 198, .external_lex_state = 22}, - [2222] = {.lex_state = 198, .external_lex_state = 22}, - [2223] = {.lex_state = 198, .external_lex_state = 16}, - [2224] = {.lex_state = 219, .external_lex_state = 16}, - [2225] = {.lex_state = 228, .external_lex_state = 23}, - [2226] = {.lex_state = 217, .external_lex_state = 16}, - [2227] = {.lex_state = 228, .external_lex_state = 23}, - [2228] = {.lex_state = 221}, - [2229] = {.lex_state = 219, .external_lex_state = 16}, - [2230] = {.lex_state = 228, .external_lex_state = 23}, - [2231] = {.lex_state = 221}, - [2232] = {.lex_state = 219, .external_lex_state = 16}, - [2233] = {.lex_state = 221}, - [2234] = {.lex_state = 219, .external_lex_state = 16}, - [2235] = {.lex_state = 219, .external_lex_state = 16}, - [2236] = {.lex_state = 228, .external_lex_state = 23}, - [2237] = {.lex_state = 219, .external_lex_state = 16}, - [2238] = {.lex_state = 228, .external_lex_state = 23}, - [2239] = {.lex_state = 203, .external_lex_state = 2}, + [2202] = {.lex_state = 133, .external_lex_state = 4}, + [2203] = {.lex_state = 114, .external_lex_state = 8}, + [2204] = {.lex_state = 163, .external_lex_state = 2}, + [2205] = {.lex_state = 163, .external_lex_state = 2}, + [2206] = {.lex_state = 251}, + [2207] = {.lex_state = 163, .external_lex_state = 2}, + [2208] = {.lex_state = 251}, + [2209] = {.lex_state = 133, .external_lex_state = 4}, + [2210] = {.lex_state = 133, .external_lex_state = 4}, + [2211] = {.lex_state = 123, .external_lex_state = 10}, + [2212] = {.lex_state = 123, .external_lex_state = 10}, + [2213] = {.lex_state = 123, .external_lex_state = 10}, + [2214] = {.lex_state = 133, .external_lex_state = 10}, + [2215] = {.lex_state = 206, .external_lex_state = 23}, + [2216] = {.lex_state = 135, .external_lex_state = 11}, + [2217] = {.lex_state = 135, .external_lex_state = 11}, + [2218] = {.lex_state = 135, .external_lex_state = 11}, + [2219] = {.lex_state = 229, .external_lex_state = 23}, + [2220] = {.lex_state = 229, .external_lex_state = 23}, + [2221] = {.lex_state = 199, .external_lex_state = 22}, + [2222] = {.lex_state = 199, .external_lex_state = 22}, + [2223] = {.lex_state = 199, .external_lex_state = 16}, + [2224] = {.lex_state = 218, .external_lex_state = 16}, + [2225] = {.lex_state = 229, .external_lex_state = 23}, + [2226] = {.lex_state = 222}, + [2227] = {.lex_state = 220, .external_lex_state = 16}, + [2228] = {.lex_state = 229, .external_lex_state = 23}, + [2229] = {.lex_state = 222}, + [2230] = {.lex_state = 220, .external_lex_state = 16}, + [2231] = {.lex_state = 222}, + [2232] = {.lex_state = 220, .external_lex_state = 16}, + [2233] = {.lex_state = 220, .external_lex_state = 16}, + [2234] = {.lex_state = 229, .external_lex_state = 23}, + [2235] = {.lex_state = 220, .external_lex_state = 16}, + [2236] = {.lex_state = 229, .external_lex_state = 23}, + [2237] = {.lex_state = 220, .external_lex_state = 16}, + [2238] = {.lex_state = 229, .external_lex_state = 23}, + [2239] = {.lex_state = 204, .external_lex_state = 2}, [2240] = {.lex_state = 56, .external_lex_state = 2}, - [2241] = {.lex_state = 228, .external_lex_state = 23}, - [2242] = {.lex_state = 203, .external_lex_state = 2}, - [2243] = {.lex_state = 214, .external_lex_state = 13}, - [2244] = {.lex_state = 214, .external_lex_state = 13}, - [2245] = {.lex_state = 214, .external_lex_state = 13}, - [2246] = {.lex_state = 126, .external_lex_state = 14}, - [2247] = {.lex_state = 126, .external_lex_state = 14}, - [2248] = {.lex_state = 126, .external_lex_state = 14}, - [2249] = {.lex_state = 126, .external_lex_state = 10}, - [2250] = {.lex_state = 126, .external_lex_state = 10}, - [2251] = {.lex_state = 126, .external_lex_state = 10}, + [2241] = {.lex_state = 229, .external_lex_state = 23}, + [2242] = {.lex_state = 204, .external_lex_state = 2}, + [2243] = {.lex_state = 215, .external_lex_state = 13}, + [2244] = {.lex_state = 215, .external_lex_state = 13}, + [2245] = {.lex_state = 215, .external_lex_state = 13}, + [2246] = {.lex_state = 127, .external_lex_state = 14}, + [2247] = {.lex_state = 127, .external_lex_state = 14}, + [2248] = {.lex_state = 127, .external_lex_state = 14}, + [2249] = {.lex_state = 127, .external_lex_state = 10}, + [2250] = {.lex_state = 127, .external_lex_state = 10}, + [2251] = {.lex_state = 127, .external_lex_state = 10}, [2252] = {.lex_state = 73, .external_lex_state = 15}, [2253] = {.lex_state = 73, .external_lex_state = 15}, [2254] = {.lex_state = 73, .external_lex_state = 15}, [2255] = {.lex_state = 91, .external_lex_state = 13}, [2256] = {.lex_state = 91, .external_lex_state = 13}, [2257] = {.lex_state = 91, .external_lex_state = 13}, - [2258] = {.lex_state = 198, .external_lex_state = 22}, - [2259] = {.lex_state = 198, .external_lex_state = 22}, - [2260] = {.lex_state = 198, .external_lex_state = 22}, - [2261] = {.lex_state = 219, .external_lex_state = 16}, - [2262] = {.lex_state = 198, .external_lex_state = 22}, - [2263] = {.lex_state = 198, .external_lex_state = 22}, - [2264] = {.lex_state = 198, .external_lex_state = 16}, - [2265] = {.lex_state = 219, .external_lex_state = 16}, - [2266] = {.lex_state = 198, .external_lex_state = 22}, - [2267] = {.lex_state = 219, .external_lex_state = 16}, - [2268] = {.lex_state = 198, .external_lex_state = 22}, - [2269] = {.lex_state = 219, .external_lex_state = 16}, - [2270] = {.lex_state = 198, .external_lex_state = 22}, - [2271] = {.lex_state = 219, .external_lex_state = 16}, - [2272] = {.lex_state = 198, .external_lex_state = 22}, - [2273] = {.lex_state = 219, .external_lex_state = 16}, - [2274] = {.lex_state = 198, .external_lex_state = 22}, - [2275] = {.lex_state = 198, .external_lex_state = 22}, - [2276] = {.lex_state = 219, .external_lex_state = 22}, - [2277] = {.lex_state = 219, .external_lex_state = 22}, - [2278] = {.lex_state = 219, .external_lex_state = 22}, - [2279] = {.lex_state = 219, .external_lex_state = 22}, - [2280] = {.lex_state = 219, .external_lex_state = 16}, - [2281] = {.lex_state = 219, .external_lex_state = 22}, - [2282] = {.lex_state = 219, .external_lex_state = 16}, - [2283] = {.lex_state = 219, .external_lex_state = 22}, - [2284] = {.lex_state = 219, .external_lex_state = 16}, - [2285] = {.lex_state = 219, .external_lex_state = 22}, - [2286] = {.lex_state = 219, .external_lex_state = 22}, - [2287] = {.lex_state = 132, .external_lex_state = 10}, - [2288] = {.lex_state = 226, .external_lex_state = 23}, - [2289] = {.lex_state = 165, .external_lex_state = 17}, - [2290] = {.lex_state = 165, .external_lex_state = 17}, - [2291] = {.lex_state = 165, .external_lex_state = 17}, - [2292] = {.lex_state = 165, .external_lex_state = 17}, - [2293] = {.lex_state = 219, .external_lex_state = 16}, - [2294] = {.lex_state = 165, .external_lex_state = 17}, - [2295] = {.lex_state = 219, .external_lex_state = 16}, - [2296] = {.lex_state = 165, .external_lex_state = 17}, - [2297] = {.lex_state = 219, .external_lex_state = 16}, - [2298] = {.lex_state = 165, .external_lex_state = 17}, - [2299] = {.lex_state = 165, .external_lex_state = 17}, - [2300] = {.lex_state = 194, .external_lex_state = 13}, - [2301] = {.lex_state = 194, .external_lex_state = 13}, - [2302] = {.lex_state = 194, .external_lex_state = 13}, - [2303] = {.lex_state = 194, .external_lex_state = 13}, - [2304] = {.lex_state = 219, .external_lex_state = 16}, - [2305] = {.lex_state = 194, .external_lex_state = 13}, - [2306] = {.lex_state = 219, .external_lex_state = 16}, - [2307] = {.lex_state = 194, .external_lex_state = 13}, - [2308] = {.lex_state = 219, .external_lex_state = 16}, - [2309] = {.lex_state = 194, .external_lex_state = 13}, - [2310] = {.lex_state = 194, .external_lex_state = 13}, - [2311] = {.lex_state = 130, .external_lex_state = 19}, - [2312] = {.lex_state = 130, .external_lex_state = 19}, - [2313] = {.lex_state = 130, .external_lex_state = 19}, - [2314] = {.lex_state = 248, .external_lex_state = 13}, - [2315] = {.lex_state = 248, .external_lex_state = 13}, - [2316] = {.lex_state = 248, .external_lex_state = 13}, - [2317] = {.lex_state = 219, .external_lex_state = 16}, - [2318] = {.lex_state = 198, .external_lex_state = 22}, - [2319] = {.lex_state = 198, .external_lex_state = 22}, - [2320] = {.lex_state = 198, .external_lex_state = 16}, - [2321] = {.lex_state = 219, .external_lex_state = 16}, - [2322] = {.lex_state = 248, .external_lex_state = 13}, - [2323] = {.lex_state = 219, .external_lex_state = 16}, - [2324] = {.lex_state = 248, .external_lex_state = 13}, - [2325] = {.lex_state = 219, .external_lex_state = 16}, - [2326] = {.lex_state = 248, .external_lex_state = 13}, - [2327] = {.lex_state = 219, .external_lex_state = 16}, - [2328] = {.lex_state = 248, .external_lex_state = 13}, - [2329] = {.lex_state = 219, .external_lex_state = 16}, - [2330] = {.lex_state = 248, .external_lex_state = 13}, - [2331] = {.lex_state = 248, .external_lex_state = 13}, - [2332] = {.lex_state = 234, .external_lex_state = 10}, - [2333] = {.lex_state = 234, .external_lex_state = 10}, - [2334] = {.lex_state = 234, .external_lex_state = 10}, - [2335] = {.lex_state = 132, .external_lex_state = 4}, - [2336] = {.lex_state = 113, .external_lex_state = 19}, - [2337] = {.lex_state = 113, .external_lex_state = 19}, - [2338] = {.lex_state = 253, .external_lex_state = 7}, + [2258] = {.lex_state = 199, .external_lex_state = 22}, + [2259] = {.lex_state = 199, .external_lex_state = 22}, + [2260] = {.lex_state = 199, .external_lex_state = 22}, + [2261] = {.lex_state = 199, .external_lex_state = 22}, + [2262] = {.lex_state = 199, .external_lex_state = 16}, + [2263] = {.lex_state = 220, .external_lex_state = 16}, + [2264] = {.lex_state = 199, .external_lex_state = 22}, + [2265] = {.lex_state = 220, .external_lex_state = 16}, + [2266] = {.lex_state = 199, .external_lex_state = 22}, + [2267] = {.lex_state = 220, .external_lex_state = 16}, + [2268] = {.lex_state = 199, .external_lex_state = 22}, + [2269] = {.lex_state = 220, .external_lex_state = 16}, + [2270] = {.lex_state = 199, .external_lex_state = 22}, + [2271] = {.lex_state = 220, .external_lex_state = 16}, + [2272] = {.lex_state = 199, .external_lex_state = 22}, + [2273] = {.lex_state = 220, .external_lex_state = 16}, + [2274] = {.lex_state = 199, .external_lex_state = 22}, + [2275] = {.lex_state = 199, .external_lex_state = 22}, + [2276] = {.lex_state = 220, .external_lex_state = 22}, + [2277] = {.lex_state = 220, .external_lex_state = 22}, + [2278] = {.lex_state = 220, .external_lex_state = 22}, + [2279] = {.lex_state = 220, .external_lex_state = 16}, + [2280] = {.lex_state = 220, .external_lex_state = 22}, + [2281] = {.lex_state = 220, .external_lex_state = 16}, + [2282] = {.lex_state = 220, .external_lex_state = 22}, + [2283] = {.lex_state = 220, .external_lex_state = 16}, + [2284] = {.lex_state = 220, .external_lex_state = 22}, + [2285] = {.lex_state = 220, .external_lex_state = 22}, + [2286] = {.lex_state = 220, .external_lex_state = 22}, + [2287] = {.lex_state = 133, .external_lex_state = 10}, + [2288] = {.lex_state = 227, .external_lex_state = 23}, + [2289] = {.lex_state = 166, .external_lex_state = 17}, + [2290] = {.lex_state = 166, .external_lex_state = 17}, + [2291] = {.lex_state = 166, .external_lex_state = 17}, + [2292] = {.lex_state = 220, .external_lex_state = 16}, + [2293] = {.lex_state = 166, .external_lex_state = 17}, + [2294] = {.lex_state = 220, .external_lex_state = 16}, + [2295] = {.lex_state = 166, .external_lex_state = 17}, + [2296] = {.lex_state = 220, .external_lex_state = 16}, + [2297] = {.lex_state = 166, .external_lex_state = 17}, + [2298] = {.lex_state = 166, .external_lex_state = 17}, + [2299] = {.lex_state = 166, .external_lex_state = 17}, + [2300] = {.lex_state = 195, .external_lex_state = 13}, + [2301] = {.lex_state = 195, .external_lex_state = 13}, + [2302] = {.lex_state = 195, .external_lex_state = 13}, + [2303] = {.lex_state = 220, .external_lex_state = 16}, + [2304] = {.lex_state = 195, .external_lex_state = 13}, + [2305] = {.lex_state = 220, .external_lex_state = 16}, + [2306] = {.lex_state = 195, .external_lex_state = 13}, + [2307] = {.lex_state = 220, .external_lex_state = 16}, + [2308] = {.lex_state = 195, .external_lex_state = 13}, + [2309] = {.lex_state = 195, .external_lex_state = 13}, + [2310] = {.lex_state = 195, .external_lex_state = 13}, + [2311] = {.lex_state = 131, .external_lex_state = 19}, + [2312] = {.lex_state = 131, .external_lex_state = 19}, + [2313] = {.lex_state = 131, .external_lex_state = 19}, + [2314] = {.lex_state = 249, .external_lex_state = 13}, + [2315] = {.lex_state = 249, .external_lex_state = 13}, + [2316] = {.lex_state = 199, .external_lex_state = 22}, + [2317] = {.lex_state = 199, .external_lex_state = 22}, + [2318] = {.lex_state = 199, .external_lex_state = 16}, + [2319] = {.lex_state = 220, .external_lex_state = 16}, + [2320] = {.lex_state = 249, .external_lex_state = 13}, + [2321] = {.lex_state = 220, .external_lex_state = 16}, + [2322] = {.lex_state = 249, .external_lex_state = 13}, + [2323] = {.lex_state = 220, .external_lex_state = 16}, + [2324] = {.lex_state = 249, .external_lex_state = 13}, + [2325] = {.lex_state = 220, .external_lex_state = 16}, + [2326] = {.lex_state = 249, .external_lex_state = 13}, + [2327] = {.lex_state = 220, .external_lex_state = 16}, + [2328] = {.lex_state = 249, .external_lex_state = 13}, + [2329] = {.lex_state = 220, .external_lex_state = 16}, + [2330] = {.lex_state = 249, .external_lex_state = 13}, + [2331] = {.lex_state = 249, .external_lex_state = 13}, + [2332] = {.lex_state = 235, .external_lex_state = 10}, + [2333] = {.lex_state = 235, .external_lex_state = 10}, + [2334] = {.lex_state = 235, .external_lex_state = 10}, + [2335] = {.lex_state = 133, .external_lex_state = 4}, + [2336] = {.lex_state = 114, .external_lex_state = 19}, + [2337] = {.lex_state = 114, .external_lex_state = 19}, + [2338] = {.lex_state = 254, .external_lex_state = 7}, [2339] = {.lex_state = 77}, - [2340] = {.lex_state = 255, .external_lex_state = 21}, - [2341] = {.lex_state = 253, .external_lex_state = 21}, - [2342] = {.lex_state = 117, .external_lex_state = 9}, + [2340] = {.lex_state = 256, .external_lex_state = 21}, + [2341] = {.lex_state = 254, .external_lex_state = 21}, + [2342] = {.lex_state = 118, .external_lex_state = 9}, [2343] = {.lex_state = 73}, [2344] = {.lex_state = 83, .external_lex_state = 14}, [2345] = {.lex_state = 83, .external_lex_state = 14}, - [2346] = {.lex_state = 151}, + [2346] = {.lex_state = 152}, [2347] = {.lex_state = 91}, [2348] = {.lex_state = 83, .external_lex_state = 14}, [2349] = {.lex_state = 83, .external_lex_state = 14}, [2350] = {.lex_state = 83, .external_lex_state = 14}, [2351] = {.lex_state = 62}, - [2352] = {.lex_state = 157, .external_lex_state = 16}, - [2353] = {.lex_state = 160, .external_lex_state = 6}, - [2354] = {.lex_state = 157, .external_lex_state = 16}, - [2355] = {.lex_state = 157, .external_lex_state = 16}, - [2356] = {.lex_state = 126, .external_lex_state = 4}, - [2357] = {.lex_state = 130, .external_lex_state = 8}, + [2352] = {.lex_state = 158, .external_lex_state = 6}, + [2353] = {.lex_state = 160, .external_lex_state = 16}, + [2354] = {.lex_state = 160, .external_lex_state = 16}, + [2355] = {.lex_state = 160, .external_lex_state = 16}, + [2356] = {.lex_state = 127, .external_lex_state = 4}, + [2357] = {.lex_state = 131, .external_lex_state = 8}, [2358] = {.lex_state = 56, .external_lex_state = 2}, [2359] = {.lex_state = 83, .external_lex_state = 4}, - [2360] = {.lex_state = 113, .external_lex_state = 8}, + [2360] = {.lex_state = 114, .external_lex_state = 8}, [2361] = {.lex_state = 56, .external_lex_state = 2}, - [2362] = {.lex_state = 126, .external_lex_state = 4}, - [2363] = {.lex_state = 130, .external_lex_state = 8}, + [2362] = {.lex_state = 127, .external_lex_state = 4}, + [2363] = {.lex_state = 131, .external_lex_state = 8}, [2364] = {.lex_state = 56, .external_lex_state = 2}, [2365] = {.lex_state = 83, .external_lex_state = 3}, [2366] = {.lex_state = 73}, [2367] = {.lex_state = 83, .external_lex_state = 10}, [2368] = {.lex_state = 83, .external_lex_state = 10}, - [2369] = {.lex_state = 151}, + [2369] = {.lex_state = 152}, [2370] = {.lex_state = 91}, [2371] = {.lex_state = 83, .external_lex_state = 10}, [2372] = {.lex_state = 83, .external_lex_state = 10}, [2373] = {.lex_state = 83, .external_lex_state = 10}, [2374] = {.lex_state = 62}, - [2375] = {.lex_state = 157, .external_lex_state = 16}, - [2376] = {.lex_state = 160, .external_lex_state = 6}, - [2377] = {.lex_state = 157, .external_lex_state = 16}, - [2378] = {.lex_state = 157, .external_lex_state = 16}, - [2379] = {.lex_state = 126, .external_lex_state = 4}, - [2380] = {.lex_state = 130, .external_lex_state = 8}, + [2375] = {.lex_state = 158, .external_lex_state = 6}, + [2376] = {.lex_state = 160, .external_lex_state = 16}, + [2377] = {.lex_state = 160, .external_lex_state = 16}, + [2378] = {.lex_state = 160, .external_lex_state = 16}, + [2379] = {.lex_state = 127, .external_lex_state = 4}, + [2380] = {.lex_state = 131, .external_lex_state = 8}, [2381] = {.lex_state = 56, .external_lex_state = 2}, [2382] = {.lex_state = 83, .external_lex_state = 4}, - [2383] = {.lex_state = 113, .external_lex_state = 8}, + [2383] = {.lex_state = 114, .external_lex_state = 8}, [2384] = {.lex_state = 56, .external_lex_state = 2}, - [2385] = {.lex_state = 126, .external_lex_state = 4}, - [2386] = {.lex_state = 130, .external_lex_state = 8}, + [2385] = {.lex_state = 127, .external_lex_state = 4}, + [2386] = {.lex_state = 131, .external_lex_state = 8}, [2387] = {.lex_state = 56, .external_lex_state = 2}, [2388] = {.lex_state = 83, .external_lex_state = 4}, [2389] = {.lex_state = 88, .external_lex_state = 5}, - [2390] = {.lex_state = 124}, - [2391] = {.lex_state = 132, .external_lex_state = 4}, - [2392] = {.lex_state = 113, .external_lex_state = 8}, + [2390] = {.lex_state = 125}, + [2391] = {.lex_state = 133, .external_lex_state = 4}, + [2392] = {.lex_state = 114, .external_lex_state = 8}, [2393] = {.lex_state = 73}, [2394] = {.lex_state = 88, .external_lex_state = 5}, [2395] = {.lex_state = 88, .external_lex_state = 5}, - [2396] = {.lex_state = 253, .external_lex_state = 5}, - [2397] = {.lex_state = 253, .external_lex_state = 5}, - [2398] = {.lex_state = 253, .external_lex_state = 5}, - [2399] = {.lex_state = 253, .external_lex_state = 5}, - [2400] = {.lex_state = 253, .external_lex_state = 7}, - [2401] = {.lex_state = 253, .external_lex_state = 7}, + [2396] = {.lex_state = 254, .external_lex_state = 5}, + [2397] = {.lex_state = 254, .external_lex_state = 5}, + [2398] = {.lex_state = 254, .external_lex_state = 5}, + [2399] = {.lex_state = 254, .external_lex_state = 5}, + [2400] = {.lex_state = 254, .external_lex_state = 7}, + [2401] = {.lex_state = 254, .external_lex_state = 7}, [2402] = {.lex_state = 88, .external_lex_state = 7}, - [2403] = {.lex_state = 162, .external_lex_state = 2}, + [2403] = {.lex_state = 163, .external_lex_state = 2}, [2404] = {.lex_state = 88, .external_lex_state = 7}, [2405] = {.lex_state = 73}, - [2406] = {.lex_state = 132, .external_lex_state = 4}, - [2407] = {.lex_state = 113, .external_lex_state = 8}, - [2408] = {.lex_state = 162, .external_lex_state = 2}, + [2406] = {.lex_state = 133, .external_lex_state = 4}, + [2407] = {.lex_state = 114, .external_lex_state = 8}, + [2408] = {.lex_state = 163, .external_lex_state = 2}, [2409] = {.lex_state = 73}, - [2410] = {.lex_state = 132, .external_lex_state = 4}, - [2411] = {.lex_state = 113, .external_lex_state = 8}, + [2410] = {.lex_state = 133, .external_lex_state = 4}, + [2411] = {.lex_state = 114, .external_lex_state = 8}, [2412] = {.lex_state = 73}, [2413] = {.lex_state = 83, .external_lex_state = 4}, - [2414] = {.lex_state = 113, .external_lex_state = 8}, - [2415] = {.lex_state = 162, .external_lex_state = 2}, - [2416] = {.lex_state = 162, .external_lex_state = 2}, + [2414] = {.lex_state = 114, .external_lex_state = 8}, + [2415] = {.lex_state = 163, .external_lex_state = 2}, + [2416] = {.lex_state = 163, .external_lex_state = 2}, [2417] = {.lex_state = 73}, [2418] = {.lex_state = 83, .external_lex_state = 4}, - [2419] = {.lex_state = 113, .external_lex_state = 8}, - [2420] = {.lex_state = 162, .external_lex_state = 2}, - [2421] = {.lex_state = 162, .external_lex_state = 2}, - [2422] = {.lex_state = 228, .external_lex_state = 23}, - [2423] = {.lex_state = 228, .external_lex_state = 23}, - [2424] = {.lex_state = 228, .external_lex_state = 23}, - [2425] = {.lex_state = 219, .external_lex_state = 16}, - [2426] = {.lex_state = 198, .external_lex_state = 22}, - [2427] = {.lex_state = 198, .external_lex_state = 22}, - [2428] = {.lex_state = 198, .external_lex_state = 16}, - [2429] = {.lex_state = 219, .external_lex_state = 16}, - [2430] = {.lex_state = 228, .external_lex_state = 23}, - [2431] = {.lex_state = 219, .external_lex_state = 16}, - [2432] = {.lex_state = 228, .external_lex_state = 23}, - [2433] = {.lex_state = 219, .external_lex_state = 16}, - [2434] = {.lex_state = 228, .external_lex_state = 23}, - [2435] = {.lex_state = 219, .external_lex_state = 16}, - [2436] = {.lex_state = 228, .external_lex_state = 23}, - [2437] = {.lex_state = 219, .external_lex_state = 16}, - [2438] = {.lex_state = 228, .external_lex_state = 23}, - [2439] = {.lex_state = 228, .external_lex_state = 23}, - [2440] = {.lex_state = 198, .external_lex_state = 22}, - [2441] = {.lex_state = 198, .external_lex_state = 22}, - [2442] = {.lex_state = 198, .external_lex_state = 22}, - [2443] = {.lex_state = 198, .external_lex_state = 22}, - [2444] = {.lex_state = 219, .external_lex_state = 16}, - [2445] = {.lex_state = 198, .external_lex_state = 22}, - [2446] = {.lex_state = 219, .external_lex_state = 16}, - [2447] = {.lex_state = 198, .external_lex_state = 22}, - [2448] = {.lex_state = 219, .external_lex_state = 16}, - [2449] = {.lex_state = 198, .external_lex_state = 22}, - [2450] = {.lex_state = 198, .external_lex_state = 22}, - [2451] = {.lex_state = 219, .external_lex_state = 22}, - [2452] = {.lex_state = 219, .external_lex_state = 22}, - [2453] = {.lex_state = 219, .external_lex_state = 22}, - [2454] = {.lex_state = 165, .external_lex_state = 17}, - [2455] = {.lex_state = 165, .external_lex_state = 17}, - [2456] = {.lex_state = 165, .external_lex_state = 17}, - [2457] = {.lex_state = 194, .external_lex_state = 13}, - [2458] = {.lex_state = 194, .external_lex_state = 13}, - [2459] = {.lex_state = 194, .external_lex_state = 13}, - [2460] = {.lex_state = 248, .external_lex_state = 13}, - [2461] = {.lex_state = 248, .external_lex_state = 13}, - [2462] = {.lex_state = 248, .external_lex_state = 13}, - [2463] = {.lex_state = 248, .external_lex_state = 13}, - [2464] = {.lex_state = 219, .external_lex_state = 16}, - [2465] = {.lex_state = 248, .external_lex_state = 13}, - [2466] = {.lex_state = 219, .external_lex_state = 16}, - [2467] = {.lex_state = 248, .external_lex_state = 13}, - [2468] = {.lex_state = 219, .external_lex_state = 16}, - [2469] = {.lex_state = 248, .external_lex_state = 13}, - [2470] = {.lex_state = 248, .external_lex_state = 13}, - [2471] = {.lex_state = 113, .external_lex_state = 19}, - [2472] = {.lex_state = 253, .external_lex_state = 7}, - [2473] = {.lex_state = 124}, + [2419] = {.lex_state = 114, .external_lex_state = 8}, + [2420] = {.lex_state = 163, .external_lex_state = 2}, + [2421] = {.lex_state = 163, .external_lex_state = 2}, + [2422] = {.lex_state = 229, .external_lex_state = 23}, + [2423] = {.lex_state = 229, .external_lex_state = 23}, + [2424] = {.lex_state = 199, .external_lex_state = 22}, + [2425] = {.lex_state = 199, .external_lex_state = 22}, + [2426] = {.lex_state = 199, .external_lex_state = 16}, + [2427] = {.lex_state = 220, .external_lex_state = 16}, + [2428] = {.lex_state = 229, .external_lex_state = 23}, + [2429] = {.lex_state = 220, .external_lex_state = 16}, + [2430] = {.lex_state = 229, .external_lex_state = 23}, + [2431] = {.lex_state = 220, .external_lex_state = 16}, + [2432] = {.lex_state = 229, .external_lex_state = 23}, + [2433] = {.lex_state = 220, .external_lex_state = 16}, + [2434] = {.lex_state = 229, .external_lex_state = 23}, + [2435] = {.lex_state = 220, .external_lex_state = 16}, + [2436] = {.lex_state = 229, .external_lex_state = 23}, + [2437] = {.lex_state = 220, .external_lex_state = 16}, + [2438] = {.lex_state = 229, .external_lex_state = 23}, + [2439] = {.lex_state = 229, .external_lex_state = 23}, + [2440] = {.lex_state = 199, .external_lex_state = 22}, + [2441] = {.lex_state = 199, .external_lex_state = 22}, + [2442] = {.lex_state = 199, .external_lex_state = 22}, + [2443] = {.lex_state = 220, .external_lex_state = 16}, + [2444] = {.lex_state = 199, .external_lex_state = 22}, + [2445] = {.lex_state = 220, .external_lex_state = 16}, + [2446] = {.lex_state = 199, .external_lex_state = 22}, + [2447] = {.lex_state = 220, .external_lex_state = 16}, + [2448] = {.lex_state = 199, .external_lex_state = 22}, + [2449] = {.lex_state = 199, .external_lex_state = 22}, + [2450] = {.lex_state = 199, .external_lex_state = 22}, + [2451] = {.lex_state = 220, .external_lex_state = 22}, + [2452] = {.lex_state = 220, .external_lex_state = 22}, + [2453] = {.lex_state = 220, .external_lex_state = 22}, + [2454] = {.lex_state = 166, .external_lex_state = 17}, + [2455] = {.lex_state = 166, .external_lex_state = 17}, + [2456] = {.lex_state = 166, .external_lex_state = 17}, + [2457] = {.lex_state = 195, .external_lex_state = 13}, + [2458] = {.lex_state = 195, .external_lex_state = 13}, + [2459] = {.lex_state = 195, .external_lex_state = 13}, + [2460] = {.lex_state = 249, .external_lex_state = 13}, + [2461] = {.lex_state = 249, .external_lex_state = 13}, + [2462] = {.lex_state = 249, .external_lex_state = 13}, + [2463] = {.lex_state = 220, .external_lex_state = 16}, + [2464] = {.lex_state = 249, .external_lex_state = 13}, + [2465] = {.lex_state = 220, .external_lex_state = 16}, + [2466] = {.lex_state = 249, .external_lex_state = 13}, + [2467] = {.lex_state = 220, .external_lex_state = 16}, + [2468] = {.lex_state = 249, .external_lex_state = 13}, + [2469] = {.lex_state = 249, .external_lex_state = 13}, + [2470] = {.lex_state = 249, .external_lex_state = 13}, + [2471] = {.lex_state = 114, .external_lex_state = 19}, + [2472] = {.lex_state = 254, .external_lex_state = 7}, + [2473] = {.lex_state = 125}, [2474] = {.lex_state = 56}, [2475] = {.lex_state = 73}, [2476] = {.lex_state = 56}, [2477] = {.lex_state = 73}, [2478] = {.lex_state = 73}, - [2479] = {.lex_state = 253, .external_lex_state = 21}, + [2479] = {.lex_state = 254, .external_lex_state = 21}, [2480] = {.lex_state = 83, .external_lex_state = 3}, - [2481] = {.lex_state = 194}, + [2481] = {.lex_state = 195}, [2482] = {.lex_state = 83, .external_lex_state = 14}, [2483] = {.lex_state = 83, .external_lex_state = 14}, [2484] = {.lex_state = 83, .external_lex_state = 14}, [2485] = {.lex_state = 83, .external_lex_state = 14}, [2486] = {.lex_state = 83, .external_lex_state = 14}, - [2487] = {.lex_state = 151}, - [2488] = {.lex_state = 217, .external_lex_state = 16}, - [2489] = {.lex_state = 83, .external_lex_state = 14}, - [2490] = {.lex_state = 221}, - [2491] = {.lex_state = 219, .external_lex_state = 16}, - [2492] = {.lex_state = 62}, - [2493] = {.lex_state = 157, .external_lex_state = 16}, - [2494] = {.lex_state = 157, .external_lex_state = 16}, - [2495] = {.lex_state = 157, .external_lex_state = 16}, + [2487] = {.lex_state = 152}, + [2488] = {.lex_state = 218, .external_lex_state = 16}, + [2489] = {.lex_state = 62}, + [2490] = {.lex_state = 160, .external_lex_state = 16}, + [2491] = {.lex_state = 160, .external_lex_state = 16}, + [2492] = {.lex_state = 160, .external_lex_state = 16}, + [2493] = {.lex_state = 83, .external_lex_state = 14}, + [2494] = {.lex_state = 222}, + [2495] = {.lex_state = 220, .external_lex_state = 16}, [2496] = {.lex_state = 83, .external_lex_state = 14}, - [2497] = {.lex_state = 221}, - [2498] = {.lex_state = 219, .external_lex_state = 16}, + [2497] = {.lex_state = 222}, + [2498] = {.lex_state = 220, .external_lex_state = 16}, [2499] = {.lex_state = 83, .external_lex_state = 14}, - [2500] = {.lex_state = 221}, - [2501] = {.lex_state = 219, .external_lex_state = 16}, + [2500] = {.lex_state = 222}, + [2501] = {.lex_state = 220, .external_lex_state = 16}, [2502] = {.lex_state = 83, .external_lex_state = 14}, - [2503] = {.lex_state = 203, .external_lex_state = 2}, - [2504] = {.lex_state = 126, .external_lex_state = 4}, - [2505] = {.lex_state = 130, .external_lex_state = 8}, + [2503] = {.lex_state = 204, .external_lex_state = 2}, + [2504] = {.lex_state = 127, .external_lex_state = 4}, + [2505] = {.lex_state = 131, .external_lex_state = 8}, [2506] = {.lex_state = 56, .external_lex_state = 2}, [2507] = {.lex_state = 83, .external_lex_state = 4}, - [2508] = {.lex_state = 113, .external_lex_state = 8}, + [2508] = {.lex_state = 114, .external_lex_state = 8}, [2509] = {.lex_state = 83, .external_lex_state = 14}, - [2510] = {.lex_state = 203, .external_lex_state = 2}, - [2511] = {.lex_state = 126, .external_lex_state = 4}, - [2512] = {.lex_state = 130, .external_lex_state = 8}, + [2510] = {.lex_state = 204, .external_lex_state = 2}, + [2511] = {.lex_state = 127, .external_lex_state = 4}, + [2512] = {.lex_state = 131, .external_lex_state = 8}, [2513] = {.lex_state = 83, .external_lex_state = 10}, [2514] = {.lex_state = 83, .external_lex_state = 10}, [2515] = {.lex_state = 83, .external_lex_state = 10}, - [2516] = {.lex_state = 151}, - [2517] = {.lex_state = 217, .external_lex_state = 16}, - [2518] = {.lex_state = 83, .external_lex_state = 10}, - [2519] = {.lex_state = 221}, - [2520] = {.lex_state = 219, .external_lex_state = 16}, - [2521] = {.lex_state = 62}, - [2522] = {.lex_state = 157, .external_lex_state = 16}, - [2523] = {.lex_state = 157, .external_lex_state = 16}, - [2524] = {.lex_state = 157, .external_lex_state = 16}, + [2516] = {.lex_state = 152}, + [2517] = {.lex_state = 218, .external_lex_state = 16}, + [2518] = {.lex_state = 62}, + [2519] = {.lex_state = 160, .external_lex_state = 16}, + [2520] = {.lex_state = 160, .external_lex_state = 16}, + [2521] = {.lex_state = 160, .external_lex_state = 16}, + [2522] = {.lex_state = 83, .external_lex_state = 10}, + [2523] = {.lex_state = 222}, + [2524] = {.lex_state = 220, .external_lex_state = 16}, [2525] = {.lex_state = 83, .external_lex_state = 10}, - [2526] = {.lex_state = 221}, - [2527] = {.lex_state = 219, .external_lex_state = 16}, + [2526] = {.lex_state = 222}, + [2527] = {.lex_state = 220, .external_lex_state = 16}, [2528] = {.lex_state = 83, .external_lex_state = 10}, - [2529] = {.lex_state = 221}, - [2530] = {.lex_state = 219, .external_lex_state = 16}, + [2529] = {.lex_state = 222}, + [2530] = {.lex_state = 220, .external_lex_state = 16}, [2531] = {.lex_state = 83, .external_lex_state = 10}, - [2532] = {.lex_state = 203, .external_lex_state = 2}, - [2533] = {.lex_state = 126, .external_lex_state = 4}, - [2534] = {.lex_state = 130, .external_lex_state = 8}, + [2532] = {.lex_state = 204, .external_lex_state = 2}, + [2533] = {.lex_state = 127, .external_lex_state = 4}, + [2534] = {.lex_state = 131, .external_lex_state = 8}, [2535] = {.lex_state = 56, .external_lex_state = 2}, [2536] = {.lex_state = 83, .external_lex_state = 4}, - [2537] = {.lex_state = 113, .external_lex_state = 8}, + [2537] = {.lex_state = 114, .external_lex_state = 8}, [2538] = {.lex_state = 83, .external_lex_state = 10}, - [2539] = {.lex_state = 203, .external_lex_state = 2}, - [2540] = {.lex_state = 126, .external_lex_state = 4}, - [2541] = {.lex_state = 130, .external_lex_state = 8}, - [2542] = {.lex_state = 255, .external_lex_state = 21}, - [2543] = {.lex_state = 253, .external_lex_state = 5}, - [2544] = {.lex_state = 253, .external_lex_state = 5}, - [2545] = {.lex_state = 253, .external_lex_state = 5}, - [2546] = {.lex_state = 253, .external_lex_state = 7}, - [2547] = {.lex_state = 162, .external_lex_state = 2}, - [2548] = {.lex_state = 162, .external_lex_state = 2}, - [2549] = {.lex_state = 162, .external_lex_state = 2}, + [2539] = {.lex_state = 204, .external_lex_state = 2}, + [2540] = {.lex_state = 127, .external_lex_state = 4}, + [2541] = {.lex_state = 131, .external_lex_state = 8}, + [2542] = {.lex_state = 256, .external_lex_state = 21}, + [2543] = {.lex_state = 254, .external_lex_state = 5}, + [2544] = {.lex_state = 254, .external_lex_state = 5}, + [2545] = {.lex_state = 254, .external_lex_state = 5}, + [2546] = {.lex_state = 254, .external_lex_state = 7}, + [2547] = {.lex_state = 163, .external_lex_state = 2}, + [2548] = {.lex_state = 163, .external_lex_state = 2}, + [2549] = {.lex_state = 163, .external_lex_state = 2}, [2550] = {.lex_state = 73}, [2551] = {.lex_state = 83, .external_lex_state = 4}, - [2552] = {.lex_state = 113, .external_lex_state = 8}, - [2553] = {.lex_state = 162, .external_lex_state = 2}, - [2554] = {.lex_state = 162, .external_lex_state = 2}, - [2555] = {.lex_state = 162, .external_lex_state = 2}, + [2552] = {.lex_state = 114, .external_lex_state = 8}, + [2553] = {.lex_state = 163, .external_lex_state = 2}, + [2554] = {.lex_state = 163, .external_lex_state = 2}, + [2555] = {.lex_state = 163, .external_lex_state = 2}, [2556] = {.lex_state = 73}, [2557] = {.lex_state = 83, .external_lex_state = 4}, - [2558] = {.lex_state = 113, .external_lex_state = 8}, - [2559] = {.lex_state = 162, .external_lex_state = 2}, - [2560] = {.lex_state = 228, .external_lex_state = 23}, - [2561] = {.lex_state = 228, .external_lex_state = 23}, - [2562] = {.lex_state = 228, .external_lex_state = 23}, - [2563] = {.lex_state = 228, .external_lex_state = 23}, - [2564] = {.lex_state = 219, .external_lex_state = 16}, - [2565] = {.lex_state = 228, .external_lex_state = 23}, - [2566] = {.lex_state = 219, .external_lex_state = 16}, - [2567] = {.lex_state = 228, .external_lex_state = 23}, - [2568] = {.lex_state = 219, .external_lex_state = 16}, - [2569] = {.lex_state = 228, .external_lex_state = 23}, - [2570] = {.lex_state = 228, .external_lex_state = 23}, - [2571] = {.lex_state = 198, .external_lex_state = 22}, - [2572] = {.lex_state = 198, .external_lex_state = 22}, - [2573] = {.lex_state = 198, .external_lex_state = 22}, - [2574] = {.lex_state = 248, .external_lex_state = 13}, - [2575] = {.lex_state = 248, .external_lex_state = 13}, - [2576] = {.lex_state = 248, .external_lex_state = 13}, - [2577] = {.lex_state = 113, .external_lex_state = 19}, - [2578] = {.lex_state = 255, .external_lex_state = 21}, + [2558] = {.lex_state = 114, .external_lex_state = 8}, + [2559] = {.lex_state = 163, .external_lex_state = 2}, + [2560] = {.lex_state = 229, .external_lex_state = 23}, + [2561] = {.lex_state = 229, .external_lex_state = 23}, + [2562] = {.lex_state = 229, .external_lex_state = 23}, + [2563] = {.lex_state = 220, .external_lex_state = 16}, + [2564] = {.lex_state = 229, .external_lex_state = 23}, + [2565] = {.lex_state = 220, .external_lex_state = 16}, + [2566] = {.lex_state = 229, .external_lex_state = 23}, + [2567] = {.lex_state = 220, .external_lex_state = 16}, + [2568] = {.lex_state = 229, .external_lex_state = 23}, + [2569] = {.lex_state = 229, .external_lex_state = 23}, + [2570] = {.lex_state = 229, .external_lex_state = 23}, + [2571] = {.lex_state = 199, .external_lex_state = 22}, + [2572] = {.lex_state = 199, .external_lex_state = 22}, + [2573] = {.lex_state = 199, .external_lex_state = 22}, + [2574] = {.lex_state = 249, .external_lex_state = 13}, + [2575] = {.lex_state = 249, .external_lex_state = 13}, + [2576] = {.lex_state = 249, .external_lex_state = 13}, + [2577] = {.lex_state = 114, .external_lex_state = 19}, + [2578] = {.lex_state = 256, .external_lex_state = 21}, [2579] = {.lex_state = 73}, - [2580] = {.lex_state = 132, .external_lex_state = 10}, - [2581] = {.lex_state = 132, .external_lex_state = 10}, + [2580] = {.lex_state = 133, .external_lex_state = 10}, + [2581] = {.lex_state = 133, .external_lex_state = 10}, [2582] = {.lex_state = 73}, - [2583] = {.lex_state = 253, .external_lex_state = 23}, - [2584] = {.lex_state = 253, .external_lex_state = 23}, - [2585] = {.lex_state = 253, .external_lex_state = 23}, - [2586] = {.lex_state = 253, .external_lex_state = 23}, - [2587] = {.lex_state = 253, .external_lex_state = 21}, + [2583] = {.lex_state = 254, .external_lex_state = 23}, + [2584] = {.lex_state = 254, .external_lex_state = 23}, + [2585] = {.lex_state = 254, .external_lex_state = 23}, + [2586] = {.lex_state = 254, .external_lex_state = 23}, + [2587] = {.lex_state = 254, .external_lex_state = 21}, [2588] = {.lex_state = 83, .external_lex_state = 3}, - [2589] = {.lex_state = 194}, + [2589] = {.lex_state = 195}, [2590] = {.lex_state = 83, .external_lex_state = 14}, [2591] = {.lex_state = 83, .external_lex_state = 14}, - [2592] = {.lex_state = 198, .external_lex_state = 22}, - [2593] = {.lex_state = 198, .external_lex_state = 22}, - [2594] = {.lex_state = 198, .external_lex_state = 16}, - [2595] = {.lex_state = 219, .external_lex_state = 16}, + [2592] = {.lex_state = 199, .external_lex_state = 22}, + [2593] = {.lex_state = 199, .external_lex_state = 22}, + [2594] = {.lex_state = 199, .external_lex_state = 16}, + [2595] = {.lex_state = 218, .external_lex_state = 16}, [2596] = {.lex_state = 83, .external_lex_state = 14}, - [2597] = {.lex_state = 217, .external_lex_state = 16}, - [2598] = {.lex_state = 83, .external_lex_state = 14}, - [2599] = {.lex_state = 221}, - [2600] = {.lex_state = 219, .external_lex_state = 16}, - [2601] = {.lex_state = 83, .external_lex_state = 14}, - [2602] = {.lex_state = 221}, - [2603] = {.lex_state = 219, .external_lex_state = 16}, - [2604] = {.lex_state = 221}, - [2605] = {.lex_state = 219, .external_lex_state = 16}, - [2606] = {.lex_state = 219, .external_lex_state = 16}, + [2597] = {.lex_state = 222}, + [2598] = {.lex_state = 220, .external_lex_state = 16}, + [2599] = {.lex_state = 83, .external_lex_state = 14}, + [2600] = {.lex_state = 222}, + [2601] = {.lex_state = 220, .external_lex_state = 16}, + [2602] = {.lex_state = 222}, + [2603] = {.lex_state = 220, .external_lex_state = 16}, + [2604] = {.lex_state = 220, .external_lex_state = 16}, + [2605] = {.lex_state = 83, .external_lex_state = 14}, + [2606] = {.lex_state = 220, .external_lex_state = 16}, [2607] = {.lex_state = 83, .external_lex_state = 14}, - [2608] = {.lex_state = 219, .external_lex_state = 16}, + [2608] = {.lex_state = 220, .external_lex_state = 16}, [2609] = {.lex_state = 83, .external_lex_state = 14}, - [2610] = {.lex_state = 203, .external_lex_state = 2}, + [2610] = {.lex_state = 204, .external_lex_state = 2}, [2611] = {.lex_state = 56, .external_lex_state = 2}, [2612] = {.lex_state = 83, .external_lex_state = 14}, - [2613] = {.lex_state = 203, .external_lex_state = 2}, + [2613] = {.lex_state = 204, .external_lex_state = 2}, [2614] = {.lex_state = 83, .external_lex_state = 10}, [2615] = {.lex_state = 83, .external_lex_state = 10}, - [2616] = {.lex_state = 198, .external_lex_state = 22}, - [2617] = {.lex_state = 198, .external_lex_state = 22}, - [2618] = {.lex_state = 198, .external_lex_state = 16}, - [2619] = {.lex_state = 219, .external_lex_state = 16}, + [2616] = {.lex_state = 199, .external_lex_state = 22}, + [2617] = {.lex_state = 199, .external_lex_state = 22}, + [2618] = {.lex_state = 199, .external_lex_state = 16}, + [2619] = {.lex_state = 218, .external_lex_state = 16}, [2620] = {.lex_state = 83, .external_lex_state = 10}, - [2621] = {.lex_state = 217, .external_lex_state = 16}, - [2622] = {.lex_state = 83, .external_lex_state = 10}, - [2623] = {.lex_state = 221}, - [2624] = {.lex_state = 219, .external_lex_state = 16}, - [2625] = {.lex_state = 83, .external_lex_state = 10}, - [2626] = {.lex_state = 221}, - [2627] = {.lex_state = 219, .external_lex_state = 16}, - [2628] = {.lex_state = 221}, - [2629] = {.lex_state = 219, .external_lex_state = 16}, - [2630] = {.lex_state = 219, .external_lex_state = 16}, + [2621] = {.lex_state = 222}, + [2622] = {.lex_state = 220, .external_lex_state = 16}, + [2623] = {.lex_state = 83, .external_lex_state = 10}, + [2624] = {.lex_state = 222}, + [2625] = {.lex_state = 220, .external_lex_state = 16}, + [2626] = {.lex_state = 222}, + [2627] = {.lex_state = 220, .external_lex_state = 16}, + [2628] = {.lex_state = 220, .external_lex_state = 16}, + [2629] = {.lex_state = 83, .external_lex_state = 10}, + [2630] = {.lex_state = 220, .external_lex_state = 16}, [2631] = {.lex_state = 83, .external_lex_state = 10}, - [2632] = {.lex_state = 219, .external_lex_state = 16}, + [2632] = {.lex_state = 220, .external_lex_state = 16}, [2633] = {.lex_state = 83, .external_lex_state = 10}, - [2634] = {.lex_state = 203, .external_lex_state = 2}, + [2634] = {.lex_state = 204, .external_lex_state = 2}, [2635] = {.lex_state = 56, .external_lex_state = 2}, [2636] = {.lex_state = 83, .external_lex_state = 10}, - [2637] = {.lex_state = 203, .external_lex_state = 2}, - [2638] = {.lex_state = 253, .external_lex_state = 5}, - [2639] = {.lex_state = 162, .external_lex_state = 2}, + [2637] = {.lex_state = 204, .external_lex_state = 2}, + [2638] = {.lex_state = 254, .external_lex_state = 5}, + [2639] = {.lex_state = 163, .external_lex_state = 2}, [2640] = {.lex_state = 73}, [2641] = {.lex_state = 83, .external_lex_state = 4}, - [2642] = {.lex_state = 113, .external_lex_state = 8}, - [2643] = {.lex_state = 162, .external_lex_state = 2}, + [2642] = {.lex_state = 114, .external_lex_state = 8}, + [2643] = {.lex_state = 163, .external_lex_state = 2}, [2644] = {.lex_state = 73}, [2645] = {.lex_state = 83, .external_lex_state = 4}, - [2646] = {.lex_state = 113, .external_lex_state = 8}, - [2647] = {.lex_state = 228, .external_lex_state = 23}, - [2648] = {.lex_state = 228, .external_lex_state = 23}, - [2649] = {.lex_state = 228, .external_lex_state = 23}, - [2650] = {.lex_state = 132, .external_lex_state = 10}, - [2651] = {.lex_state = 132, .external_lex_state = 10}, - [2652] = {.lex_state = 132, .external_lex_state = 10}, - [2653] = {.lex_state = 253, .external_lex_state = 23}, - [2654] = {.lex_state = 253, .external_lex_state = 23}, - [2655] = {.lex_state = 253, .external_lex_state = 23}, + [2646] = {.lex_state = 114, .external_lex_state = 8}, + [2647] = {.lex_state = 229, .external_lex_state = 23}, + [2648] = {.lex_state = 229, .external_lex_state = 23}, + [2649] = {.lex_state = 229, .external_lex_state = 23}, + [2650] = {.lex_state = 133, .external_lex_state = 10}, + [2651] = {.lex_state = 133, .external_lex_state = 10}, + [2652] = {.lex_state = 133, .external_lex_state = 10}, + [2653] = {.lex_state = 254, .external_lex_state = 23}, + [2654] = {.lex_state = 254, .external_lex_state = 23}, + [2655] = {.lex_state = 254, .external_lex_state = 23}, [2656] = {.lex_state = 83, .external_lex_state = 3}, [2657] = {.lex_state = 83, .external_lex_state = 14}, [2658] = {.lex_state = 83, .external_lex_state = 14}, - [2659] = {.lex_state = 83, .external_lex_state = 14}, - [2660] = {.lex_state = 219, .external_lex_state = 16}, - [2661] = {.lex_state = 198, .external_lex_state = 22}, - [2662] = {.lex_state = 198, .external_lex_state = 22}, - [2663] = {.lex_state = 198, .external_lex_state = 16}, - [2664] = {.lex_state = 219, .external_lex_state = 16}, + [2659] = {.lex_state = 199, .external_lex_state = 22}, + [2660] = {.lex_state = 199, .external_lex_state = 22}, + [2661] = {.lex_state = 199, .external_lex_state = 16}, + [2662] = {.lex_state = 220, .external_lex_state = 16}, + [2663] = {.lex_state = 83, .external_lex_state = 14}, + [2664] = {.lex_state = 220, .external_lex_state = 16}, [2665] = {.lex_state = 83, .external_lex_state = 14}, - [2666] = {.lex_state = 219, .external_lex_state = 16}, + [2666] = {.lex_state = 220, .external_lex_state = 16}, [2667] = {.lex_state = 83, .external_lex_state = 14}, - [2668] = {.lex_state = 219, .external_lex_state = 16}, + [2668] = {.lex_state = 220, .external_lex_state = 16}, [2669] = {.lex_state = 83, .external_lex_state = 14}, - [2670] = {.lex_state = 219, .external_lex_state = 16}, + [2670] = {.lex_state = 220, .external_lex_state = 16}, [2671] = {.lex_state = 83, .external_lex_state = 14}, - [2672] = {.lex_state = 219, .external_lex_state = 16}, + [2672] = {.lex_state = 220, .external_lex_state = 16}, [2673] = {.lex_state = 83, .external_lex_state = 14}, [2674] = {.lex_state = 83, .external_lex_state = 14}, [2675] = {.lex_state = 83, .external_lex_state = 10}, [2676] = {.lex_state = 83, .external_lex_state = 10}, - [2677] = {.lex_state = 83, .external_lex_state = 10}, - [2678] = {.lex_state = 219, .external_lex_state = 16}, - [2679] = {.lex_state = 198, .external_lex_state = 22}, - [2680] = {.lex_state = 198, .external_lex_state = 22}, - [2681] = {.lex_state = 198, .external_lex_state = 16}, - [2682] = {.lex_state = 219, .external_lex_state = 16}, + [2677] = {.lex_state = 199, .external_lex_state = 22}, + [2678] = {.lex_state = 199, .external_lex_state = 22}, + [2679] = {.lex_state = 199, .external_lex_state = 16}, + [2680] = {.lex_state = 220, .external_lex_state = 16}, + [2681] = {.lex_state = 83, .external_lex_state = 10}, + [2682] = {.lex_state = 220, .external_lex_state = 16}, [2683] = {.lex_state = 83, .external_lex_state = 10}, - [2684] = {.lex_state = 219, .external_lex_state = 16}, + [2684] = {.lex_state = 220, .external_lex_state = 16}, [2685] = {.lex_state = 83, .external_lex_state = 10}, - [2686] = {.lex_state = 219, .external_lex_state = 16}, + [2686] = {.lex_state = 220, .external_lex_state = 16}, [2687] = {.lex_state = 83, .external_lex_state = 10}, - [2688] = {.lex_state = 219, .external_lex_state = 16}, + [2688] = {.lex_state = 220, .external_lex_state = 16}, [2689] = {.lex_state = 83, .external_lex_state = 10}, - [2690] = {.lex_state = 219, .external_lex_state = 16}, + [2690] = {.lex_state = 220, .external_lex_state = 16}, [2691] = {.lex_state = 83, .external_lex_state = 10}, [2692] = {.lex_state = 83, .external_lex_state = 10}, - [2693] = {.lex_state = 162, .external_lex_state = 2}, - [2694] = {.lex_state = 162, .external_lex_state = 2}, - [2695] = {.lex_state = 132, .external_lex_state = 10}, - [2696] = {.lex_state = 253, .external_lex_state = 23}, + [2693] = {.lex_state = 163, .external_lex_state = 2}, + [2694] = {.lex_state = 163, .external_lex_state = 2}, + [2695] = {.lex_state = 133, .external_lex_state = 10}, + [2696] = {.lex_state = 254, .external_lex_state = 23}, [2697] = {.lex_state = 83, .external_lex_state = 14}, [2698] = {.lex_state = 83, .external_lex_state = 14}, [2699] = {.lex_state = 83, .external_lex_state = 14}, - [2700] = {.lex_state = 83, .external_lex_state = 14}, - [2701] = {.lex_state = 219, .external_lex_state = 16}, - [2702] = {.lex_state = 83, .external_lex_state = 14}, - [2703] = {.lex_state = 219, .external_lex_state = 16}, - [2704] = {.lex_state = 83, .external_lex_state = 14}, - [2705] = {.lex_state = 219, .external_lex_state = 16}, + [2700] = {.lex_state = 220, .external_lex_state = 16}, + [2701] = {.lex_state = 83, .external_lex_state = 14}, + [2702] = {.lex_state = 220, .external_lex_state = 16}, + [2703] = {.lex_state = 83, .external_lex_state = 14}, + [2704] = {.lex_state = 220, .external_lex_state = 16}, + [2705] = {.lex_state = 83, .external_lex_state = 14}, [2706] = {.lex_state = 83, .external_lex_state = 14}, [2707] = {.lex_state = 83, .external_lex_state = 14}, [2708] = {.lex_state = 83, .external_lex_state = 10}, [2709] = {.lex_state = 83, .external_lex_state = 10}, [2710] = {.lex_state = 83, .external_lex_state = 10}, - [2711] = {.lex_state = 83, .external_lex_state = 10}, - [2712] = {.lex_state = 219, .external_lex_state = 16}, - [2713] = {.lex_state = 83, .external_lex_state = 10}, - [2714] = {.lex_state = 219, .external_lex_state = 16}, - [2715] = {.lex_state = 83, .external_lex_state = 10}, - [2716] = {.lex_state = 219, .external_lex_state = 16}, + [2711] = {.lex_state = 220, .external_lex_state = 16}, + [2712] = {.lex_state = 83, .external_lex_state = 10}, + [2713] = {.lex_state = 220, .external_lex_state = 16}, + [2714] = {.lex_state = 83, .external_lex_state = 10}, + [2715] = {.lex_state = 220, .external_lex_state = 16}, + [2716] = {.lex_state = 83, .external_lex_state = 10}, [2717] = {.lex_state = 83, .external_lex_state = 10}, [2718] = {.lex_state = 83, .external_lex_state = 10}, [2719] = {.lex_state = 83, .external_lex_state = 14}, @@ -8611,14 +8616,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [20] = { [sym_subscript] = STATE(142), [sym_variable_name] = ACTIONS(253), - [anon_sym_DOLLAR] = ACTIONS(255), - [anon_sym_POUND] = ACTIONS(257), - [anon_sym_DASH] = ACTIONS(255), + [anon_sym_BANG] = ACTIONS(255), + [anon_sym_DOLLAR] = ACTIONS(257), + [anon_sym_POUND] = ACTIONS(255), + [anon_sym_DASH] = ACTIONS(257), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(259), - [anon_sym_STAR] = ACTIONS(255), - [anon_sym_AT] = ACTIONS(255), - [anon_sym_QMARK] = ACTIONS(255), + [anon_sym_STAR] = ACTIONS(257), + [anon_sym_AT] = ACTIONS(257), + [anon_sym_QMARK] = ACTIONS(257), [anon_sym_0] = ACTIONS(261), [anon_sym__] = ACTIONS(261), }, @@ -9322,14 +9328,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [47] = { [sym_subscript] = STATE(231), [sym_variable_name] = ACTIONS(423), - [anon_sym_DOLLAR] = ACTIONS(425), - [anon_sym_POUND] = ACTIONS(427), - [anon_sym_DASH] = ACTIONS(425), + [anon_sym_BANG] = ACTIONS(425), + [anon_sym_DOLLAR] = ACTIONS(427), + [anon_sym_POUND] = ACTIONS(425), + [anon_sym_DASH] = ACTIONS(427), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(429), - [anon_sym_STAR] = ACTIONS(425), - [anon_sym_AT] = ACTIONS(425), - [anon_sym_QMARK] = ACTIONS(425), + [anon_sym_STAR] = ACTIONS(427), + [anon_sym_AT] = ACTIONS(427), + [anon_sym_QMARK] = ACTIONS(427), [anon_sym_0] = ACTIONS(431), [anon_sym__] = ACTIONS(431), }, @@ -10235,14 +10242,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [79] = { [sym_subscript] = STATE(293), [sym_variable_name] = ACTIONS(515), - [anon_sym_DOLLAR] = ACTIONS(517), - [anon_sym_POUND] = ACTIONS(519), - [anon_sym_DASH] = ACTIONS(517), + [anon_sym_BANG] = ACTIONS(517), + [anon_sym_DOLLAR] = ACTIONS(519), + [anon_sym_POUND] = ACTIONS(517), + [anon_sym_DASH] = ACTIONS(519), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(521), - [anon_sym_STAR] = ACTIONS(517), - [anon_sym_AT] = ACTIONS(517), - [anon_sym_QMARK] = ACTIONS(517), + [anon_sym_STAR] = ACTIONS(519), + [anon_sym_AT] = ACTIONS(519), + [anon_sym_QMARK] = ACTIONS(519), [anon_sym_0] = ACTIONS(523), [anon_sym__] = ACTIONS(523), }, @@ -10572,14 +10580,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [90] = { [sym_subscript] = STATE(320), [sym_variable_name] = ACTIONS(547), - [anon_sym_DOLLAR] = ACTIONS(549), - [anon_sym_POUND] = ACTIONS(551), - [anon_sym_DASH] = ACTIONS(549), + [anon_sym_BANG] = ACTIONS(549), + [anon_sym_DOLLAR] = ACTIONS(551), + [anon_sym_POUND] = ACTIONS(549), + [anon_sym_DASH] = ACTIONS(551), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(553), - [anon_sym_STAR] = ACTIONS(549), - [anon_sym_AT] = ACTIONS(549), - [anon_sym_QMARK] = ACTIONS(549), + [anon_sym_STAR] = ACTIONS(551), + [anon_sym_AT] = ACTIONS(551), + [anon_sym_QMARK] = ACTIONS(551), [anon_sym_0] = ACTIONS(555), [anon_sym__] = ACTIONS(555), }, @@ -10881,14 +10890,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [100] = { [sym_subscript] = STATE(345), [sym_variable_name] = ACTIONS(589), - [anon_sym_DOLLAR] = ACTIONS(591), - [anon_sym_POUND] = ACTIONS(593), - [anon_sym_DASH] = ACTIONS(591), + [anon_sym_BANG] = ACTIONS(591), + [anon_sym_DOLLAR] = ACTIONS(593), + [anon_sym_POUND] = ACTIONS(591), + [anon_sym_DASH] = ACTIONS(593), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(595), - [anon_sym_STAR] = ACTIONS(591), - [anon_sym_AT] = ACTIONS(591), - [anon_sym_QMARK] = ACTIONS(591), + [anon_sym_STAR] = ACTIONS(593), + [anon_sym_AT] = ACTIONS(593), + [anon_sym_QMARK] = ACTIONS(593), [anon_sym_0] = ACTIONS(597), [anon_sym__] = ACTIONS(597), }, @@ -11231,14 +11241,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [111] = { [sym_subscript] = STATE(368), [sym_variable_name] = ACTIONS(631), - [anon_sym_DOLLAR] = ACTIONS(633), - [anon_sym_POUND] = ACTIONS(635), - [anon_sym_DASH] = ACTIONS(633), + [anon_sym_BANG] = ACTIONS(633), + [anon_sym_DOLLAR] = ACTIONS(635), + [anon_sym_POUND] = ACTIONS(633), + [anon_sym_DASH] = ACTIONS(635), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(637), - [anon_sym_STAR] = ACTIONS(633), - [anon_sym_AT] = ACTIONS(633), - [anon_sym_QMARK] = ACTIONS(633), + [anon_sym_STAR] = ACTIONS(635), + [anon_sym_AT] = ACTIONS(635), + [anon_sym_QMARK] = ACTIONS(635), [anon_sym_0] = ACTIONS(639), [anon_sym__] = ACTIONS(639), }, @@ -11572,14 +11583,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [121] = { [sym_subscript] = STATE(391), [sym_variable_name] = ACTIONS(671), - [anon_sym_DOLLAR] = ACTIONS(673), - [anon_sym_POUND] = ACTIONS(675), - [anon_sym_DASH] = ACTIONS(673), + [anon_sym_BANG] = ACTIONS(673), + [anon_sym_DOLLAR] = ACTIONS(675), + [anon_sym_POUND] = ACTIONS(673), + [anon_sym_DASH] = ACTIONS(675), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(677), - [anon_sym_STAR] = ACTIONS(673), - [anon_sym_AT] = ACTIONS(673), - [anon_sym_QMARK] = ACTIONS(673), + [anon_sym_STAR] = ACTIONS(675), + [anon_sym_AT] = ACTIONS(675), + [anon_sym_QMARK] = ACTIONS(675), [anon_sym_0] = ACTIONS(679), [anon_sym__] = ACTIONS(679), }, @@ -11926,14 +11938,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [131] = { [sym_subscript] = STATE(412), [sym_variable_name] = ACTIONS(707), - [anon_sym_DOLLAR] = ACTIONS(709), - [anon_sym_POUND] = ACTIONS(711), - [anon_sym_DASH] = ACTIONS(709), + [anon_sym_BANG] = ACTIONS(709), + [anon_sym_DOLLAR] = ACTIONS(711), + [anon_sym_POUND] = ACTIONS(709), + [anon_sym_DASH] = ACTIONS(711), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(713), - [anon_sym_STAR] = ACTIONS(709), - [anon_sym_AT] = ACTIONS(709), - [anon_sym_QMARK] = ACTIONS(709), + [anon_sym_STAR] = ACTIONS(711), + [anon_sym_AT] = ACTIONS(711), + [anon_sym_QMARK] = ACTIONS(711), [anon_sym_0] = ACTIONS(715), [anon_sym__] = ACTIONS(715), }, @@ -12205,107 +12218,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [139] = { - [sym_concatenation] = STATE(433), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(433), - [anon_sym_RBRACE] = ACTIONS(735), - [anon_sym_EQ] = ACTIONS(737), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(747), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(751), - [anon_sym_COLON] = ACTIONS(737), - [anon_sym_COLON_QMARK] = ACTIONS(737), - [anon_sym_COLON_DASH] = ACTIONS(737), - [anon_sym_PERCENT] = ACTIONS(737), + [sym_subscript] = STATE(426), + [sym_variable_name] = ACTIONS(735), + [anon_sym_DOLLAR] = ACTIONS(737), [anon_sym_DASH] = ACTIONS(737), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(739), + [anon_sym_STAR] = ACTIONS(737), + [anon_sym_AT] = ACTIONS(737), + [anon_sym_QMARK] = ACTIONS(737), + [anon_sym_0] = ACTIONS(741), + [anon_sym__] = ACTIONS(741), }, [140] = { - [sym_subscript] = STATE(437), - [sym_variable_name] = ACTIONS(761), - [anon_sym_DOLLAR] = ACTIONS(763), - [anon_sym_DASH] = ACTIONS(763), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(765), - [anon_sym_STAR] = ACTIONS(763), - [anon_sym_AT] = ACTIONS(763), - [anon_sym_QMARK] = ACTIONS(763), - [anon_sym_0] = ACTIONS(767), - [anon_sym__] = ACTIONS(767), + [sym_concatenation] = STATE(437), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(437), + [anon_sym_RBRACE] = ACTIONS(743), + [anon_sym_EQ] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(755), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(759), + [anon_sym_COLON] = ACTIONS(745), + [anon_sym_COLON_QMARK] = ACTIONS(745), + [anon_sym_COLON_DASH] = ACTIONS(745), + [anon_sym_PERCENT] = ACTIONS(745), + [anon_sym_DASH] = ACTIONS(745), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [141] = { [sym_concatenation] = STATE(440), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(440), [anon_sym_RBRACE] = ACTIONS(769), [anon_sym_EQ] = ACTIONS(771), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(773), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(775), [anon_sym_COLON] = ACTIONS(771), [anon_sym_COLON_QMARK] = ACTIONS(771), [anon_sym_COLON_DASH] = ACTIONS(771), [anon_sym_PERCENT] = ACTIONS(771), [anon_sym_DASH] = ACTIONS(771), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [142] = { [sym_concatenation] = STATE(443), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(443), [anon_sym_RBRACE] = ACTIONS(777), [anon_sym_EQ] = ACTIONS(779), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(781), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(783), [anon_sym_COLON] = ACTIONS(779), [anon_sym_COLON_QMARK] = ACTIONS(779), [anon_sym_COLON_DASH] = ACTIONS(779), [anon_sym_PERCENT] = ACTIONS(779), [anon_sym_DASH] = ACTIONS(779), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [143] = { [anon_sym_PIPE] = ACTIONS(453), @@ -13803,14 +13816,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [193] = { [sym_subscript] = STATE(523), [sym_variable_name] = ACTIONS(1013), - [anon_sym_DOLLAR] = ACTIONS(1015), - [anon_sym_POUND] = ACTIONS(1017), - [anon_sym_DASH] = ACTIONS(1015), + [anon_sym_BANG] = ACTIONS(1015), + [anon_sym_DOLLAR] = ACTIONS(1017), + [anon_sym_POUND] = ACTIONS(1015), + [anon_sym_DASH] = ACTIONS(1017), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1019), - [anon_sym_STAR] = ACTIONS(1015), - [anon_sym_AT] = ACTIONS(1015), - [anon_sym_QMARK] = ACTIONS(1015), + [anon_sym_STAR] = ACTIONS(1017), + [anon_sym_AT] = ACTIONS(1017), + [anon_sym_QMARK] = ACTIONS(1017), [anon_sym_0] = ACTIONS(1021), [anon_sym__] = ACTIONS(1021), }, @@ -14164,14 +14178,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [204] = { [sym_subscript] = STATE(549), [sym_variable_name] = ACTIONS(1059), - [anon_sym_DOLLAR] = ACTIONS(1061), - [anon_sym_POUND] = ACTIONS(1063), - [anon_sym_DASH] = ACTIONS(1061), + [anon_sym_BANG] = ACTIONS(1061), + [anon_sym_DOLLAR] = ACTIONS(1063), + [anon_sym_POUND] = ACTIONS(1061), + [anon_sym_DASH] = ACTIONS(1063), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1065), - [anon_sym_STAR] = ACTIONS(1061), - [anon_sym_AT] = ACTIONS(1061), - [anon_sym_QMARK] = ACTIONS(1061), + [anon_sym_STAR] = ACTIONS(1063), + [anon_sym_AT] = ACTIONS(1063), + [anon_sym_QMARK] = ACTIONS(1063), [anon_sym_0] = ACTIONS(1067), [anon_sym__] = ACTIONS(1067), }, @@ -14748,107 +14763,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [228] = { - [sym_concatenation] = STATE(589), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(589), - [anon_sym_RBRACE] = ACTIONS(1115), - [anon_sym_EQ] = ACTIONS(1117), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1119), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1121), - [anon_sym_COLON] = ACTIONS(1117), - [anon_sym_COLON_QMARK] = ACTIONS(1117), - [anon_sym_COLON_DASH] = ACTIONS(1117), - [anon_sym_PERCENT] = ACTIONS(1117), + [sym_subscript] = STATE(590), + [sym_variable_name] = ACTIONS(1115), + [anon_sym_DOLLAR] = ACTIONS(1117), [anon_sym_DASH] = ACTIONS(1117), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1119), + [anon_sym_STAR] = ACTIONS(1117), + [anon_sym_AT] = ACTIONS(1117), + [anon_sym_QMARK] = ACTIONS(1117), + [anon_sym_0] = ACTIONS(1121), + [anon_sym__] = ACTIONS(1121), }, [229] = { - [sym_subscript] = STATE(593), - [sym_variable_name] = ACTIONS(1123), - [anon_sym_DOLLAR] = ACTIONS(1125), + [sym_concatenation] = STATE(593), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(593), + [anon_sym_RBRACE] = ACTIONS(1123), + [anon_sym_EQ] = ACTIONS(1125), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1127), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1129), + [anon_sym_COLON] = ACTIONS(1125), + [anon_sym_COLON_QMARK] = ACTIONS(1125), + [anon_sym_COLON_DASH] = ACTIONS(1125), + [anon_sym_PERCENT] = ACTIONS(1125), [anon_sym_DASH] = ACTIONS(1125), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1127), - [anon_sym_STAR] = ACTIONS(1125), - [anon_sym_AT] = ACTIONS(1125), - [anon_sym_QMARK] = ACTIONS(1125), - [anon_sym_0] = ACTIONS(1129), - [anon_sym__] = ACTIONS(1129), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [230] = { [sym_concatenation] = STATE(596), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(596), [anon_sym_RBRACE] = ACTIONS(1131), [anon_sym_EQ] = ACTIONS(1133), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1135), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1137), [anon_sym_COLON] = ACTIONS(1133), [anon_sym_COLON_QMARK] = ACTIONS(1133), [anon_sym_COLON_DASH] = ACTIONS(1133), [anon_sym_PERCENT] = ACTIONS(1133), [anon_sym_DASH] = ACTIONS(1133), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [231] = { [sym_concatenation] = STATE(599), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(599), [anon_sym_RBRACE] = ACTIONS(1139), [anon_sym_EQ] = ACTIONS(1141), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1143), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1145), [anon_sym_COLON] = ACTIONS(1141), [anon_sym_COLON_QMARK] = ACTIONS(1141), [anon_sym_COLON_DASH] = ACTIONS(1141), [anon_sym_PERCENT] = ACTIONS(1141), [anon_sym_DASH] = ACTIONS(1141), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [232] = { [anon_sym_PIPE] = ACTIONS(453), @@ -16346,107 +16361,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [290] = { - [sym_concatenation] = STATE(663), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(663), - [anon_sym_RBRACE] = ACTIONS(1241), - [anon_sym_EQ] = ACTIONS(1243), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1245), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1247), - [anon_sym_COLON] = ACTIONS(1243), - [anon_sym_COLON_QMARK] = ACTIONS(1243), - [anon_sym_COLON_DASH] = ACTIONS(1243), - [anon_sym_PERCENT] = ACTIONS(1243), + [sym_subscript] = STATE(664), + [sym_variable_name] = ACTIONS(1241), + [anon_sym_DOLLAR] = ACTIONS(1243), [anon_sym_DASH] = ACTIONS(1243), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1245), + [anon_sym_STAR] = ACTIONS(1243), + [anon_sym_AT] = ACTIONS(1243), + [anon_sym_QMARK] = ACTIONS(1243), + [anon_sym_0] = ACTIONS(1247), + [anon_sym__] = ACTIONS(1247), }, [291] = { - [sym_subscript] = STATE(667), - [sym_variable_name] = ACTIONS(1249), - [anon_sym_DOLLAR] = ACTIONS(1251), + [sym_concatenation] = STATE(667), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(667), + [anon_sym_RBRACE] = ACTIONS(1249), + [anon_sym_EQ] = ACTIONS(1251), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1253), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1255), + [anon_sym_COLON] = ACTIONS(1251), + [anon_sym_COLON_QMARK] = ACTIONS(1251), + [anon_sym_COLON_DASH] = ACTIONS(1251), + [anon_sym_PERCENT] = ACTIONS(1251), [anon_sym_DASH] = ACTIONS(1251), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1253), - [anon_sym_STAR] = ACTIONS(1251), - [anon_sym_AT] = ACTIONS(1251), - [anon_sym_QMARK] = ACTIONS(1251), - [anon_sym_0] = ACTIONS(1255), - [anon_sym__] = ACTIONS(1255), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [292] = { [sym_concatenation] = STATE(670), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(670), [anon_sym_RBRACE] = ACTIONS(1257), [anon_sym_EQ] = ACTIONS(1259), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1261), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1263), [anon_sym_COLON] = ACTIONS(1259), [anon_sym_COLON_QMARK] = ACTIONS(1259), [anon_sym_COLON_DASH] = ACTIONS(1259), [anon_sym_PERCENT] = ACTIONS(1259), [anon_sym_DASH] = ACTIONS(1259), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [293] = { [sym_concatenation] = STATE(673), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(673), [anon_sym_RBRACE] = ACTIONS(1265), [anon_sym_EQ] = ACTIONS(1267), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1269), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1271), [anon_sym_COLON] = ACTIONS(1267), [anon_sym_COLON_QMARK] = ACTIONS(1267), [anon_sym_COLON_DASH] = ACTIONS(1267), [anon_sym_PERCENT] = ACTIONS(1267), [anon_sym_DASH] = ACTIONS(1267), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [294] = { [anon_sym_PIPE] = ACTIONS(453), @@ -17012,107 +17027,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [317] = { - [sym_concatenation] = STATE(700), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(700), - [anon_sym_RBRACE] = ACTIONS(1327), - [anon_sym_EQ] = ACTIONS(1329), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1331), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1333), - [anon_sym_COLON] = ACTIONS(1329), - [anon_sym_COLON_QMARK] = ACTIONS(1329), - [anon_sym_COLON_DASH] = ACTIONS(1329), - [anon_sym_PERCENT] = ACTIONS(1329), + [sym_subscript] = STATE(701), + [sym_variable_name] = ACTIONS(1327), + [anon_sym_DOLLAR] = ACTIONS(1329), [anon_sym_DASH] = ACTIONS(1329), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1331), + [anon_sym_STAR] = ACTIONS(1329), + [anon_sym_AT] = ACTIONS(1329), + [anon_sym_QMARK] = ACTIONS(1329), + [anon_sym_0] = ACTIONS(1333), + [anon_sym__] = ACTIONS(1333), }, [318] = { - [sym_subscript] = STATE(704), - [sym_variable_name] = ACTIONS(1335), - [anon_sym_DOLLAR] = ACTIONS(1337), + [sym_concatenation] = STATE(704), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(704), + [anon_sym_RBRACE] = ACTIONS(1335), + [anon_sym_EQ] = ACTIONS(1337), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1339), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1341), + [anon_sym_COLON] = ACTIONS(1337), + [anon_sym_COLON_QMARK] = ACTIONS(1337), + [anon_sym_COLON_DASH] = ACTIONS(1337), + [anon_sym_PERCENT] = ACTIONS(1337), [anon_sym_DASH] = ACTIONS(1337), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1339), - [anon_sym_STAR] = ACTIONS(1337), - [anon_sym_AT] = ACTIONS(1337), - [anon_sym_QMARK] = ACTIONS(1337), - [anon_sym_0] = ACTIONS(1341), - [anon_sym__] = ACTIONS(1341), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [319] = { [sym_concatenation] = STATE(707), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(707), [anon_sym_RBRACE] = ACTIONS(1343), [anon_sym_EQ] = ACTIONS(1345), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1347), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1349), [anon_sym_COLON] = ACTIONS(1345), [anon_sym_COLON_QMARK] = ACTIONS(1345), [anon_sym_COLON_DASH] = ACTIONS(1345), [anon_sym_PERCENT] = ACTIONS(1345), [anon_sym_DASH] = ACTIONS(1345), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [320] = { [sym_concatenation] = STATE(710), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(710), [anon_sym_RBRACE] = ACTIONS(1351), [anon_sym_EQ] = ACTIONS(1353), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1355), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1357), [anon_sym_COLON] = ACTIONS(1353), [anon_sym_COLON_QMARK] = ACTIONS(1353), [anon_sym_COLON_DASH] = ACTIONS(1353), [anon_sym_PERCENT] = ACTIONS(1353), [anon_sym_DASH] = ACTIONS(1353), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [321] = { [anon_sym_PIPE] = ACTIONS(453), @@ -17695,107 +17710,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [342] = { - [sym_concatenation] = STATE(735), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(735), - [anon_sym_RBRACE] = ACTIONS(1415), - [anon_sym_EQ] = ACTIONS(1417), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1419), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1421), - [anon_sym_COLON] = ACTIONS(1417), - [anon_sym_COLON_QMARK] = ACTIONS(1417), - [anon_sym_COLON_DASH] = ACTIONS(1417), - [anon_sym_PERCENT] = ACTIONS(1417), + [sym_subscript] = STATE(736), + [sym_variable_name] = ACTIONS(1415), + [anon_sym_DOLLAR] = ACTIONS(1417), [anon_sym_DASH] = ACTIONS(1417), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1419), + [anon_sym_STAR] = ACTIONS(1417), + [anon_sym_AT] = ACTIONS(1417), + [anon_sym_QMARK] = ACTIONS(1417), + [anon_sym_0] = ACTIONS(1421), + [anon_sym__] = ACTIONS(1421), }, [343] = { - [sym_subscript] = STATE(739), - [sym_variable_name] = ACTIONS(1423), - [anon_sym_DOLLAR] = ACTIONS(1425), + [sym_concatenation] = STATE(739), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(739), + [anon_sym_RBRACE] = ACTIONS(1423), + [anon_sym_EQ] = ACTIONS(1425), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1427), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1429), + [anon_sym_COLON] = ACTIONS(1425), + [anon_sym_COLON_QMARK] = ACTIONS(1425), + [anon_sym_COLON_DASH] = ACTIONS(1425), + [anon_sym_PERCENT] = ACTIONS(1425), [anon_sym_DASH] = ACTIONS(1425), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1427), - [anon_sym_STAR] = ACTIONS(1425), - [anon_sym_AT] = ACTIONS(1425), - [anon_sym_QMARK] = ACTIONS(1425), - [anon_sym_0] = ACTIONS(1429), - [anon_sym__] = ACTIONS(1429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [344] = { [sym_concatenation] = STATE(742), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(742), [anon_sym_RBRACE] = ACTIONS(1431), [anon_sym_EQ] = ACTIONS(1433), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1435), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1437), [anon_sym_COLON] = ACTIONS(1433), [anon_sym_COLON_QMARK] = ACTIONS(1433), [anon_sym_COLON_DASH] = ACTIONS(1433), [anon_sym_PERCENT] = ACTIONS(1433), [anon_sym_DASH] = ACTIONS(1433), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [345] = { [sym_concatenation] = STATE(745), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(745), [anon_sym_RBRACE] = ACTIONS(1439), [anon_sym_EQ] = ACTIONS(1441), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1443), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1445), [anon_sym_COLON] = ACTIONS(1441), [anon_sym_COLON_QMARK] = ACTIONS(1441), [anon_sym_COLON_DASH] = ACTIONS(1441), [anon_sym_PERCENT] = ACTIONS(1441), [anon_sym_DASH] = ACTIONS(1441), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [346] = { [anon_sym_PIPE] = ACTIONS(453), @@ -18328,107 +18343,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [365] = { - [sym_concatenation] = STATE(764), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(764), - [anon_sym_RBRACE] = ACTIONS(1513), - [anon_sym_EQ] = ACTIONS(1515), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1519), - [anon_sym_COLON] = ACTIONS(1515), - [anon_sym_COLON_QMARK] = ACTIONS(1515), - [anon_sym_COLON_DASH] = ACTIONS(1515), - [anon_sym_PERCENT] = ACTIONS(1515), + [sym_subscript] = STATE(765), + [sym_variable_name] = ACTIONS(1513), + [anon_sym_DOLLAR] = ACTIONS(1515), [anon_sym_DASH] = ACTIONS(1515), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1517), + [anon_sym_STAR] = ACTIONS(1515), + [anon_sym_AT] = ACTIONS(1515), + [anon_sym_QMARK] = ACTIONS(1515), + [anon_sym_0] = ACTIONS(1519), + [anon_sym__] = ACTIONS(1519), }, [366] = { - [sym_subscript] = STATE(768), - [sym_variable_name] = ACTIONS(1521), - [anon_sym_DOLLAR] = ACTIONS(1523), + [sym_concatenation] = STATE(768), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(768), + [anon_sym_RBRACE] = ACTIONS(1521), + [anon_sym_EQ] = ACTIONS(1523), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1527), + [anon_sym_COLON] = ACTIONS(1523), + [anon_sym_COLON_QMARK] = ACTIONS(1523), + [anon_sym_COLON_DASH] = ACTIONS(1523), + [anon_sym_PERCENT] = ACTIONS(1523), [anon_sym_DASH] = ACTIONS(1523), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1525), - [anon_sym_STAR] = ACTIONS(1523), - [anon_sym_AT] = ACTIONS(1523), - [anon_sym_QMARK] = ACTIONS(1523), - [anon_sym_0] = ACTIONS(1527), - [anon_sym__] = ACTIONS(1527), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [367] = { [sym_concatenation] = STATE(771), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(771), [anon_sym_RBRACE] = ACTIONS(1529), [anon_sym_EQ] = ACTIONS(1531), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1533), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1535), [anon_sym_COLON] = ACTIONS(1531), [anon_sym_COLON_QMARK] = ACTIONS(1531), [anon_sym_COLON_DASH] = ACTIONS(1531), [anon_sym_PERCENT] = ACTIONS(1531), [anon_sym_DASH] = ACTIONS(1531), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [368] = { [sym_concatenation] = STATE(774), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(774), [anon_sym_RBRACE] = ACTIONS(1537), [anon_sym_EQ] = ACTIONS(1539), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1541), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1543), [anon_sym_COLON] = ACTIONS(1539), [anon_sym_COLON_QMARK] = ACTIONS(1539), [anon_sym_COLON_DASH] = ACTIONS(1539), [anon_sym_PERCENT] = ACTIONS(1539), [anon_sym_DASH] = ACTIONS(1539), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [369] = { [anon_sym_PIPE] = ACTIONS(453), @@ -18954,107 +18969,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [388] = { - [sym_concatenation] = STATE(793), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(793), - [anon_sym_RBRACE] = ACTIONS(1600), - [anon_sym_EQ] = ACTIONS(1602), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1604), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1606), - [anon_sym_COLON] = ACTIONS(1602), - [anon_sym_COLON_QMARK] = ACTIONS(1602), - [anon_sym_COLON_DASH] = ACTIONS(1602), - [anon_sym_PERCENT] = ACTIONS(1602), + [sym_subscript] = STATE(794), + [sym_variable_name] = ACTIONS(1600), + [anon_sym_DOLLAR] = ACTIONS(1602), [anon_sym_DASH] = ACTIONS(1602), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1604), + [anon_sym_STAR] = ACTIONS(1602), + [anon_sym_AT] = ACTIONS(1602), + [anon_sym_QMARK] = ACTIONS(1602), + [anon_sym_0] = ACTIONS(1606), + [anon_sym__] = ACTIONS(1606), }, [389] = { - [sym_subscript] = STATE(797), - [sym_variable_name] = ACTIONS(1608), - [anon_sym_DOLLAR] = ACTIONS(1610), + [sym_concatenation] = STATE(797), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(797), + [anon_sym_RBRACE] = ACTIONS(1608), + [anon_sym_EQ] = ACTIONS(1610), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1612), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1614), + [anon_sym_COLON] = ACTIONS(1610), + [anon_sym_COLON_QMARK] = ACTIONS(1610), + [anon_sym_COLON_DASH] = ACTIONS(1610), + [anon_sym_PERCENT] = ACTIONS(1610), [anon_sym_DASH] = ACTIONS(1610), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1612), - [anon_sym_STAR] = ACTIONS(1610), - [anon_sym_AT] = ACTIONS(1610), - [anon_sym_QMARK] = ACTIONS(1610), - [anon_sym_0] = ACTIONS(1614), - [anon_sym__] = ACTIONS(1614), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [390] = { [sym_concatenation] = STATE(800), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(800), [anon_sym_RBRACE] = ACTIONS(1616), [anon_sym_EQ] = ACTIONS(1618), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1620), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1622), [anon_sym_COLON] = ACTIONS(1618), [anon_sym_COLON_QMARK] = ACTIONS(1618), [anon_sym_COLON_DASH] = ACTIONS(1618), [anon_sym_PERCENT] = ACTIONS(1618), [anon_sym_DASH] = ACTIONS(1618), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [391] = { [sym_concatenation] = STATE(803), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(803), [anon_sym_RBRACE] = ACTIONS(1624), [anon_sym_EQ] = ACTIONS(1626), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1628), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1630), [anon_sym_COLON] = ACTIONS(1626), [anon_sym_COLON_QMARK] = ACTIONS(1626), [anon_sym_COLON_DASH] = ACTIONS(1626), [anon_sym_PERCENT] = ACTIONS(1626), [anon_sym_DASH] = ACTIONS(1626), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [392] = { [anon_sym_PIPE] = ACTIONS(453), @@ -19543,107 +19558,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [409] = { - [sym_concatenation] = STATE(819), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(819), - [anon_sym_RBRACE] = ACTIONS(1667), - [anon_sym_EQ] = ACTIONS(1669), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1671), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1673), - [anon_sym_COLON] = ACTIONS(1669), - [anon_sym_COLON_QMARK] = ACTIONS(1669), - [anon_sym_COLON_DASH] = ACTIONS(1669), - [anon_sym_PERCENT] = ACTIONS(1669), + [sym_subscript] = STATE(820), + [sym_variable_name] = ACTIONS(1667), + [anon_sym_DOLLAR] = ACTIONS(1669), [anon_sym_DASH] = ACTIONS(1669), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1671), + [anon_sym_STAR] = ACTIONS(1669), + [anon_sym_AT] = ACTIONS(1669), + [anon_sym_QMARK] = ACTIONS(1669), + [anon_sym_0] = ACTIONS(1673), + [anon_sym__] = ACTIONS(1673), }, [410] = { - [sym_subscript] = STATE(823), - [sym_variable_name] = ACTIONS(1675), - [anon_sym_DOLLAR] = ACTIONS(1677), + [sym_concatenation] = STATE(823), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(823), + [anon_sym_RBRACE] = ACTIONS(1675), + [anon_sym_EQ] = ACTIONS(1677), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1679), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1681), + [anon_sym_COLON] = ACTIONS(1677), + [anon_sym_COLON_QMARK] = ACTIONS(1677), + [anon_sym_COLON_DASH] = ACTIONS(1677), + [anon_sym_PERCENT] = ACTIONS(1677), [anon_sym_DASH] = ACTIONS(1677), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1679), - [anon_sym_STAR] = ACTIONS(1677), - [anon_sym_AT] = ACTIONS(1677), - [anon_sym_QMARK] = ACTIONS(1677), - [anon_sym_0] = ACTIONS(1681), - [anon_sym__] = ACTIONS(1681), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [411] = { [sym_concatenation] = STATE(826), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(826), [anon_sym_RBRACE] = ACTIONS(1683), [anon_sym_EQ] = ACTIONS(1685), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1687), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1689), [anon_sym_COLON] = ACTIONS(1685), [anon_sym_COLON_QMARK] = ACTIONS(1685), [anon_sym_COLON_DASH] = ACTIONS(1685), [anon_sym_PERCENT] = ACTIONS(1685), [anon_sym_DASH] = ACTIONS(1685), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [412] = { [sym_concatenation] = STATE(829), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(829), [anon_sym_RBRACE] = ACTIONS(1691), [anon_sym_EQ] = ACTIONS(1693), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1695), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(1697), [anon_sym_COLON] = ACTIONS(1693), [anon_sym_COLON_QMARK] = ACTIONS(1693), [anon_sym_COLON_DASH] = ACTIONS(1693), [anon_sym_PERCENT] = ACTIONS(1693), [anon_sym_DASH] = ACTIONS(1693), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [413] = { [anon_sym_PIPE] = ACTIONS(453), @@ -19931,154 +19946,250 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(1738), }, [423] = { - [sym__simple_heredoc_body] = ACTIONS(1748), - [sym__heredoc_body_beginning] = ACTIONS(1748), - [sym_file_descriptor] = ACTIONS(1748), - [sym__concat] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_EQ_TILDE] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1750), - [anon_sym_AMP_GT] = ACTIONS(1750), - [anon_sym_AMP_GT_GT] = ACTIONS(1750), - [anon_sym_LT_AMP] = ACTIONS(1750), - [anon_sym_GT_AMP] = ACTIONS(1750), - [anon_sym_LT_LT] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(1750), - [anon_sym_LT_LT_LT] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(1748), + [sym_comment] = ACTIONS(53), }, [424] = { - [aux_sym_concatenation_repeat1] = STATE(853), - [sym__concat] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1754), - [anon_sym_EQ] = ACTIONS(1756), - [sym__special_characters] = ACTIONS(1756), - [anon_sym_DQUOTE] = ACTIONS(1754), - [anon_sym_DOLLAR] = ACTIONS(1756), - [sym_raw_string] = ACTIONS(1754), + [sym_concatenation] = STATE(855), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(855), + [anon_sym_RBRACE] = ACTIONS(1750), + [anon_sym_EQ] = ACTIONS(1752), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(1754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1754), - [anon_sym_COLON] = ACTIONS(1756), - [anon_sym_COLON_QMARK] = ACTIONS(1756), - [anon_sym_COLON_DASH] = ACTIONS(1756), - [anon_sym_PERCENT] = ACTIONS(1756), - [anon_sym_DASH] = ACTIONS(1756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1754), - [anon_sym_BQUOTE] = ACTIONS(1754), - [anon_sym_LT_LPAREN] = ACTIONS(1754), - [anon_sym_GT_LPAREN] = ACTIONS(1754), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1756), + [anon_sym_COLON] = ACTIONS(1752), + [anon_sym_COLON_QMARK] = ACTIONS(1752), + [anon_sym_COLON_DASH] = ACTIONS(1752), + [anon_sym_PERCENT] = ACTIONS(1752), + [anon_sym_DASH] = ACTIONS(1752), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1756), + [sym_word] = ACTIONS(767), }, [425] = { + [sym_concatenation] = STATE(858), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(858), + [anon_sym_RBRACE] = ACTIONS(1758), + [anon_sym_EQ] = ACTIONS(1760), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1762), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1764), + [anon_sym_COLON] = ACTIONS(1760), + [anon_sym_COLON_QMARK] = ACTIONS(1760), + [anon_sym_COLON_DASH] = ACTIONS(1760), + [anon_sym_PERCENT] = ACTIONS(1760), + [anon_sym_DASH] = ACTIONS(1760), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [426] = { + [sym_concatenation] = STATE(860), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(860), + [anon_sym_RBRACE] = ACTIONS(1730), + [anon_sym_EQ] = ACTIONS(1766), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(1770), + [anon_sym_COLON] = ACTIONS(1766), + [anon_sym_COLON_QMARK] = ACTIONS(1766), + [anon_sym_COLON_DASH] = ACTIONS(1766), + [anon_sym_PERCENT] = ACTIONS(1766), + [anon_sym_DASH] = ACTIONS(1766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [427] = { + [sym__simple_heredoc_body] = ACTIONS(1772), + [sym__heredoc_body_beginning] = ACTIONS(1772), + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_EQ_TILDE] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [anon_sym_LT_LT_LT] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), + }, + [428] = { + [aux_sym_concatenation_repeat1] = STATE(862), + [sym__concat] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1778), + [anon_sym_EQ] = ACTIONS(1780), + [sym__special_characters] = ACTIONS(1780), + [anon_sym_DQUOTE] = ACTIONS(1778), + [anon_sym_DOLLAR] = ACTIONS(1780), + [sym_raw_string] = ACTIONS(1778), + [anon_sym_POUND] = ACTIONS(1778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1778), + [anon_sym_COLON] = ACTIONS(1780), + [anon_sym_COLON_QMARK] = ACTIONS(1780), + [anon_sym_COLON_DASH] = ACTIONS(1780), + [anon_sym_PERCENT] = ACTIONS(1780), + [anon_sym_DASH] = ACTIONS(1780), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1778), + [anon_sym_BQUOTE] = ACTIONS(1778), + [anon_sym_LT_LPAREN] = ACTIONS(1778), + [anon_sym_GT_LPAREN] = ACTIONS(1778), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1780), + }, + [429] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), - [aux_sym_string_repeat1] = STATE(856), - [anon_sym_DQUOTE] = ACTIONS(1758), - [anon_sym_DOLLAR] = ACTIONS(1760), + [aux_sym_string_repeat1] = STATE(865), + [anon_sym_DQUOTE] = ACTIONS(1782), + [anon_sym_DOLLAR] = ACTIONS(1784), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [426] = { - [sym_string] = STATE(858), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(1762), - [sym_raw_string] = ACTIONS(1764), - [anon_sym_POUND] = ACTIONS(1762), - [anon_sym_DASH] = ACTIONS(1762), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1766), - [anon_sym_STAR] = ACTIONS(1762), - [anon_sym_AT] = ACTIONS(1762), - [anon_sym_QMARK] = ACTIONS(1762), - [anon_sym_0] = ACTIONS(1768), - [anon_sym__] = ACTIONS(1768), - }, - [427] = { - [aux_sym_concatenation_repeat1] = STATE(853), - [sym__concat] = ACTIONS(1752), - [anon_sym_RBRACE] = ACTIONS(1770), - [anon_sym_EQ] = ACTIONS(1772), - [sym__special_characters] = ACTIONS(1772), - [anon_sym_DQUOTE] = ACTIONS(1770), - [anon_sym_DOLLAR] = ACTIONS(1772), - [sym_raw_string] = ACTIONS(1770), - [anon_sym_POUND] = ACTIONS(1770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1770), - [anon_sym_COLON] = ACTIONS(1772), - [anon_sym_COLON_QMARK] = ACTIONS(1772), - [anon_sym_COLON_DASH] = ACTIONS(1772), - [anon_sym_PERCENT] = ACTIONS(1772), - [anon_sym_DASH] = ACTIONS(1772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1770), - [anon_sym_BQUOTE] = ACTIONS(1770), - [anon_sym_LT_LPAREN] = ACTIONS(1770), - [anon_sym_GT_LPAREN] = ACTIONS(1770), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1772), - }, - [428] = { - [sym_subscript] = STATE(864), - [sym_variable_name] = ACTIONS(1774), - [anon_sym_DOLLAR] = ACTIONS(1776), - [anon_sym_POUND] = ACTIONS(1778), - [anon_sym_DASH] = ACTIONS(1776), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1780), - [anon_sym_STAR] = ACTIONS(1776), - [anon_sym_AT] = ACTIONS(1776), - [anon_sym_QMARK] = ACTIONS(1776), - [anon_sym_0] = ACTIONS(1782), - [anon_sym__] = ACTIONS(1782), - }, - [429] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(1784), - }, [430] = { - [sym__terminated_statement] = STATE(868), - [sym_for_statement] = STATE(866), - [sym_c_style_for_statement] = STATE(866), - [sym_while_statement] = STATE(866), - [sym_if_statement] = STATE(866), - [sym_case_statement] = STATE(866), - [sym_function_definition] = STATE(866), - [sym_subshell] = STATE(866), - [sym_pipeline] = STATE(866), - [sym_list] = STATE(866), - [sym_negated_command] = STATE(866), - [sym_test_command] = STATE(866), - [sym_declaration_command] = STATE(866), - [sym_unset_command] = STATE(866), - [sym_command] = STATE(866), + [sym_string] = STATE(867), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(1786), + [sym_raw_string] = ACTIONS(1788), + [anon_sym_POUND] = ACTIONS(1786), + [anon_sym_DASH] = ACTIONS(1786), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1790), + [anon_sym_STAR] = ACTIONS(1786), + [anon_sym_AT] = ACTIONS(1786), + [anon_sym_QMARK] = ACTIONS(1786), + [anon_sym_0] = ACTIONS(1792), + [anon_sym__] = ACTIONS(1792), + }, + [431] = { + [aux_sym_concatenation_repeat1] = STATE(862), + [sym__concat] = ACTIONS(1776), + [anon_sym_RBRACE] = ACTIONS(1794), + [anon_sym_EQ] = ACTIONS(1796), + [sym__special_characters] = ACTIONS(1796), + [anon_sym_DQUOTE] = ACTIONS(1794), + [anon_sym_DOLLAR] = ACTIONS(1796), + [sym_raw_string] = ACTIONS(1794), + [anon_sym_POUND] = ACTIONS(1794), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1794), + [anon_sym_COLON] = ACTIONS(1796), + [anon_sym_COLON_QMARK] = ACTIONS(1796), + [anon_sym_COLON_DASH] = ACTIONS(1796), + [anon_sym_PERCENT] = ACTIONS(1796), + [anon_sym_DASH] = ACTIONS(1796), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1794), + [anon_sym_BQUOTE] = ACTIONS(1794), + [anon_sym_LT_LPAREN] = ACTIONS(1794), + [anon_sym_GT_LPAREN] = ACTIONS(1794), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1796), + }, + [432] = { + [sym_subscript] = STATE(873), + [sym_variable_name] = ACTIONS(1798), + [anon_sym_BANG] = ACTIONS(1800), + [anon_sym_DOLLAR] = ACTIONS(1802), + [anon_sym_POUND] = ACTIONS(1800), + [anon_sym_DASH] = ACTIONS(1802), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1804), + [anon_sym_STAR] = ACTIONS(1802), + [anon_sym_AT] = ACTIONS(1802), + [anon_sym_QMARK] = ACTIONS(1802), + [anon_sym_0] = ACTIONS(1806), + [anon_sym__] = ACTIONS(1806), + }, + [433] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(1808), + }, + [434] = { + [sym__terminated_statement] = STATE(877), + [sym_for_statement] = STATE(875), + [sym_c_style_for_statement] = STATE(875), + [sym_while_statement] = STATE(875), + [sym_if_statement] = STATE(875), + [sym_case_statement] = STATE(875), + [sym_function_definition] = STATE(875), + [sym_subshell] = STATE(875), + [sym_pipeline] = STATE(875), + [sym_list] = STATE(875), + [sym_negated_command] = STATE(875), + [sym_test_command] = STATE(875), + [sym_declaration_command] = STATE(875), + [sym_unset_command] = STATE(875), + [sym_command] = STATE(875), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(867), + [sym_variable_assignment] = STATE(876), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -20088,7 +20199,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(868), + [aux_sym_program_repeat1] = STATE(877), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -20127,24 +20238,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [431] = { - [sym__terminated_statement] = STATE(871), - [sym_for_statement] = STATE(869), - [sym_c_style_for_statement] = STATE(869), - [sym_while_statement] = STATE(869), - [sym_if_statement] = STATE(869), - [sym_case_statement] = STATE(869), - [sym_function_definition] = STATE(869), - [sym_subshell] = STATE(869), - [sym_pipeline] = STATE(869), - [sym_list] = STATE(869), - [sym_negated_command] = STATE(869), - [sym_test_command] = STATE(869), - [sym_declaration_command] = STATE(869), - [sym_unset_command] = STATE(869), - [sym_command] = STATE(869), + [435] = { + [sym__terminated_statement] = STATE(880), + [sym_for_statement] = STATE(878), + [sym_c_style_for_statement] = STATE(878), + [sym_while_statement] = STATE(878), + [sym_if_statement] = STATE(878), + [sym_case_statement] = STATE(878), + [sym_function_definition] = STATE(878), + [sym_subshell] = STATE(878), + [sym_pipeline] = STATE(878), + [sym_list] = STATE(878), + [sym_negated_command] = STATE(878), + [sym_test_command] = STATE(878), + [sym_declaration_command] = STATE(878), + [sym_unset_command] = STATE(878), + [sym_command] = STATE(878), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(870), + [sym_variable_assignment] = STATE(879), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -20154,7 +20265,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(19), [sym_command_substitution] = STATE(19), [sym_process_substitution] = STATE(19), - [aux_sym_program_repeat1] = STATE(871), + [aux_sym_program_repeat1] = STATE(880), [aux_sym_command_repeat1] = STATE(158), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(7), @@ -20193,24 +20304,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(277), }, - [432] = { - [sym__terminated_statement] = STATE(874), - [sym_for_statement] = STATE(872), - [sym_c_style_for_statement] = STATE(872), - [sym_while_statement] = STATE(872), - [sym_if_statement] = STATE(872), - [sym_case_statement] = STATE(872), - [sym_function_definition] = STATE(872), - [sym_subshell] = STATE(872), - [sym_pipeline] = STATE(872), - [sym_list] = STATE(872), - [sym_negated_command] = STATE(872), - [sym_test_command] = STATE(872), - [sym_declaration_command] = STATE(872), - [sym_unset_command] = STATE(872), - [sym_command] = STATE(872), + [436] = { + [sym__terminated_statement] = STATE(883), + [sym_for_statement] = STATE(881), + [sym_c_style_for_statement] = STATE(881), + [sym_while_statement] = STATE(881), + [sym_if_statement] = STATE(881), + [sym_case_statement] = STATE(881), + [sym_function_definition] = STATE(881), + [sym_subshell] = STATE(881), + [sym_pipeline] = STATE(881), + [sym_list] = STATE(881), + [sym_negated_command] = STATE(881), + [sym_test_command] = STATE(881), + [sym_declaration_command] = STATE(881), + [sym_unset_command] = STATE(881), + [sym_command] = STATE(881), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(873), + [sym_variable_assignment] = STATE(882), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -20220,7 +20331,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_expansion] = STATE(62), [sym_command_substitution] = STATE(62), [sym_process_substitution] = STATE(62), - [aux_sym_program_repeat1] = STATE(874), + [aux_sym_program_repeat1] = STATE(883), [aux_sym_command_repeat1] = STATE(69), [sym_file_descriptor] = ACTIONS(5), [sym_variable_name] = ACTIONS(87), @@ -20259,129 +20370,34 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [433] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(1786), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [434] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(1792), - [sym_comment] = ACTIONS(53), - }, - [435] = { - [sym_concatenation] = STATE(880), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(880), - [anon_sym_RBRACE] = ACTIONS(1794), - [anon_sym_EQ] = ACTIONS(1796), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1798), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1800), - [anon_sym_COLON] = ACTIONS(1796), - [anon_sym_COLON_QMARK] = ACTIONS(1796), - [anon_sym_COLON_DASH] = ACTIONS(1796), - [anon_sym_PERCENT] = ACTIONS(1796), - [anon_sym_DASH] = ACTIONS(1796), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [436] = { - [sym_concatenation] = STATE(883), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(883), - [anon_sym_RBRACE] = ACTIONS(1802), - [anon_sym_EQ] = ACTIONS(1804), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1806), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1808), - [anon_sym_COLON] = ACTIONS(1804), - [anon_sym_COLON_QMARK] = ACTIONS(1804), - [anon_sym_COLON_DASH] = ACTIONS(1804), - [anon_sym_PERCENT] = ACTIONS(1804), - [anon_sym_DASH] = ACTIONS(1804), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, [437] = { [sym_concatenation] = STATE(885), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(885), - [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1810), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1812), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(1814), - [anon_sym_COLON] = ACTIONS(1810), - [anon_sym_COLON_QMARK] = ACTIONS(1810), - [anon_sym_COLON_DASH] = ACTIONS(1810), - [anon_sym_PERCENT] = ACTIONS(1810), - [anon_sym_DASH] = ACTIONS(1810), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(1810), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [438] = { [sym__simple_heredoc_body] = ACTIONS(1816), @@ -20427,33 +20443,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(1820), }, [440] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(1822), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [441] = { [sym__simple_heredoc_body] = ACTIONS(1824), @@ -20499,33 +20515,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(1828), }, [443] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(1730), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [444] = { [sym__simple_heredoc_body] = ACTIONS(1830), @@ -21380,14 +21396,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [477] = { [sym_subscript] = STATE(917), [sym_variable_name] = ACTIONS(1894), - [anon_sym_DOLLAR] = ACTIONS(1896), - [anon_sym_POUND] = ACTIONS(1898), - [anon_sym_DASH] = ACTIONS(1896), + [anon_sym_BANG] = ACTIONS(1896), + [anon_sym_DOLLAR] = ACTIONS(1898), + [anon_sym_POUND] = ACTIONS(1896), + [anon_sym_DASH] = ACTIONS(1898), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1900), - [anon_sym_STAR] = ACTIONS(1896), - [anon_sym_AT] = ACTIONS(1896), - [anon_sym_QMARK] = ACTIONS(1896), + [anon_sym_STAR] = ACTIONS(1898), + [anon_sym_AT] = ACTIONS(1898), + [anon_sym_QMARK] = ACTIONS(1898), [anon_sym_0] = ACTIONS(1902), [anon_sym__] = ACTIONS(1902), }, @@ -22041,14 +22058,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [506] = { [sym_subscript] = STATE(943), [sym_variable_name] = ACTIONS(2019), - [anon_sym_DOLLAR] = ACTIONS(2021), - [anon_sym_POUND] = ACTIONS(2023), - [anon_sym_DASH] = ACTIONS(2021), + [anon_sym_BANG] = ACTIONS(2021), + [anon_sym_DOLLAR] = ACTIONS(2023), + [anon_sym_POUND] = ACTIONS(2021), + [anon_sym_DASH] = ACTIONS(2023), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2025), - [anon_sym_STAR] = ACTIONS(2021), - [anon_sym_AT] = ACTIONS(2021), - [anon_sym_QMARK] = ACTIONS(2021), + [anon_sym_STAR] = ACTIONS(2023), + [anon_sym_AT] = ACTIONS(2023), + [anon_sym_QMARK] = ACTIONS(2023), [anon_sym_0] = ACTIONS(2027), [anon_sym__] = ACTIONS(2027), }, @@ -22488,107 +22506,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [520] = { - [sym_concatenation] = STATE(962), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(962), - [anon_sym_RBRACE] = ACTIONS(2039), - [anon_sym_EQ] = ACTIONS(2041), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2043), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2045), - [anon_sym_COLON] = ACTIONS(2041), - [anon_sym_COLON_QMARK] = ACTIONS(2041), - [anon_sym_COLON_DASH] = ACTIONS(2041), - [anon_sym_PERCENT] = ACTIONS(2041), + [sym_subscript] = STATE(963), + [sym_variable_name] = ACTIONS(2039), + [anon_sym_DOLLAR] = ACTIONS(2041), [anon_sym_DASH] = ACTIONS(2041), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2043), + [anon_sym_STAR] = ACTIONS(2041), + [anon_sym_AT] = ACTIONS(2041), + [anon_sym_QMARK] = ACTIONS(2041), + [anon_sym_0] = ACTIONS(2045), + [anon_sym__] = ACTIONS(2045), }, [521] = { - [sym_subscript] = STATE(966), - [sym_variable_name] = ACTIONS(2047), - [anon_sym_DOLLAR] = ACTIONS(2049), + [sym_concatenation] = STATE(966), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(966), + [anon_sym_RBRACE] = ACTIONS(2047), + [anon_sym_EQ] = ACTIONS(2049), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2051), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2053), + [anon_sym_COLON] = ACTIONS(2049), + [anon_sym_COLON_QMARK] = ACTIONS(2049), + [anon_sym_COLON_DASH] = ACTIONS(2049), + [anon_sym_PERCENT] = ACTIONS(2049), [anon_sym_DASH] = ACTIONS(2049), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2051), - [anon_sym_STAR] = ACTIONS(2049), - [anon_sym_AT] = ACTIONS(2049), - [anon_sym_QMARK] = ACTIONS(2049), - [anon_sym_0] = ACTIONS(2053), - [anon_sym__] = ACTIONS(2053), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [522] = { [sym_concatenation] = STATE(969), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(969), [anon_sym_RBRACE] = ACTIONS(2055), [anon_sym_EQ] = ACTIONS(2057), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(2059), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(2061), [anon_sym_COLON] = ACTIONS(2057), [anon_sym_COLON_QMARK] = ACTIONS(2057), [anon_sym_COLON_DASH] = ACTIONS(2057), [anon_sym_PERCENT] = ACTIONS(2057), [anon_sym_DASH] = ACTIONS(2057), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [523] = { [sym_concatenation] = STATE(972), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(972), [anon_sym_RBRACE] = ACTIONS(2063), [anon_sym_EQ] = ACTIONS(2065), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(2067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(2069), [anon_sym_COLON] = ACTIONS(2065), [anon_sym_COLON_QMARK] = ACTIONS(2065), [anon_sym_COLON_DASH] = ACTIONS(2065), [anon_sym_PERCENT] = ACTIONS(2065), [anon_sym_DASH] = ACTIONS(2065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [524] = { [anon_sym_PIPE] = ACTIONS(453), @@ -23139,107 +23157,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [546] = { - [sym_concatenation] = STATE(1005), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1005), - [anon_sym_RBRACE] = ACTIONS(2129), - [anon_sym_EQ] = ACTIONS(2131), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2133), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2135), - [anon_sym_COLON] = ACTIONS(2131), - [anon_sym_COLON_QMARK] = ACTIONS(2131), - [anon_sym_COLON_DASH] = ACTIONS(2131), - [anon_sym_PERCENT] = ACTIONS(2131), + [sym_subscript] = STATE(1006), + [sym_variable_name] = ACTIONS(2129), + [anon_sym_DOLLAR] = ACTIONS(2131), [anon_sym_DASH] = ACTIONS(2131), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2133), + [anon_sym_STAR] = ACTIONS(2131), + [anon_sym_AT] = ACTIONS(2131), + [anon_sym_QMARK] = ACTIONS(2131), + [anon_sym_0] = ACTIONS(2135), + [anon_sym__] = ACTIONS(2135), }, [547] = { - [sym_subscript] = STATE(1009), - [sym_variable_name] = ACTIONS(2137), - [anon_sym_DOLLAR] = ACTIONS(2139), + [sym_concatenation] = STATE(1009), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1009), + [anon_sym_RBRACE] = ACTIONS(2137), + [anon_sym_EQ] = ACTIONS(2139), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2141), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2143), + [anon_sym_COLON] = ACTIONS(2139), + [anon_sym_COLON_QMARK] = ACTIONS(2139), + [anon_sym_COLON_DASH] = ACTIONS(2139), + [anon_sym_PERCENT] = ACTIONS(2139), [anon_sym_DASH] = ACTIONS(2139), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2141), - [anon_sym_STAR] = ACTIONS(2139), - [anon_sym_AT] = ACTIONS(2139), - [anon_sym_QMARK] = ACTIONS(2139), - [anon_sym_0] = ACTIONS(2143), - [anon_sym__] = ACTIONS(2143), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [548] = { [sym_concatenation] = STATE(1012), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1012), [anon_sym_RBRACE] = ACTIONS(2145), [anon_sym_EQ] = ACTIONS(2147), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(2149), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(2151), [anon_sym_COLON] = ACTIONS(2147), [anon_sym_COLON_QMARK] = ACTIONS(2147), [anon_sym_COLON_DASH] = ACTIONS(2147), [anon_sym_PERCENT] = ACTIONS(2147), [anon_sym_DASH] = ACTIONS(2147), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [549] = { [sym_concatenation] = STATE(1015), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1015), [anon_sym_RBRACE] = ACTIONS(2153), [anon_sym_EQ] = ACTIONS(2155), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(2157), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(2159), [anon_sym_COLON] = ACTIONS(2155), [anon_sym_COLON_QMARK] = ACTIONS(2155), [anon_sym_COLON_DASH] = ACTIONS(2155), [anon_sym_PERCENT] = ACTIONS(2155), [anon_sym_DASH] = ACTIONS(2155), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [550] = { [anon_sym_PIPE] = ACTIONS(453), @@ -24317,151 +24335,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2256), }, [587] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_in] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [588] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2258), - }, - [589] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2260), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [590] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2262), + [anon_sym_EQ] = ACTIONS(2258), [sym_comment] = ACTIONS(53), }, - [591] = { - [sym_concatenation] = STATE(1066), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1066), - [anon_sym_RBRACE] = ACTIONS(2264), - [anon_sym_EQ] = ACTIONS(2266), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2270), - [anon_sym_COLON] = ACTIONS(2266), - [anon_sym_COLON_QMARK] = ACTIONS(2266), - [anon_sym_COLON_DASH] = ACTIONS(2266), - [anon_sym_PERCENT] = ACTIONS(2266), - [anon_sym_DASH] = ACTIONS(2266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [588] = { + [sym_concatenation] = STATE(1064), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1064), + [anon_sym_RBRACE] = ACTIONS(2260), + [anon_sym_EQ] = ACTIONS(2262), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2266), + [anon_sym_COLON] = ACTIONS(2262), + [anon_sym_COLON_QMARK] = ACTIONS(2262), + [anon_sym_COLON_DASH] = ACTIONS(2262), + [anon_sym_PERCENT] = ACTIONS(2262), + [anon_sym_DASH] = ACTIONS(2262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [589] = { + [sym_concatenation] = STATE(1067), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1067), + [anon_sym_RBRACE] = ACTIONS(2268), + [anon_sym_EQ] = ACTIONS(2270), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2272), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2274), + [anon_sym_COLON] = ACTIONS(2270), + [anon_sym_COLON_QMARK] = ACTIONS(2270), + [anon_sym_COLON_DASH] = ACTIONS(2270), + [anon_sym_PERCENT] = ACTIONS(2270), + [anon_sym_DASH] = ACTIONS(2270), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [590] = { + [sym_concatenation] = STATE(1069), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1069), + [anon_sym_RBRACE] = ACTIONS(2252), + [anon_sym_EQ] = ACTIONS(2276), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2278), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2280), + [anon_sym_COLON] = ACTIONS(2276), + [anon_sym_COLON_QMARK] = ACTIONS(2276), + [anon_sym_COLON_DASH] = ACTIONS(2276), + [anon_sym_PERCENT] = ACTIONS(2276), + [anon_sym_DASH] = ACTIONS(2276), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [591] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_in] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [592] = { - [sym_concatenation] = STATE(1069), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1069), - [anon_sym_RBRACE] = ACTIONS(2272), - [anon_sym_EQ] = ACTIONS(2274), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2278), - [anon_sym_COLON] = ACTIONS(2274), - [anon_sym_COLON_QMARK] = ACTIONS(2274), - [anon_sym_COLON_DASH] = ACTIONS(2274), - [anon_sym_PERCENT] = ACTIONS(2274), - [anon_sym_DASH] = ACTIONS(2274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2282), }, [593] = { - [sym_concatenation] = STATE(1071), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1071), - [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(2280), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2282), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2284), - [anon_sym_COLON] = ACTIONS(2280), - [anon_sym_COLON_QMARK] = ACTIONS(2280), - [anon_sym_COLON_DASH] = ACTIONS(2280), - [anon_sym_PERCENT] = ACTIONS(2280), - [anon_sym_DASH] = ACTIONS(2280), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2284), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [594] = { [sym__concat] = ACTIONS(1816), @@ -24487,33 +24505,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2286), }, [596] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2288), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [597] = { [sym__concat] = ACTIONS(1824), @@ -24539,33 +24557,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2290), }, [599] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2252), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [600] = { [sym__concat] = ACTIONS(1830), @@ -26082,146 +26100,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2410), }, [661] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_AMP_AMP] = ACTIONS(1748), - [anon_sym_PIPE_PIPE] = ACTIONS(1748), - [anon_sym_RBRACK] = ACTIONS(1748), - [anon_sym_EQ_TILDE] = ACTIONS(1748), - [anon_sym_EQ_EQ] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_BANG_EQ] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2412), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1748), }, [662] = { + [sym_concatenation] = STATE(1118), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1118), + [anon_sym_RBRACE] = ACTIONS(2414), + [anon_sym_EQ] = ACTIONS(2416), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2418), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2420), + [anon_sym_COLON] = ACTIONS(2416), + [anon_sym_COLON_QMARK] = ACTIONS(2416), + [anon_sym_COLON_DASH] = ACTIONS(2416), + [anon_sym_PERCENT] = ACTIONS(2416), + [anon_sym_DASH] = ACTIONS(2416), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2412), + [sym_word] = ACTIONS(767), }, [663] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2414), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1121), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1121), + [anon_sym_RBRACE] = ACTIONS(2422), + [anon_sym_EQ] = ACTIONS(2424), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2426), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2428), + [anon_sym_COLON] = ACTIONS(2424), + [anon_sym_COLON_QMARK] = ACTIONS(2424), + [anon_sym_COLON_DASH] = ACTIONS(2424), + [anon_sym_PERCENT] = ACTIONS(2424), + [anon_sym_DASH] = ACTIONS(2424), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [664] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2416), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1123), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1123), + [anon_sym_RBRACE] = ACTIONS(2406), + [anon_sym_EQ] = ACTIONS(2430), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2432), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2434), + [anon_sym_COLON] = ACTIONS(2430), + [anon_sym_COLON_QMARK] = ACTIONS(2430), + [anon_sym_COLON_DASH] = ACTIONS(2430), + [anon_sym_PERCENT] = ACTIONS(2430), + [anon_sym_DASH] = ACTIONS(2430), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [665] = { - [sym_concatenation] = STATE(1120), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1120), - [anon_sym_RBRACE] = ACTIONS(2418), - [anon_sym_EQ] = ACTIONS(2420), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2422), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2424), - [anon_sym_COLON] = ACTIONS(2420), - [anon_sym_COLON_QMARK] = ACTIONS(2420), - [anon_sym_COLON_DASH] = ACTIONS(2420), - [anon_sym_PERCENT] = ACTIONS(2420), - [anon_sym_DASH] = ACTIONS(2420), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_RBRACK] = ACTIONS(1772), + [anon_sym_EQ_TILDE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1772), }, [666] = { - [sym_concatenation] = STATE(1123), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1123), - [anon_sym_RBRACE] = ACTIONS(2426), - [anon_sym_EQ] = ACTIONS(2428), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2430), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2432), - [anon_sym_COLON] = ACTIONS(2428), - [anon_sym_COLON_QMARK] = ACTIONS(2428), - [anon_sym_COLON_DASH] = ACTIONS(2428), - [anon_sym_PERCENT] = ACTIONS(2428), - [anon_sym_DASH] = ACTIONS(2428), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2436), }, [667] = { - [sym_concatenation] = STATE(1125), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1125), - [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(2434), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2436), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2438), - [anon_sym_COLON] = ACTIONS(2434), - [anon_sym_COLON_QMARK] = ACTIONS(2434), - [anon_sym_COLON_DASH] = ACTIONS(2434), - [anon_sym_PERCENT] = ACTIONS(2434), - [anon_sym_DASH] = ACTIONS(2434), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2438), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [668] = { [sym__concat] = ACTIONS(1816), @@ -26242,33 +26260,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2440), }, [670] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2442), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [671] = { [sym__concat] = ACTIONS(1824), @@ -26289,33 +26307,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2444), }, [673] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2406), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [674] = { [sym__concat] = ACTIONS(1830), @@ -26792,148 +26810,148 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2509), }, [698] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1748), - [anon_sym_AMP_AMP] = ACTIONS(1748), - [anon_sym_PIPE_PIPE] = ACTIONS(1748), - [anon_sym_RBRACK_RBRACK] = ACTIONS(1748), - [anon_sym_EQ_TILDE] = ACTIONS(1748), - [anon_sym_EQ_EQ] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_BANG_EQ] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2511), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1748), }, [699] = { + [sym_concatenation] = STATE(1157), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1157), + [anon_sym_RBRACE] = ACTIONS(2513), + [anon_sym_EQ] = ACTIONS(2515), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2517), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2519), + [anon_sym_COLON] = ACTIONS(2515), + [anon_sym_COLON_QMARK] = ACTIONS(2515), + [anon_sym_COLON_DASH] = ACTIONS(2515), + [anon_sym_PERCENT] = ACTIONS(2515), + [anon_sym_DASH] = ACTIONS(2515), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2511), + [sym_word] = ACTIONS(767), }, [700] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2513), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1160), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1160), + [anon_sym_RBRACE] = ACTIONS(2521), + [anon_sym_EQ] = ACTIONS(2523), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2525), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2527), + [anon_sym_COLON] = ACTIONS(2523), + [anon_sym_COLON_QMARK] = ACTIONS(2523), + [anon_sym_COLON_DASH] = ACTIONS(2523), + [anon_sym_PERCENT] = ACTIONS(2523), + [anon_sym_DASH] = ACTIONS(2523), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [701] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2515), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1162), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1162), + [anon_sym_RBRACE] = ACTIONS(2505), + [anon_sym_EQ] = ACTIONS(2529), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2531), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2533), + [anon_sym_COLON] = ACTIONS(2529), + [anon_sym_COLON_QMARK] = ACTIONS(2529), + [anon_sym_COLON_DASH] = ACTIONS(2529), + [anon_sym_PERCENT] = ACTIONS(2529), + [anon_sym_DASH] = ACTIONS(2529), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [702] = { - [sym_concatenation] = STATE(1159), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1159), - [anon_sym_RBRACE] = ACTIONS(2517), - [anon_sym_EQ] = ACTIONS(2519), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2521), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2523), - [anon_sym_COLON] = ACTIONS(2519), - [anon_sym_COLON_QMARK] = ACTIONS(2519), - [anon_sym_COLON_DASH] = ACTIONS(2519), - [anon_sym_PERCENT] = ACTIONS(2519), - [anon_sym_DASH] = ACTIONS(2519), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_RBRACK_RBRACK] = ACTIONS(1772), + [anon_sym_EQ_TILDE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1772), }, [703] = { - [sym_concatenation] = STATE(1162), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1162), - [anon_sym_RBRACE] = ACTIONS(2525), - [anon_sym_EQ] = ACTIONS(2527), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2531), - [anon_sym_COLON] = ACTIONS(2527), - [anon_sym_COLON_QMARK] = ACTIONS(2527), - [anon_sym_COLON_DASH] = ACTIONS(2527), - [anon_sym_PERCENT] = ACTIONS(2527), - [anon_sym_DASH] = ACTIONS(2527), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2535), }, [704] = { - [sym_concatenation] = STATE(1164), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1164), - [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(2533), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2535), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2537), - [anon_sym_COLON] = ACTIONS(2533), - [anon_sym_COLON_QMARK] = ACTIONS(2533), - [anon_sym_COLON_DASH] = ACTIONS(2533), - [anon_sym_PERCENT] = ACTIONS(2533), - [anon_sym_DASH] = ACTIONS(2533), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2537), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [705] = { [sym__concat] = ACTIONS(1816), @@ -26956,33 +26974,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2539), }, [707] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2541), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [708] = { [sym__concat] = ACTIONS(1824), @@ -27005,33 +27023,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2543), }, [710] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2505), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [711] = { [sym__concat] = ACTIONS(1830), @@ -27544,157 +27562,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2576), }, [733] = { - [sym__concat] = ACTIONS(1748), - [sym_variable_name] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [734] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2578), - }, - [735] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2580), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [736] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2582), + [anon_sym_EQ] = ACTIONS(2578), [sym_comment] = ACTIONS(53), }, - [737] = { - [sym_concatenation] = STATE(1185), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1185), - [anon_sym_RBRACE] = ACTIONS(2584), - [anon_sym_EQ] = ACTIONS(2586), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2588), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2590), - [anon_sym_COLON] = ACTIONS(2586), - [anon_sym_COLON_QMARK] = ACTIONS(2586), - [anon_sym_COLON_DASH] = ACTIONS(2586), - [anon_sym_PERCENT] = ACTIONS(2586), - [anon_sym_DASH] = ACTIONS(2586), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [734] = { + [sym_concatenation] = STATE(1183), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1183), + [anon_sym_RBRACE] = ACTIONS(2580), + [anon_sym_EQ] = ACTIONS(2582), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2584), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2586), + [anon_sym_COLON] = ACTIONS(2582), + [anon_sym_COLON_QMARK] = ACTIONS(2582), + [anon_sym_COLON_DASH] = ACTIONS(2582), + [anon_sym_PERCENT] = ACTIONS(2582), + [anon_sym_DASH] = ACTIONS(2582), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [735] = { + [sym_concatenation] = STATE(1186), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1186), + [anon_sym_RBRACE] = ACTIONS(2588), + [anon_sym_EQ] = ACTIONS(2590), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2592), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2594), + [anon_sym_COLON] = ACTIONS(2590), + [anon_sym_COLON_QMARK] = ACTIONS(2590), + [anon_sym_COLON_DASH] = ACTIONS(2590), + [anon_sym_PERCENT] = ACTIONS(2590), + [anon_sym_DASH] = ACTIONS(2590), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [736] = { + [sym_concatenation] = STATE(1188), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1188), + [anon_sym_RBRACE] = ACTIONS(2572), + [anon_sym_EQ] = ACTIONS(2596), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2600), + [anon_sym_COLON] = ACTIONS(2596), + [anon_sym_COLON_QMARK] = ACTIONS(2596), + [anon_sym_COLON_DASH] = ACTIONS(2596), + [anon_sym_PERCENT] = ACTIONS(2596), + [anon_sym_DASH] = ACTIONS(2596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [737] = { + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [738] = { - [sym_concatenation] = STATE(1188), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1188), - [anon_sym_RBRACE] = ACTIONS(2592), - [anon_sym_EQ] = ACTIONS(2594), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2596), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2598), - [anon_sym_COLON] = ACTIONS(2594), - [anon_sym_COLON_QMARK] = ACTIONS(2594), - [anon_sym_COLON_DASH] = ACTIONS(2594), - [anon_sym_PERCENT] = ACTIONS(2594), - [anon_sym_DASH] = ACTIONS(2594), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2602), }, [739] = { - [sym_concatenation] = STATE(1190), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1190), - [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(2600), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2602), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2604), - [anon_sym_COLON] = ACTIONS(2600), - [anon_sym_COLON_QMARK] = ACTIONS(2600), - [anon_sym_COLON_DASH] = ACTIONS(2600), - [anon_sym_PERCENT] = ACTIONS(2600), - [anon_sym_DASH] = ACTIONS(2600), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2604), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [740] = { [sym__concat] = ACTIONS(1816), @@ -27726,33 +27744,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2606), }, [742] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2608), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [743] = { [sym__concat] = ACTIONS(1824), @@ -27784,33 +27802,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2610), }, [745] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2572), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [746] = { [sym__concat] = ACTIONS(1830), @@ -28214,156 +28232,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2641), }, [762] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [763] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2643), - }, - [764] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2645), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [765] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2647), + [anon_sym_EQ] = ACTIONS(2643), [sym_comment] = ACTIONS(53), }, - [766] = { - [sym_concatenation] = STATE(1209), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1209), - [anon_sym_RBRACE] = ACTIONS(2649), - [anon_sym_EQ] = ACTIONS(2651), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2653), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2655), - [anon_sym_COLON] = ACTIONS(2651), - [anon_sym_COLON_QMARK] = ACTIONS(2651), - [anon_sym_COLON_DASH] = ACTIONS(2651), - [anon_sym_PERCENT] = ACTIONS(2651), - [anon_sym_DASH] = ACTIONS(2651), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [763] = { + [sym_concatenation] = STATE(1207), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1207), + [anon_sym_RBRACE] = ACTIONS(2645), + [anon_sym_EQ] = ACTIONS(2647), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2649), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2651), + [anon_sym_COLON] = ACTIONS(2647), + [anon_sym_COLON_QMARK] = ACTIONS(2647), + [anon_sym_COLON_DASH] = ACTIONS(2647), + [anon_sym_PERCENT] = ACTIONS(2647), + [anon_sym_DASH] = ACTIONS(2647), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [764] = { + [sym_concatenation] = STATE(1210), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1210), + [anon_sym_RBRACE] = ACTIONS(2653), + [anon_sym_EQ] = ACTIONS(2655), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2657), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2659), + [anon_sym_COLON] = ACTIONS(2655), + [anon_sym_COLON_QMARK] = ACTIONS(2655), + [anon_sym_COLON_DASH] = ACTIONS(2655), + [anon_sym_PERCENT] = ACTIONS(2655), + [anon_sym_DASH] = ACTIONS(2655), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [765] = { + [sym_concatenation] = STATE(1212), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1212), + [anon_sym_RBRACE] = ACTIONS(2637), + [anon_sym_EQ] = ACTIONS(2661), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2663), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2665), + [anon_sym_COLON] = ACTIONS(2661), + [anon_sym_COLON_QMARK] = ACTIONS(2661), + [anon_sym_COLON_DASH] = ACTIONS(2661), + [anon_sym_PERCENT] = ACTIONS(2661), + [anon_sym_DASH] = ACTIONS(2661), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [766] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [767] = { - [sym_concatenation] = STATE(1212), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1212), - [anon_sym_RBRACE] = ACTIONS(2657), - [anon_sym_EQ] = ACTIONS(2659), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2661), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2663), - [anon_sym_COLON] = ACTIONS(2659), - [anon_sym_COLON_QMARK] = ACTIONS(2659), - [anon_sym_COLON_DASH] = ACTIONS(2659), - [anon_sym_PERCENT] = ACTIONS(2659), - [anon_sym_DASH] = ACTIONS(2659), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2667), }, [768] = { - [sym_concatenation] = STATE(1214), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1214), - [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(2665), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2667), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2669), - [anon_sym_COLON] = ACTIONS(2665), - [anon_sym_COLON_QMARK] = ACTIONS(2665), - [anon_sym_COLON_DASH] = ACTIONS(2665), - [anon_sym_PERCENT] = ACTIONS(2665), - [anon_sym_DASH] = ACTIONS(2665), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2669), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [769] = { [sym__concat] = ACTIONS(1816), @@ -28394,33 +28412,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2671), }, [771] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2673), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [772] = { [sym__concat] = ACTIONS(1824), @@ -28451,33 +28469,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2675), }, [774] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2637), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [775] = { [sym__concat] = ACTIONS(1830), @@ -28877,155 +28895,155 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2706), }, [791] = { - [sym_file_descriptor] = ACTIONS(1748), - [sym__concat] = ACTIONS(1748), - [sym_variable_name] = ACTIONS(1748), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1748), - [anon_sym_AMP_GT] = ACTIONS(1750), - [anon_sym_AMP_GT_GT] = ACTIONS(1748), - [anon_sym_LT_AMP] = ACTIONS(1748), - [anon_sym_GT_AMP] = ACTIONS(1748), - [sym__special_characters] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), - [anon_sym_BQUOTE] = ACTIONS(1748), - [anon_sym_LT_LPAREN] = ACTIONS(1748), - [anon_sym_GT_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(2708), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1748), }, [792] = { + [sym_concatenation] = STATE(1231), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1231), + [anon_sym_RBRACE] = ACTIONS(2710), + [anon_sym_EQ] = ACTIONS(2712), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2714), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2716), + [anon_sym_COLON] = ACTIONS(2712), + [anon_sym_COLON_QMARK] = ACTIONS(2712), + [anon_sym_COLON_DASH] = ACTIONS(2712), + [anon_sym_PERCENT] = ACTIONS(2712), + [anon_sym_DASH] = ACTIONS(2712), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2708), + [sym_word] = ACTIONS(767), }, [793] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2710), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1234), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1234), + [anon_sym_RBRACE] = ACTIONS(2718), + [anon_sym_EQ] = ACTIONS(2720), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2724), + [anon_sym_COLON] = ACTIONS(2720), + [anon_sym_COLON_QMARK] = ACTIONS(2720), + [anon_sym_COLON_DASH] = ACTIONS(2720), + [anon_sym_PERCENT] = ACTIONS(2720), + [anon_sym_DASH] = ACTIONS(2720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [794] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2712), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1236), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1236), + [anon_sym_RBRACE] = ACTIONS(2702), + [anon_sym_EQ] = ACTIONS(2726), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2730), + [anon_sym_COLON] = ACTIONS(2726), + [anon_sym_COLON_QMARK] = ACTIONS(2726), + [anon_sym_COLON_DASH] = ACTIONS(2726), + [anon_sym_PERCENT] = ACTIONS(2726), + [anon_sym_DASH] = ACTIONS(2726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [795] = { - [sym_concatenation] = STATE(1233), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1233), - [anon_sym_RBRACE] = ACTIONS(2714), - [anon_sym_EQ] = ACTIONS(2716), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2720), - [anon_sym_COLON] = ACTIONS(2716), - [anon_sym_COLON_QMARK] = ACTIONS(2716), - [anon_sym_COLON_DASH] = ACTIONS(2716), - [anon_sym_PERCENT] = ACTIONS(2716), - [anon_sym_DASH] = ACTIONS(2716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1772), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1772), + [anon_sym_LT_AMP] = ACTIONS(1772), + [anon_sym_GT_AMP] = ACTIONS(1772), + [sym__special_characters] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1772), }, [796] = { - [sym_concatenation] = STATE(1236), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1236), - [anon_sym_RBRACE] = ACTIONS(2722), - [anon_sym_EQ] = ACTIONS(2724), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2726), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2728), - [anon_sym_COLON] = ACTIONS(2724), - [anon_sym_COLON_QMARK] = ACTIONS(2724), - [anon_sym_COLON_DASH] = ACTIONS(2724), - [anon_sym_PERCENT] = ACTIONS(2724), - [anon_sym_DASH] = ACTIONS(2724), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2732), }, [797] = { - [sym_concatenation] = STATE(1238), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1238), - [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(2730), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2734), - [anon_sym_COLON] = ACTIONS(2730), - [anon_sym_COLON_QMARK] = ACTIONS(2730), - [anon_sym_COLON_DASH] = ACTIONS(2730), - [anon_sym_PERCENT] = ACTIONS(2730), - [anon_sym_DASH] = ACTIONS(2730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2734), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [798] = { [sym_file_descriptor] = ACTIONS(1816), @@ -29055,33 +29073,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2736), }, [800] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2738), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [801] = { [sym_file_descriptor] = ACTIONS(1824), @@ -29111,33 +29129,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2740), }, [803] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2702), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [804] = { [sym_file_descriptor] = ACTIONS(1830), @@ -29460,142 +29478,142 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(2770), }, [817] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym__string_content] = ACTIONS(1748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - }, - [818] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2772), - }, - [819] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2774), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [820] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2776), + [anon_sym_EQ] = ACTIONS(2772), [sym_comment] = ACTIONS(53), }, - [821] = { - [sym_concatenation] = STATE(1256), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1256), - [anon_sym_RBRACE] = ACTIONS(2778), - [anon_sym_EQ] = ACTIONS(2780), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2782), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2784), - [anon_sym_COLON] = ACTIONS(2780), - [anon_sym_COLON_QMARK] = ACTIONS(2780), - [anon_sym_COLON_DASH] = ACTIONS(2780), - [anon_sym_PERCENT] = ACTIONS(2780), - [anon_sym_DASH] = ACTIONS(2780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [818] = { + [sym_concatenation] = STATE(1254), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1254), + [anon_sym_RBRACE] = ACTIONS(2774), + [anon_sym_EQ] = ACTIONS(2776), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2778), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2780), + [anon_sym_COLON] = ACTIONS(2776), + [anon_sym_COLON_QMARK] = ACTIONS(2776), + [anon_sym_COLON_DASH] = ACTIONS(2776), + [anon_sym_PERCENT] = ACTIONS(2776), + [anon_sym_DASH] = ACTIONS(2776), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [819] = { + [sym_concatenation] = STATE(1257), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1257), + [anon_sym_RBRACE] = ACTIONS(2782), + [anon_sym_EQ] = ACTIONS(2784), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2786), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2788), + [anon_sym_COLON] = ACTIONS(2784), + [anon_sym_COLON_QMARK] = ACTIONS(2784), + [anon_sym_COLON_DASH] = ACTIONS(2784), + [anon_sym_PERCENT] = ACTIONS(2784), + [anon_sym_DASH] = ACTIONS(2784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [820] = { + [sym_concatenation] = STATE(1259), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1259), + [anon_sym_RBRACE] = ACTIONS(2766), + [anon_sym_EQ] = ACTIONS(2790), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2792), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2794), + [anon_sym_COLON] = ACTIONS(2790), + [anon_sym_COLON_QMARK] = ACTIONS(2790), + [anon_sym_COLON_DASH] = ACTIONS(2790), + [anon_sym_PERCENT] = ACTIONS(2790), + [anon_sym_DASH] = ACTIONS(2790), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [821] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym__string_content] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), }, [822] = { - [sym_concatenation] = STATE(1259), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1259), - [anon_sym_RBRACE] = ACTIONS(2786), - [anon_sym_EQ] = ACTIONS(2788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2792), - [anon_sym_COLON] = ACTIONS(2788), - [anon_sym_COLON_QMARK] = ACTIONS(2788), - [anon_sym_COLON_DASH] = ACTIONS(2788), - [anon_sym_PERCENT] = ACTIONS(2788), - [anon_sym_DASH] = ACTIONS(2788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(2796), }, [823] = { - [sym_concatenation] = STATE(1261), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1261), - [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(2794), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2796), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2798), - [anon_sym_COLON] = ACTIONS(2794), - [anon_sym_COLON_QMARK] = ACTIONS(2794), - [anon_sym_COLON_DASH] = ACTIONS(2794), - [anon_sym_PERCENT] = ACTIONS(2794), - [anon_sym_DASH] = ACTIONS(2794), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2798), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [824] = { [sym__concat] = ACTIONS(1816), @@ -29612,33 +29630,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2800), }, [826] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2802), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [827] = { [sym__concat] = ACTIONS(1824), @@ -29655,33 +29673,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(2804), }, [829] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(2766), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [830] = { [sym__concat] = ACTIONS(1830), @@ -30006,14 +30024,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [847] = { [sym_subscript] = STATE(1287), [sym_variable_name] = ACTIONS(2854), - [anon_sym_DOLLAR] = ACTIONS(2856), - [anon_sym_POUND] = ACTIONS(2858), - [anon_sym_DASH] = ACTIONS(2856), + [anon_sym_BANG] = ACTIONS(2856), + [anon_sym_DOLLAR] = ACTIONS(2858), + [anon_sym_POUND] = ACTIONS(2856), + [anon_sym_DASH] = ACTIONS(2858), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2860), - [anon_sym_STAR] = ACTIONS(2856), - [anon_sym_AT] = ACTIONS(2856), - [anon_sym_QMARK] = ACTIONS(2856), + [anon_sym_STAR] = ACTIONS(2858), + [anon_sym_AT] = ACTIONS(2858), + [anon_sym_QMARK] = ACTIONS(2858), [anon_sym_0] = ACTIONS(2862), [anon_sym__] = ACTIONS(2862), }, @@ -30220,27 +30239,225 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [852] = { - [sym_string] = STATE(1297), - [sym_simple_expansion] = STATE(1297), - [sym_string_expansion] = STATE(1297), - [sym_expansion] = STATE(1297), - [sym_command_substitution] = STATE(1297), - [sym_process_substitution] = STATE(1297), + [sym_concatenation] = STATE(1299), + [sym_string] = STATE(1298), + [sym_simple_expansion] = STATE(1298), + [sym_string_expansion] = STATE(1298), + [sym_expansion] = STATE(1298), + [sym_command_substitution] = STATE(1298), + [sym_process_substitution] = STATE(1298), + [anon_sym_RBRACE] = ACTIONS(2852), [sym__special_characters] = ACTIONS(2864), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(2864), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DQUOTE] = ACTIONS(1734), + [anon_sym_DOLLAR] = ACTIONS(1736), + [sym_raw_string] = ACTIONS(2866), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), + [anon_sym_BQUOTE] = ACTIONS(1744), + [anon_sym_LT_LPAREN] = ACTIONS(1746), + [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2864), + [sym_word] = ACTIONS(2866), }, [853] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym__concat] = ACTIONS(1752), + [sym__simple_heredoc_body] = ACTIONS(2868), + [sym__heredoc_body_beginning] = ACTIONS(2868), + [sym_file_descriptor] = ACTIONS(2868), + [sym__concat] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_EQ_TILDE] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_GT] = ACTIONS(2870), + [anon_sym_AMP_GT_GT] = ACTIONS(2870), + [anon_sym_LT_AMP] = ACTIONS(2870), + [anon_sym_GT_AMP] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_LT_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT_LT] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [854] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2872), + }, + [855] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2874), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [856] = { + [sym__simple_heredoc_body] = ACTIONS(2876), + [sym__heredoc_body_beginning] = ACTIONS(2876), + [sym_file_descriptor] = ACTIONS(2876), + [sym__concat] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_EQ_TILDE] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_GT] = ACTIONS(2878), + [anon_sym_AMP_GT_GT] = ACTIONS(2878), + [anon_sym_LT_AMP] = ACTIONS(2878), + [anon_sym_GT_AMP] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_LT_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT_LT] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), + }, + [857] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2880), + }, + [858] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2882), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [859] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(2884), + }, + [860] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2852), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [861] = { + [sym_string] = STATE(1305), + [sym_simple_expansion] = STATE(1305), + [sym_string_expansion] = STATE(1305), + [sym_expansion] = STATE(1305), + [sym_command_substitution] = STATE(1305), + [sym_process_substitution] = STATE(1305), + [sym__special_characters] = ACTIONS(2886), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(2886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2886), + }, + [862] = { + [aux_sym_concatenation_repeat1] = STATE(1306), + [sym__concat] = ACTIONS(1776), [anon_sym_RBRACE] = ACTIONS(683), [anon_sym_EQ] = ACTIONS(685), [sym__special_characters] = ACTIONS(685), @@ -30261,7 +30478,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(685), }, - [854] = { + [863] = { [sym__concat] = ACTIONS(687), [anon_sym_RBRACE] = ACTIONS(687), [anon_sym_EQ] = ACTIONS(689), @@ -30283,8 +30500,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(689), }, - [855] = { - [anon_sym_DQUOTE] = ACTIONS(2866), + [864] = { + [anon_sym_DQUOTE] = ACTIONS(2888), [anon_sym_DOLLAR] = ACTIONS(693), [sym__string_content] = ACTIONS(695), [anon_sym_POUND] = ACTIONS(697), @@ -30297,20 +30514,20 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(693), [anon_sym__] = ACTIONS(693), }, - [856] = { + [865] = { [sym_simple_expansion] = STATE(130), [sym_expansion] = STATE(130), [sym_command_substitution] = STATE(130), [aux_sym_string_repeat1] = STATE(420), - [anon_sym_DQUOTE] = ACTIONS(2866), - [anon_sym_DOLLAR] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2888), + [anon_sym_DOLLAR] = ACTIONS(2890), [sym__string_content] = ACTIONS(233), [anon_sym_DOLLAR_LBRACE] = ACTIONS(235), [anon_sym_DOLLAR_LPAREN] = ACTIONS(237), [anon_sym_BQUOTE] = ACTIONS(239), [sym_comment] = ACTIONS(179), }, - [857] = { + [866] = { [sym__concat] = ACTIONS(719), [anon_sym_RBRACE] = ACTIONS(719), [anon_sym_EQ] = ACTIONS(721), @@ -30332,7 +30549,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(721), }, - [858] = { + [867] = { [sym__concat] = ACTIONS(723), [anon_sym_RBRACE] = ACTIONS(723), [anon_sym_EQ] = ACTIONS(725), @@ -30354,7 +30571,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(725), }, - [859] = { + [868] = { [sym__concat] = ACTIONS(727), [anon_sym_RBRACE] = ACTIONS(727), [anon_sym_EQ] = ACTIONS(729), @@ -30376,161 +30593,161 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(729), }, - [860] = { + [869] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2892), [sym_comment] = ACTIONS(53), }, - [861] = { - [sym_concatenation] = STATE(1304), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1304), - [anon_sym_RBRACE] = ACTIONS(2872), - [anon_sym_EQ] = ACTIONS(2874), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2876), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2878), - [anon_sym_COLON] = ACTIONS(2874), - [anon_sym_COLON_QMARK] = ACTIONS(2874), - [anon_sym_COLON_DASH] = ACTIONS(2874), - [anon_sym_PERCENT] = ACTIONS(2874), - [anon_sym_DASH] = ACTIONS(2874), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [862] = { - [sym_subscript] = STATE(1308), - [sym_variable_name] = ACTIONS(2880), - [anon_sym_DOLLAR] = ACTIONS(2882), - [anon_sym_DASH] = ACTIONS(2882), + [870] = { + [sym_subscript] = STATE(1313), + [sym_variable_name] = ACTIONS(2894), + [anon_sym_DOLLAR] = ACTIONS(2896), + [anon_sym_DASH] = ACTIONS(2896), [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2884), - [anon_sym_STAR] = ACTIONS(2882), - [anon_sym_AT] = ACTIONS(2882), - [anon_sym_QMARK] = ACTIONS(2882), - [anon_sym_0] = ACTIONS(2886), - [anon_sym__] = ACTIONS(2886), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2898), + [anon_sym_STAR] = ACTIONS(2896), + [anon_sym_AT] = ACTIONS(2896), + [anon_sym_QMARK] = ACTIONS(2896), + [anon_sym_0] = ACTIONS(2900), + [anon_sym__] = ACTIONS(2900), }, - [863] = { - [sym_concatenation] = STATE(1311), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1311), - [anon_sym_RBRACE] = ACTIONS(2888), - [anon_sym_EQ] = ACTIONS(2890), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2892), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2894), - [anon_sym_COLON] = ACTIONS(2890), - [anon_sym_COLON_QMARK] = ACTIONS(2890), - [anon_sym_COLON_DASH] = ACTIONS(2890), - [anon_sym_PERCENT] = ACTIONS(2890), - [anon_sym_DASH] = ACTIONS(2890), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [864] = { - [sym_concatenation] = STATE(1314), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1314), - [anon_sym_RBRACE] = ACTIONS(2896), - [anon_sym_EQ] = ACTIONS(2898), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2900), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(2902), - [anon_sym_COLON] = ACTIONS(2898), - [anon_sym_COLON_QMARK] = ACTIONS(2898), - [anon_sym_COLON_DASH] = ACTIONS(2898), - [anon_sym_PERCENT] = ACTIONS(2898), - [anon_sym_DASH] = ACTIONS(2898), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [865] = { + [871] = { [sym_concatenation] = STATE(1316), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1316), - [anon_sym_RBRACE] = ACTIONS(2904), - [anon_sym_EQ] = ACTIONS(2906), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(2908), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(2906), - [anon_sym_COLON_QMARK] = ACTIONS(2906), - [anon_sym_COLON_DASH] = ACTIONS(2906), - [anon_sym_PERCENT] = ACTIONS(2906), - [anon_sym_DASH] = ACTIONS(2906), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_RBRACE] = ACTIONS(2902), + [anon_sym_EQ] = ACTIONS(2904), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2906), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2908), + [anon_sym_COLON] = ACTIONS(2904), + [anon_sym_COLON_QMARK] = ACTIONS(2904), + [anon_sym_COLON_DASH] = ACTIONS(2904), + [anon_sym_PERCENT] = ACTIONS(2904), + [anon_sym_DASH] = ACTIONS(2904), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [866] = { + [872] = { + [sym_concatenation] = STATE(1319), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1319), + [anon_sym_RBRACE] = ACTIONS(2910), + [anon_sym_EQ] = ACTIONS(2912), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2914), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2916), + [anon_sym_COLON] = ACTIONS(2912), + [anon_sym_COLON_QMARK] = ACTIONS(2912), + [anon_sym_COLON_DASH] = ACTIONS(2912), + [anon_sym_PERCENT] = ACTIONS(2912), + [anon_sym_DASH] = ACTIONS(2912), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [873] = { + [sym_concatenation] = STATE(1322), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1322), + [anon_sym_RBRACE] = ACTIONS(2918), + [anon_sym_EQ] = ACTIONS(2920), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2922), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(2924), + [anon_sym_COLON] = ACTIONS(2920), + [anon_sym_COLON_QMARK] = ACTIONS(2920), + [anon_sym_COLON_DASH] = ACTIONS(2920), + [anon_sym_PERCENT] = ACTIONS(2920), + [anon_sym_DASH] = ACTIONS(2920), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [874] = { + [sym_concatenation] = STATE(1324), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1324), + [anon_sym_RBRACE] = ACTIONS(2926), + [anon_sym_EQ] = ACTIONS(2928), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(2930), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(2928), + [anon_sym_COLON_QMARK] = ACTIONS(2928), + [anon_sym_COLON_DASH] = ACTIONS(2928), + [anon_sym_PERCENT] = ACTIONS(2928), + [anon_sym_DASH] = ACTIONS(2928), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [875] = { [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2910), - [anon_sym_SEMI_SEMI] = ACTIONS(2912), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2934), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), }, - [867] = { + [876] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2910), - [anon_sym_SEMI_SEMI] = ACTIONS(2912), + [anon_sym_RPAREN] = ACTIONS(2932), + [anon_sym_SEMI_SEMI] = ACTIONS(2934), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), @@ -30552,28 +30769,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2912), - [anon_sym_LF] = ACTIONS(2914), - [anon_sym_AMP] = ACTIONS(2912), + [anon_sym_SEMI] = ACTIONS(2934), + [anon_sym_LF] = ACTIONS(2936), + [anon_sym_AMP] = ACTIONS(2934), }, - [868] = { + [877] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1319), - [sym_c_style_for_statement] = STATE(1319), - [sym_while_statement] = STATE(1319), - [sym_if_statement] = STATE(1319), - [sym_case_statement] = STATE(1319), - [sym_function_definition] = STATE(1319), - [sym_subshell] = STATE(1319), - [sym_pipeline] = STATE(1319), - [sym_list] = STATE(1319), - [sym_negated_command] = STATE(1319), - [sym_test_command] = STATE(1319), - [sym_declaration_command] = STATE(1319), - [sym_unset_command] = STATE(1319), - [sym_command] = STATE(1319), + [sym_for_statement] = STATE(1327), + [sym_c_style_for_statement] = STATE(1327), + [sym_while_statement] = STATE(1327), + [sym_if_statement] = STATE(1327), + [sym_case_statement] = STATE(1327), + [sym_function_definition] = STATE(1327), + [sym_subshell] = STATE(1327), + [sym_pipeline] = STATE(1327), + [sym_list] = STATE(1327), + [sym_negated_command] = STATE(1327), + [sym_test_command] = STATE(1327), + [sym_declaration_command] = STATE(1327), + [sym_unset_command] = STATE(1327), + [sym_command] = STATE(1327), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1320), + [sym_variable_assignment] = STATE(1328), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30622,23 +30839,23 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [869] = { + [878] = { [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(2916), + [anon_sym_SEMI_SEMI] = ACTIONS(2938), [anon_sym_PIPE_AMP] = ACTIONS(795), [anon_sym_AMP_AMP] = ACTIONS(799), [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(2910), + [anon_sym_BQUOTE] = ACTIONS(2932), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), }, - [870] = { + [879] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(2916), + [anon_sym_SEMI_SEMI] = ACTIONS(2938), [anon_sym_PIPE_AMP] = ACTIONS(795), [anon_sym_AMP_AMP] = ACTIONS(799), [anon_sym_PIPE_PIPE] = ACTIONS(799), @@ -30655,33 +30872,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(2910), + [anon_sym_BQUOTE] = ACTIONS(2932), [anon_sym_LT_LPAREN] = ACTIONS(325), [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2916), - [anon_sym_LF] = ACTIONS(2918), - [anon_sym_AMP] = ACTIONS(2916), + [anon_sym_SEMI] = ACTIONS(2938), + [anon_sym_LF] = ACTIONS(2940), + [anon_sym_AMP] = ACTIONS(2938), }, - [871] = { + [880] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1322), - [sym_c_style_for_statement] = STATE(1322), - [sym_while_statement] = STATE(1322), - [sym_if_statement] = STATE(1322), - [sym_case_statement] = STATE(1322), - [sym_function_definition] = STATE(1322), - [sym_subshell] = STATE(1322), - [sym_pipeline] = STATE(1322), - [sym_list] = STATE(1322), - [sym_negated_command] = STATE(1322), - [sym_test_command] = STATE(1322), - [sym_declaration_command] = STATE(1322), - [sym_unset_command] = STATE(1322), - [sym_command] = STATE(1322), + [sym_for_statement] = STATE(1330), + [sym_c_style_for_statement] = STATE(1330), + [sym_while_statement] = STATE(1330), + [sym_if_statement] = STATE(1330), + [sym_case_statement] = STATE(1330), + [sym_function_definition] = STATE(1330), + [sym_subshell] = STATE(1330), + [sym_pipeline] = STATE(1330), + [sym_list] = STATE(1330), + [sym_negated_command] = STATE(1330), + [sym_test_command] = STATE(1330), + [sym_declaration_command] = STATE(1330), + [sym_unset_command] = STATE(1330), + [sym_command] = STATE(1330), [sym_command_name] = STATE(155), - [sym_variable_assignment] = STATE(1323), + [sym_variable_assignment] = STATE(1331), [sym_subscript] = STATE(29), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30730,24 +30947,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(277), }, - [872] = { + [881] = { [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2942), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), }, - [873] = { + [882] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(2920), - [anon_sym_SEMI_SEMI] = ACTIONS(2922), + [anon_sym_RPAREN] = ACTIONS(2942), + [anon_sym_SEMI_SEMI] = ACTIONS(2944), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), @@ -30769,28 +30986,28 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(2922), - [anon_sym_LF] = ACTIONS(2924), - [anon_sym_AMP] = ACTIONS(2922), + [anon_sym_SEMI] = ACTIONS(2944), + [anon_sym_LF] = ACTIONS(2946), + [anon_sym_AMP] = ACTIONS(2944), }, - [874] = { + [883] = { [sym__terminated_statement] = STATE(273), - [sym_for_statement] = STATE(1326), - [sym_c_style_for_statement] = STATE(1326), - [sym_while_statement] = STATE(1326), - [sym_if_statement] = STATE(1326), - [sym_case_statement] = STATE(1326), - [sym_function_definition] = STATE(1326), - [sym_subshell] = STATE(1326), - [sym_pipeline] = STATE(1326), - [sym_list] = STATE(1326), - [sym_negated_command] = STATE(1326), - [sym_test_command] = STATE(1326), - [sym_declaration_command] = STATE(1326), - [sym_unset_command] = STATE(1326), - [sym_command] = STATE(1326), + [sym_for_statement] = STATE(1334), + [sym_c_style_for_statement] = STATE(1334), + [sym_while_statement] = STATE(1334), + [sym_if_statement] = STATE(1334), + [sym_case_statement] = STATE(1334), + [sym_function_definition] = STATE(1334), + [sym_subshell] = STATE(1334), + [sym_pipeline] = STATE(1334), + [sym_list] = STATE(1334), + [sym_negated_command] = STATE(1334), + [sym_test_command] = STATE(1334), + [sym_declaration_command] = STATE(1334), + [sym_unset_command] = STATE(1334), + [sym_command] = STATE(1334), [sym_command_name] = STATE(65), - [sym_variable_assignment] = STATE(1327), + [sym_variable_assignment] = STATE(1335), [sym_subscript] = STATE(67), [sym_file_redirect] = STATE(30), [sym_concatenation] = STATE(31), @@ -30839,300 +31056,102 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(107), }, - [875] = { - [sym__simple_heredoc_body] = ACTIONS(2926), - [sym__heredoc_body_beginning] = ACTIONS(2926), - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_EQ_TILDE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2928), - [anon_sym_LT_AMP] = ACTIONS(2928), - [anon_sym_GT_AMP] = ACTIONS(2928), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2928), - [anon_sym_LT_LT_LT] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [876] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2930), - [anon_sym_EQ] = ACTIONS(2932), - [sym__special_characters] = ACTIONS(2935), - [anon_sym_DQUOTE] = ACTIONS(2938), - [anon_sym_DOLLAR] = ACTIONS(2941), - [sym_raw_string] = ACTIONS(2944), - [anon_sym_POUND] = ACTIONS(2947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), - [anon_sym_COLON] = ACTIONS(2932), - [anon_sym_COLON_QMARK] = ACTIONS(2932), - [anon_sym_COLON_DASH] = ACTIONS(2932), - [anon_sym_PERCENT] = ACTIONS(2932), - [anon_sym_DASH] = ACTIONS(2932), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2953), - [anon_sym_BQUOTE] = ACTIONS(2956), - [anon_sym_LT_LPAREN] = ACTIONS(2959), - [anon_sym_GT_LPAREN] = ACTIONS(2959), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2962), - }, - [877] = { - [sym_concatenation] = STATE(1330), - [sym_string] = STATE(1329), - [sym_simple_expansion] = STATE(1329), - [sym_string_expansion] = STATE(1329), - [sym_expansion] = STATE(1329), - [sym_command_substitution] = STATE(1329), - [sym_process_substitution] = STATE(1329), - [anon_sym_RBRACE] = ACTIONS(2852), - [sym__special_characters] = ACTIONS(2965), - [anon_sym_DQUOTE] = ACTIONS(1734), - [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(2967), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), - [anon_sym_BQUOTE] = ACTIONS(1744), - [anon_sym_LT_LPAREN] = ACTIONS(1746), - [anon_sym_GT_LPAREN] = ACTIONS(1746), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2967), - }, - [878] = { - [sym__simple_heredoc_body] = ACTIONS(2969), - [sym__heredoc_body_beginning] = ACTIONS(2969), - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_EQ_TILDE] = ACTIONS(2971), - [anon_sym_EQ_EQ] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), - }, - [879] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2973), - }, - [880] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2975), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [881] = { - [sym__simple_heredoc_body] = ACTIONS(2977), - [sym__heredoc_body_beginning] = ACTIONS(2977), - [sym_file_descriptor] = ACTIONS(2977), - [sym__concat] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_EQ_TILDE] = ACTIONS(2979), - [anon_sym_EQ_EQ] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_GT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_GT] = ACTIONS(2979), - [anon_sym_AMP_GT_GT] = ACTIONS(2979), - [anon_sym_LT_AMP] = ACTIONS(2979), - [anon_sym_GT_AMP] = ACTIONS(2979), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_LT_LT_DASH] = ACTIONS(2979), - [anon_sym_LT_LT_LT] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), - }, - [882] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2981), - }, - [883] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2983), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, [884] = { + [sym__simple_heredoc_body] = ACTIONS(2948), + [sym__heredoc_body_beginning] = ACTIONS(2948), + [sym_file_descriptor] = ACTIONS(2948), + [sym__concat] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_EQ_TILDE] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_GT] = ACTIONS(2950), + [anon_sym_AMP_GT_GT] = ACTIONS(2950), + [anon_sym_LT_AMP] = ACTIONS(2950), + [anon_sym_GT_AMP] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_LT_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT_LT] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(2985), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [885] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(2852), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(2952), + [anon_sym_EQ] = ACTIONS(2954), + [sym__special_characters] = ACTIONS(2957), + [anon_sym_DQUOTE] = ACTIONS(2960), + [anon_sym_DOLLAR] = ACTIONS(2963), + [sym_raw_string] = ACTIONS(2966), + [anon_sym_POUND] = ACTIONS(2969), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2972), + [anon_sym_COLON] = ACTIONS(2954), + [anon_sym_COLON_QMARK] = ACTIONS(2954), + [anon_sym_COLON_DASH] = ACTIONS(2954), + [anon_sym_PERCENT] = ACTIONS(2954), + [anon_sym_DASH] = ACTIONS(2954), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2975), + [anon_sym_BQUOTE] = ACTIONS(2978), + [anon_sym_LT_LPAREN] = ACTIONS(2981), + [anon_sym_GT_LPAREN] = ACTIONS(2981), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(2984), }, [886] = { [sym_concatenation] = STATE(1337), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1337), [anon_sym_RBRACE] = ACTIONS(2987), [anon_sym_EQ] = ACTIONS(2989), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(2991), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(2989), [anon_sym_COLON_QMARK] = ACTIONS(2989), [anon_sym_COLON_DASH] = ACTIONS(2989), [anon_sym_PERCENT] = ACTIONS(2989), [anon_sym_DASH] = ACTIONS(2989), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [887] = { [sym__simple_heredoc_body] = ACTIONS(2993), @@ -31175,32 +31194,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [888] = { [sym_concatenation] = STATE(1339), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1339), [anon_sym_RBRACE] = ACTIONS(2997), [anon_sym_EQ] = ACTIONS(2999), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3001), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(2999), [anon_sym_COLON_QMARK] = ACTIONS(2999), [anon_sym_COLON_DASH] = ACTIONS(2999), [anon_sym_PERCENT] = ACTIONS(2999), [anon_sym_DASH] = ACTIONS(2999), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [889] = { [sym__simple_heredoc_body] = ACTIONS(3003), @@ -31831,107 +31850,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [914] = { - [sym_concatenation] = STATE(1359), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1359), - [anon_sym_RBRACE] = ACTIONS(3042), - [anon_sym_EQ] = ACTIONS(3044), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3046), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3048), - [anon_sym_COLON] = ACTIONS(3044), - [anon_sym_COLON_QMARK] = ACTIONS(3044), - [anon_sym_COLON_DASH] = ACTIONS(3044), - [anon_sym_PERCENT] = ACTIONS(3044), + [sym_subscript] = STATE(1360), + [sym_variable_name] = ACTIONS(3042), + [anon_sym_DOLLAR] = ACTIONS(3044), [anon_sym_DASH] = ACTIONS(3044), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3046), + [anon_sym_STAR] = ACTIONS(3044), + [anon_sym_AT] = ACTIONS(3044), + [anon_sym_QMARK] = ACTIONS(3044), + [anon_sym_0] = ACTIONS(3048), + [anon_sym__] = ACTIONS(3048), }, [915] = { - [sym_subscript] = STATE(1363), - [sym_variable_name] = ACTIONS(3050), - [anon_sym_DOLLAR] = ACTIONS(3052), + [sym_concatenation] = STATE(1363), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1363), + [anon_sym_RBRACE] = ACTIONS(3050), + [anon_sym_EQ] = ACTIONS(3052), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3054), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3056), + [anon_sym_COLON] = ACTIONS(3052), + [anon_sym_COLON_QMARK] = ACTIONS(3052), + [anon_sym_COLON_DASH] = ACTIONS(3052), + [anon_sym_PERCENT] = ACTIONS(3052), [anon_sym_DASH] = ACTIONS(3052), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3054), - [anon_sym_STAR] = ACTIONS(3052), - [anon_sym_AT] = ACTIONS(3052), - [anon_sym_QMARK] = ACTIONS(3052), - [anon_sym_0] = ACTIONS(3056), - [anon_sym__] = ACTIONS(3056), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [916] = { [sym_concatenation] = STATE(1366), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1366), [anon_sym_RBRACE] = ACTIONS(3058), [anon_sym_EQ] = ACTIONS(3060), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3062), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3064), [anon_sym_COLON] = ACTIONS(3060), [anon_sym_COLON_QMARK] = ACTIONS(3060), [anon_sym_COLON_DASH] = ACTIONS(3060), [anon_sym_PERCENT] = ACTIONS(3060), [anon_sym_DASH] = ACTIONS(3060), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [917] = { [sym_concatenation] = STATE(1369), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1369), [anon_sym_RBRACE] = ACTIONS(3066), [anon_sym_EQ] = ACTIONS(3068), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3070), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3072), [anon_sym_COLON] = ACTIONS(3068), [anon_sym_COLON_QMARK] = ACTIONS(3068), [anon_sym_COLON_DASH] = ACTIONS(3068), [anon_sym_PERCENT] = ACTIONS(3068), [anon_sym_DASH] = ACTIONS(3068), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [918] = { [anon_sym_esac] = ACTIONS(3074), @@ -32261,107 +32280,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [940] = { - [sym_concatenation] = STATE(1381), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1381), - [anon_sym_RBRACE] = ACTIONS(3109), - [anon_sym_EQ] = ACTIONS(3111), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3113), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3115), - [anon_sym_COLON] = ACTIONS(3111), - [anon_sym_COLON_QMARK] = ACTIONS(3111), - [anon_sym_COLON_DASH] = ACTIONS(3111), - [anon_sym_PERCENT] = ACTIONS(3111), + [sym_subscript] = STATE(1382), + [sym_variable_name] = ACTIONS(3109), + [anon_sym_DOLLAR] = ACTIONS(3111), [anon_sym_DASH] = ACTIONS(3111), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3113), + [anon_sym_STAR] = ACTIONS(3111), + [anon_sym_AT] = ACTIONS(3111), + [anon_sym_QMARK] = ACTIONS(3111), + [anon_sym_0] = ACTIONS(3115), + [anon_sym__] = ACTIONS(3115), }, [941] = { - [sym_subscript] = STATE(1385), - [sym_variable_name] = ACTIONS(3117), - [anon_sym_DOLLAR] = ACTIONS(3119), + [sym_concatenation] = STATE(1385), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1385), + [anon_sym_RBRACE] = ACTIONS(3117), + [anon_sym_EQ] = ACTIONS(3119), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3121), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3123), + [anon_sym_COLON] = ACTIONS(3119), + [anon_sym_COLON_QMARK] = ACTIONS(3119), + [anon_sym_COLON_DASH] = ACTIONS(3119), + [anon_sym_PERCENT] = ACTIONS(3119), [anon_sym_DASH] = ACTIONS(3119), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3121), - [anon_sym_STAR] = ACTIONS(3119), - [anon_sym_AT] = ACTIONS(3119), - [anon_sym_QMARK] = ACTIONS(3119), - [anon_sym_0] = ACTIONS(3123), - [anon_sym__] = ACTIONS(3123), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [942] = { [sym_concatenation] = STATE(1388), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1388), [anon_sym_RBRACE] = ACTIONS(3125), [anon_sym_EQ] = ACTIONS(3127), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3129), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3131), [anon_sym_COLON] = ACTIONS(3127), [anon_sym_COLON_QMARK] = ACTIONS(3127), [anon_sym_COLON_DASH] = ACTIONS(3127), [anon_sym_PERCENT] = ACTIONS(3127), [anon_sym_DASH] = ACTIONS(3127), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [943] = { [sym_concatenation] = STATE(1391), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1391), [anon_sym_RBRACE] = ACTIONS(3133), [anon_sym_EQ] = ACTIONS(3135), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3137), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3139), [anon_sym_COLON] = ACTIONS(3135), [anon_sym_COLON_QMARK] = ACTIONS(3135), [anon_sym_COLON_DASH] = ACTIONS(3135), [anon_sym_PERCENT] = ACTIONS(3135), [anon_sym_DASH] = ACTIONS(3135), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [944] = { [anon_sym_PIPE] = ACTIONS(453), @@ -32877,165 +32896,165 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3196), }, [960] = { - [sym_file_descriptor] = ACTIONS(1748), - [sym__concat] = ACTIONS(1748), - [sym_variable_name] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1750), - [anon_sym_AMP_GT] = ACTIONS(1750), - [anon_sym_AMP_GT_GT] = ACTIONS(1750), - [anon_sym_LT_AMP] = ACTIONS(1750), - [anon_sym_GT_AMP] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [961] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3198), - }, - [962] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3200), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [963] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3202), + [anon_sym_EQ] = ACTIONS(3198), [sym_comment] = ACTIONS(53), }, - [964] = { - [sym_concatenation] = STATE(1413), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1413), - [anon_sym_RBRACE] = ACTIONS(3204), - [anon_sym_EQ] = ACTIONS(3206), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3208), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3210), - [anon_sym_COLON] = ACTIONS(3206), - [anon_sym_COLON_QMARK] = ACTIONS(3206), - [anon_sym_COLON_DASH] = ACTIONS(3206), - [anon_sym_PERCENT] = ACTIONS(3206), - [anon_sym_DASH] = ACTIONS(3206), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [961] = { + [sym_concatenation] = STATE(1411), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1411), + [anon_sym_RBRACE] = ACTIONS(3200), + [anon_sym_EQ] = ACTIONS(3202), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3204), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3206), + [anon_sym_COLON] = ACTIONS(3202), + [anon_sym_COLON_QMARK] = ACTIONS(3202), + [anon_sym_COLON_DASH] = ACTIONS(3202), + [anon_sym_PERCENT] = ACTIONS(3202), + [anon_sym_DASH] = ACTIONS(3202), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [962] = { + [sym_concatenation] = STATE(1414), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1414), + [anon_sym_RBRACE] = ACTIONS(3208), + [anon_sym_EQ] = ACTIONS(3210), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3212), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3214), + [anon_sym_COLON] = ACTIONS(3210), + [anon_sym_COLON_QMARK] = ACTIONS(3210), + [anon_sym_COLON_DASH] = ACTIONS(3210), + [anon_sym_PERCENT] = ACTIONS(3210), + [anon_sym_DASH] = ACTIONS(3210), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [963] = { + [sym_concatenation] = STATE(1416), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1416), + [anon_sym_RBRACE] = ACTIONS(3192), + [anon_sym_EQ] = ACTIONS(3216), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3220), + [anon_sym_COLON] = ACTIONS(3216), + [anon_sym_COLON_QMARK] = ACTIONS(3216), + [anon_sym_COLON_DASH] = ACTIONS(3216), + [anon_sym_PERCENT] = ACTIONS(3216), + [anon_sym_DASH] = ACTIONS(3216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [964] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [965] = { - [sym_concatenation] = STATE(1416), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1416), - [anon_sym_RBRACE] = ACTIONS(3212), - [anon_sym_EQ] = ACTIONS(3214), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3216), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3218), - [anon_sym_COLON] = ACTIONS(3214), - [anon_sym_COLON_QMARK] = ACTIONS(3214), - [anon_sym_COLON_DASH] = ACTIONS(3214), - [anon_sym_PERCENT] = ACTIONS(3214), - [anon_sym_DASH] = ACTIONS(3214), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3222), }, [966] = { - [sym_concatenation] = STATE(1418), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1418), - [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(3220), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3222), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3224), - [anon_sym_COLON] = ACTIONS(3220), - [anon_sym_COLON_QMARK] = ACTIONS(3220), - [anon_sym_COLON_DASH] = ACTIONS(3220), - [anon_sym_PERCENT] = ACTIONS(3220), - [anon_sym_DASH] = ACTIONS(3220), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3224), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [967] = { [sym_file_descriptor] = ACTIONS(1816), @@ -33075,33 +33094,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(3226), }, [969] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3228), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [970] = { [sym_file_descriptor] = ACTIONS(1824), @@ -33141,33 +33160,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(3230), }, [972] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3192), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [973] = { [sym_file_descriptor] = ACTIONS(1830), @@ -33601,14 +33620,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [991] = { [sym_subscript] = STATE(1443), [sym_variable_name] = ACTIONS(3268), - [anon_sym_DOLLAR] = ACTIONS(3270), - [anon_sym_POUND] = ACTIONS(3272), - [anon_sym_DASH] = ACTIONS(3270), + [anon_sym_BANG] = ACTIONS(3270), + [anon_sym_DOLLAR] = ACTIONS(3272), + [anon_sym_POUND] = ACTIONS(3270), + [anon_sym_DASH] = ACTIONS(3272), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3274), - [anon_sym_STAR] = ACTIONS(3270), - [anon_sym_AT] = ACTIONS(3270), - [anon_sym_QMARK] = ACTIONS(3270), + [anon_sym_STAR] = ACTIONS(3272), + [anon_sym_AT] = ACTIONS(3272), + [anon_sym_QMARK] = ACTIONS(3272), [anon_sym_0] = ACTIONS(3276), [anon_sym__] = ACTIONS(3276), }, @@ -33961,152 +33981,152 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3295), }, [1003] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_EQ_TILDE] = ACTIONS(1750), - [anon_sym_EQ_EQ] = ACTIONS(1750), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1750), - [anon_sym_BANG_EQ] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [1004] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3297), - }, - [1005] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3299), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1006] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3301), + [anon_sym_EQ] = ACTIONS(3297), [sym_comment] = ACTIONS(53), }, - [1007] = { - [sym_concatenation] = STATE(1467), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1467), - [anon_sym_RBRACE] = ACTIONS(3303), - [anon_sym_EQ] = ACTIONS(3305), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3307), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3309), - [anon_sym_COLON] = ACTIONS(3305), - [anon_sym_COLON_QMARK] = ACTIONS(3305), - [anon_sym_COLON_DASH] = ACTIONS(3305), - [anon_sym_PERCENT] = ACTIONS(3305), - [anon_sym_DASH] = ACTIONS(3305), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1004] = { + [sym_concatenation] = STATE(1465), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1465), + [anon_sym_RBRACE] = ACTIONS(3299), + [anon_sym_EQ] = ACTIONS(3301), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3303), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3305), + [anon_sym_COLON] = ACTIONS(3301), + [anon_sym_COLON_QMARK] = ACTIONS(3301), + [anon_sym_COLON_DASH] = ACTIONS(3301), + [anon_sym_PERCENT] = ACTIONS(3301), + [anon_sym_DASH] = ACTIONS(3301), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [1005] = { + [sym_concatenation] = STATE(1468), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1468), + [anon_sym_RBRACE] = ACTIONS(3307), + [anon_sym_EQ] = ACTIONS(3309), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3311), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3313), + [anon_sym_COLON] = ACTIONS(3309), + [anon_sym_COLON_QMARK] = ACTIONS(3309), + [anon_sym_COLON_DASH] = ACTIONS(3309), + [anon_sym_PERCENT] = ACTIONS(3309), + [anon_sym_DASH] = ACTIONS(3309), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1006] = { + [sym_concatenation] = STATE(1470), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1470), + [anon_sym_RBRACE] = ACTIONS(3291), + [anon_sym_EQ] = ACTIONS(3315), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3317), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3319), + [anon_sym_COLON] = ACTIONS(3315), + [anon_sym_COLON_QMARK] = ACTIONS(3315), + [anon_sym_COLON_DASH] = ACTIONS(3315), + [anon_sym_PERCENT] = ACTIONS(3315), + [anon_sym_DASH] = ACTIONS(3315), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1007] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_EQ_TILDE] = ACTIONS(1774), + [anon_sym_EQ_EQ] = ACTIONS(1774), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_BANG_EQ] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [1008] = { - [sym_concatenation] = STATE(1470), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1470), - [anon_sym_RBRACE] = ACTIONS(3311), - [anon_sym_EQ] = ACTIONS(3313), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3315), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3317), - [anon_sym_COLON] = ACTIONS(3313), - [anon_sym_COLON_QMARK] = ACTIONS(3313), - [anon_sym_COLON_DASH] = ACTIONS(3313), - [anon_sym_PERCENT] = ACTIONS(3313), - [anon_sym_DASH] = ACTIONS(3313), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3321), }, [1009] = { - [sym_concatenation] = STATE(1472), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1472), - [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(3319), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3321), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3323), - [anon_sym_COLON] = ACTIONS(3319), - [anon_sym_COLON_QMARK] = ACTIONS(3319), - [anon_sym_COLON_DASH] = ACTIONS(3319), - [anon_sym_PERCENT] = ACTIONS(3319), - [anon_sym_DASH] = ACTIONS(3319), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3323), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1010] = { [sym__concat] = ACTIONS(1816), @@ -34133,33 +34153,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(3325), }, [1012] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3327), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1013] = { [sym__concat] = ACTIONS(1824), @@ -34186,33 +34206,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(3329), }, [1015] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3291), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1016] = { [sym__concat] = ACTIONS(1830), @@ -35166,239 +35186,239 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1061] = { - [sym_concatenation] = STATE(1507), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1507), - [anon_sym_RBRACE] = ACTIONS(3434), - [anon_sym_EQ] = ACTIONS(3436), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3438), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3436), - [anon_sym_COLON_QMARK] = ACTIONS(3436), - [anon_sym_COLON_DASH] = ACTIONS(3436), - [anon_sym_PERCENT] = ACTIONS(3436), - [anon_sym_DASH] = ACTIONS(3436), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1062] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_in] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1063] = { - [sym_concatenation] = STATE(1510), - [sym_string] = STATE(1509), - [sym_simple_expansion] = STATE(1509), - [sym_string_expansion] = STATE(1509), - [sym_expansion] = STATE(1509), - [sym_command_substitution] = STATE(1509), - [sym_process_substitution] = STATE(1509), + [sym_concatenation] = STATE(1508), + [sym_string] = STATE(1507), + [sym_simple_expansion] = STATE(1507), + [sym_string_expansion] = STATE(1507), + [sym_expansion] = STATE(1507), + [sym_command_substitution] = STATE(1507), + [sym_process_substitution] = STATE(1507), [anon_sym_RBRACE] = ACTIONS(3432), - [sym__special_characters] = ACTIONS(3440), + [sym__special_characters] = ACTIONS(3434), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3442), + [sym_raw_string] = ACTIONS(3436), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3442), + [sym_word] = ACTIONS(3436), + }, + [1062] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_in] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [1063] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3438), }, [1064] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_in] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3440), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [1065] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_in] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3444), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [1066] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3446), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3442), }, [1067] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_in] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3444), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [1068] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3448), + [sym_regex_without_right_brace] = ACTIONS(3446), }, [1069] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3450), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3432), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1070] = { + [sym_concatenation] = STATE(1515), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1515), + [anon_sym_RBRACE] = ACTIONS(3448), + [anon_sym_EQ] = ACTIONS(3450), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3452), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3450), + [anon_sym_COLON_QMARK] = ACTIONS(3450), + [anon_sym_COLON_DASH] = ACTIONS(3450), + [anon_sym_PERCENT] = ACTIONS(3450), + [anon_sym_DASH] = ACTIONS(3450), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3452), + [sym_word] = ACTIONS(767), }, [1071] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3432), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [anon_sym_in] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [1072] = { [sym_concatenation] = STATE(1517), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1517), [anon_sym_RBRACE] = ACTIONS(3454), [anon_sym_EQ] = ACTIONS(3456), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3458), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3456), [anon_sym_COLON_QMARK] = ACTIONS(3456), [anon_sym_COLON_DASH] = ACTIONS(3456), [anon_sym_PERCENT] = ACTIONS(3456), [anon_sym_DASH] = ACTIONS(3456), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1073] = { [sym__concat] = ACTIONS(2993), @@ -35421,32 +35441,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1074] = { [sym_concatenation] = STATE(1519), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1519), [anon_sym_RBRACE] = ACTIONS(3460), [anon_sym_EQ] = ACTIONS(3462), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3464), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3462), [anon_sym_COLON_QMARK] = ACTIONS(3462), [anon_sym_COLON_DASH] = ACTIONS(3462), [anon_sym_PERCENT] = ACTIONS(3462), [anon_sym_DASH] = ACTIONS(3462), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1075] = { [sym__concat] = ACTIONS(3003), @@ -36338,224 +36358,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1115] = { - [sym_concatenation] = STATE(1543), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1543), - [anon_sym_RBRACE] = ACTIONS(3512), - [anon_sym_EQ] = ACTIONS(3514), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3516), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3514), - [anon_sym_COLON_QMARK] = ACTIONS(3514), - [anon_sym_COLON_DASH] = ACTIONS(3514), - [anon_sym_PERCENT] = ACTIONS(3514), - [anon_sym_DASH] = ACTIONS(3514), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1116] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_RBRACK] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), - }, - [1117] = { - [sym_concatenation] = STATE(1546), - [sym_string] = STATE(1545), - [sym_simple_expansion] = STATE(1545), - [sym_string_expansion] = STATE(1545), - [sym_expansion] = STATE(1545), - [sym_command_substitution] = STATE(1545), - [sym_process_substitution] = STATE(1545), + [sym_concatenation] = STATE(1544), + [sym_string] = STATE(1543), + [sym_simple_expansion] = STATE(1543), + [sym_string_expansion] = STATE(1543), + [sym_expansion] = STATE(1543), + [sym_command_substitution] = STATE(1543), + [sym_process_substitution] = STATE(1543), [anon_sym_RBRACE] = ACTIONS(3510), - [sym__special_characters] = ACTIONS(3518), + [sym__special_characters] = ACTIONS(3512), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3520), + [sym_raw_string] = ACTIONS(3514), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3520), + [sym_word] = ACTIONS(3514), + }, + [1116] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_RBRACK] = ACTIONS(2868), + [anon_sym_EQ_TILDE] = ACTIONS(2868), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_GT] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2868), + }, + [1117] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3516), }, [1118] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_RBRACK] = ACTIONS(2969), - [anon_sym_EQ_TILDE] = ACTIONS(2969), - [anon_sym_EQ_EQ] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2969), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3518), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1119] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3522), + [sym__concat] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_RBRACK] = ACTIONS(2876), + [anon_sym_EQ_TILDE] = ACTIONS(2876), + [anon_sym_EQ_EQ] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_GT] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2876), }, [1120] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3524), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3520), }, [1121] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_RBRACK] = ACTIONS(2977), - [anon_sym_EQ_TILDE] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2977), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3522), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1122] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3526), + [sym_regex_without_right_brace] = ACTIONS(3524), }, [1123] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3528), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3510), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1124] = { + [sym_concatenation] = STATE(1551), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1551), + [anon_sym_RBRACE] = ACTIONS(3526), + [anon_sym_EQ] = ACTIONS(3528), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3530), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3528), + [anon_sym_COLON_QMARK] = ACTIONS(3528), + [anon_sym_COLON_DASH] = ACTIONS(3528), + [anon_sym_PERCENT] = ACTIONS(3528), + [anon_sym_DASH] = ACTIONS(3528), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3530), + [sym_word] = ACTIONS(767), }, [1125] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3510), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_RBRACK] = ACTIONS(2948), + [anon_sym_EQ_TILDE] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2948), }, [1126] = { [sym_concatenation] = STATE(1553), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1553), [anon_sym_RBRACE] = ACTIONS(3532), [anon_sym_EQ] = ACTIONS(3534), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3536), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3534), [anon_sym_COLON_QMARK] = ACTIONS(3534), [anon_sym_COLON_DASH] = ACTIONS(3534), [anon_sym_PERCENT] = ACTIONS(3534), [anon_sym_DASH] = ACTIONS(3534), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1127] = { [sym__concat] = ACTIONS(2993), @@ -36573,32 +36593,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1128] = { [sym_concatenation] = STATE(1555), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1555), [anon_sym_RBRACE] = ACTIONS(3538), [anon_sym_EQ] = ACTIONS(3540), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3542), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3540), [anon_sym_COLON_QMARK] = ACTIONS(3540), [anon_sym_COLON_DASH] = ACTIONS(3540), [anon_sym_PERCENT] = ACTIONS(3540), [anon_sym_DASH] = ACTIONS(3540), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1129] = { [sym__concat] = ACTIONS(3003), @@ -36843,14 +36863,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [1139] = { [sym_subscript] = STATE(1573), [sym_variable_name] = ACTIONS(3566), - [anon_sym_DOLLAR] = ACTIONS(3568), - [anon_sym_POUND] = ACTIONS(3570), - [anon_sym_DASH] = ACTIONS(3568), + [anon_sym_BANG] = ACTIONS(3568), + [anon_sym_DOLLAR] = ACTIONS(3570), + [anon_sym_POUND] = ACTIONS(3568), + [anon_sym_DASH] = ACTIONS(3570), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3572), - [anon_sym_STAR] = ACTIONS(3568), - [anon_sym_AT] = ACTIONS(3568), - [anon_sym_QMARK] = ACTIONS(3568), + [anon_sym_STAR] = ACTIONS(3570), + [anon_sym_AT] = ACTIONS(3570), + [anon_sym_QMARK] = ACTIONS(3570), [anon_sym_0] = ACTIONS(3574), [anon_sym__] = ACTIONS(3574), }, @@ -37250,230 +37271,230 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1154] = { - [sym_concatenation] = STATE(1586), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1586), - [anon_sym_RBRACE] = ACTIONS(3592), - [anon_sym_EQ] = ACTIONS(3594), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3596), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3594), - [anon_sym_COLON_QMARK] = ACTIONS(3594), - [anon_sym_COLON_DASH] = ACTIONS(3594), - [anon_sym_PERCENT] = ACTIONS(3594), - [anon_sym_DASH] = ACTIONS(3594), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1155] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), - }, - [1156] = { - [sym_concatenation] = STATE(1589), - [sym_string] = STATE(1588), - [sym_simple_expansion] = STATE(1588), - [sym_string_expansion] = STATE(1588), - [sym_expansion] = STATE(1588), - [sym_command_substitution] = STATE(1588), - [sym_process_substitution] = STATE(1588), + [sym_concatenation] = STATE(1587), + [sym_string] = STATE(1586), + [sym_simple_expansion] = STATE(1586), + [sym_string_expansion] = STATE(1586), + [sym_expansion] = STATE(1586), + [sym_command_substitution] = STATE(1586), + [sym_process_substitution] = STATE(1586), [anon_sym_RBRACE] = ACTIONS(3590), - [sym__special_characters] = ACTIONS(3598), + [sym__special_characters] = ACTIONS(3592), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3600), + [sym_raw_string] = ACTIONS(3594), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3600), + [sym_word] = ACTIONS(3594), + }, + [1155] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2868), + [anon_sym_EQ_TILDE] = ACTIONS(2868), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_GT] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2868), + }, + [1156] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3596), }, [1157] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2969), - [anon_sym_EQ_TILDE] = ACTIONS(2969), - [anon_sym_EQ_EQ] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2969), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3598), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1158] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3602), + [sym__concat] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2876), + [anon_sym_EQ_TILDE] = ACTIONS(2876), + [anon_sym_EQ_EQ] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_GT] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2876), }, [1159] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3604), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3600), }, [1160] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_RBRACK_RBRACK] = ACTIONS(2977), - [anon_sym_EQ_TILDE] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2977), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3602), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1161] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3606), + [sym_regex_without_right_brace] = ACTIONS(3604), }, [1162] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3608), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3590), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1163] = { + [sym_concatenation] = STATE(1594), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1594), + [anon_sym_RBRACE] = ACTIONS(3606), + [anon_sym_EQ] = ACTIONS(3608), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3608), + [anon_sym_COLON_QMARK] = ACTIONS(3608), + [anon_sym_COLON_DASH] = ACTIONS(3608), + [anon_sym_PERCENT] = ACTIONS(3608), + [anon_sym_DASH] = ACTIONS(3608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3610), + [sym_word] = ACTIONS(767), }, [1164] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3590), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_RBRACK_RBRACK] = ACTIONS(2948), + [anon_sym_EQ_TILDE] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2948), }, [1165] = { [sym_concatenation] = STATE(1596), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1596), [anon_sym_RBRACE] = ACTIONS(3612), [anon_sym_EQ] = ACTIONS(3614), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3616), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3614), [anon_sym_COLON_QMARK] = ACTIONS(3614), [anon_sym_COLON_DASH] = ACTIONS(3614), [anon_sym_PERCENT] = ACTIONS(3614), [anon_sym_DASH] = ACTIONS(3614), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1166] = { [sym__concat] = ACTIONS(2993), @@ -37493,32 +37514,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1167] = { [sym_concatenation] = STATE(1598), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1598), [anon_sym_RBRACE] = ACTIONS(3618), [anon_sym_EQ] = ACTIONS(3620), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3622), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3620), [anon_sym_COLON_QMARK] = ACTIONS(3620), [anon_sym_COLON_DASH] = ACTIONS(3620), [anon_sym_PERCENT] = ACTIONS(3620), [anon_sym_DASH] = ACTIONS(3620), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1168] = { [sym__concat] = ACTIONS(3003), @@ -37781,257 +37802,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1180] = { - [sym_concatenation] = STATE(1605), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1605), - [anon_sym_RBRACE] = ACTIONS(3634), - [anon_sym_EQ] = ACTIONS(3636), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3638), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3636), - [anon_sym_COLON_QMARK] = ACTIONS(3636), - [anon_sym_COLON_DASH] = ACTIONS(3636), - [anon_sym_PERCENT] = ACTIONS(3636), - [anon_sym_DASH] = ACTIONS(3636), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1181] = { - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1182] = { - [sym_concatenation] = STATE(1608), - [sym_string] = STATE(1607), - [sym_simple_expansion] = STATE(1607), - [sym_string_expansion] = STATE(1607), - [sym_expansion] = STATE(1607), - [sym_command_substitution] = STATE(1607), - [sym_process_substitution] = STATE(1607), + [sym_concatenation] = STATE(1606), + [sym_string] = STATE(1605), + [sym_simple_expansion] = STATE(1605), + [sym_string_expansion] = STATE(1605), + [sym_expansion] = STATE(1605), + [sym_command_substitution] = STATE(1605), + [sym_process_substitution] = STATE(1605), [anon_sym_RBRACE] = ACTIONS(3632), - [sym__special_characters] = ACTIONS(3640), + [sym__special_characters] = ACTIONS(3634), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3642), + [sym_raw_string] = ACTIONS(3636), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3642), + [sym_word] = ACTIONS(3636), + }, + [1181] = { + [sym__concat] = ACTIONS(2868), + [sym_variable_name] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [1182] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3638), }, [1183] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3640), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [1184] = { + [sym__concat] = ACTIONS(2876), + [sym_variable_name] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3644), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [1185] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3646), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3642), }, [1186] = { - [sym__concat] = ACTIONS(2977), - [sym_variable_name] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3644), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [1187] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3648), + [sym_regex_without_right_brace] = ACTIONS(3646), }, [1188] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3650), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3632), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1189] = { + [sym_concatenation] = STATE(1613), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1613), + [anon_sym_RBRACE] = ACTIONS(3648), + [anon_sym_EQ] = ACTIONS(3650), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3652), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3650), + [anon_sym_COLON_QMARK] = ACTIONS(3650), + [anon_sym_COLON_DASH] = ACTIONS(3650), + [anon_sym_PERCENT] = ACTIONS(3650), + [anon_sym_DASH] = ACTIONS(3650), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3652), + [sym_word] = ACTIONS(767), }, [1190] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3632), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [sym_variable_name] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [1191] = { [sym_concatenation] = STATE(1615), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1615), [anon_sym_RBRACE] = ACTIONS(3654), [anon_sym_EQ] = ACTIONS(3656), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3656), [anon_sym_COLON_QMARK] = ACTIONS(3656), [anon_sym_COLON_DASH] = ACTIONS(3656), [anon_sym_PERCENT] = ACTIONS(3656), [anon_sym_DASH] = ACTIONS(3656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1192] = { [sym__concat] = ACTIONS(2993), @@ -38060,32 +38081,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1193] = { [sym_concatenation] = STATE(1617), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1617), [anon_sym_RBRACE] = ACTIONS(3660), [anon_sym_EQ] = ACTIONS(3662), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3664), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3662), [anon_sym_COLON_QMARK] = ACTIONS(3662), [anon_sym_COLON_DASH] = ACTIONS(3662), [anon_sym_PERCENT] = ACTIONS(3662), [anon_sym_DASH] = ACTIONS(3662), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1194] = { [sym__concat] = ACTIONS(3003), @@ -38318,254 +38339,254 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1204] = { - [sym_concatenation] = STATE(1623), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1623), - [anon_sym_RBRACE] = ACTIONS(3674), - [anon_sym_EQ] = ACTIONS(3676), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3678), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3676), - [anon_sym_COLON_QMARK] = ACTIONS(3676), - [anon_sym_COLON_DASH] = ACTIONS(3676), - [anon_sym_PERCENT] = ACTIONS(3676), - [anon_sym_DASH] = ACTIONS(3676), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1205] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1206] = { - [sym_concatenation] = STATE(1626), - [sym_string] = STATE(1625), - [sym_simple_expansion] = STATE(1625), - [sym_string_expansion] = STATE(1625), - [sym_expansion] = STATE(1625), - [sym_command_substitution] = STATE(1625), - [sym_process_substitution] = STATE(1625), + [sym_concatenation] = STATE(1624), + [sym_string] = STATE(1623), + [sym_simple_expansion] = STATE(1623), + [sym_string_expansion] = STATE(1623), + [sym_expansion] = STATE(1623), + [sym_command_substitution] = STATE(1623), + [sym_process_substitution] = STATE(1623), [anon_sym_RBRACE] = ACTIONS(3672), - [sym__special_characters] = ACTIONS(3680), + [sym__special_characters] = ACTIONS(3674), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3682), + [sym_raw_string] = ACTIONS(3676), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3682), + [sym_word] = ACTIONS(3676), + }, + [1205] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [1206] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3678), }, [1207] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3680), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [1208] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3684), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [1209] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3686), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3682), }, [1210] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3684), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [1211] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3688), + [sym_regex_without_right_brace] = ACTIONS(3686), }, [1212] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3690), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3672), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1213] = { + [sym_concatenation] = STATE(1631), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1631), + [anon_sym_RBRACE] = ACTIONS(3688), + [anon_sym_EQ] = ACTIONS(3690), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3692), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3690), + [anon_sym_COLON_QMARK] = ACTIONS(3690), + [anon_sym_COLON_DASH] = ACTIONS(3690), + [anon_sym_PERCENT] = ACTIONS(3690), + [anon_sym_DASH] = ACTIONS(3690), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3692), + [sym_word] = ACTIONS(767), }, [1214] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3672), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [1215] = { [sym_concatenation] = STATE(1633), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1633), [anon_sym_RBRACE] = ACTIONS(3694), [anon_sym_EQ] = ACTIONS(3696), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3698), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3696), [anon_sym_COLON_QMARK] = ACTIONS(3696), [anon_sym_COLON_DASH] = ACTIONS(3696), [anon_sym_PERCENT] = ACTIONS(3696), [anon_sym_DASH] = ACTIONS(3696), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1216] = { [sym__concat] = ACTIONS(2993), @@ -38593,32 +38614,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1217] = { [sym_concatenation] = STATE(1635), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1635), [anon_sym_RBRACE] = ACTIONS(3700), [anon_sym_EQ] = ACTIONS(3702), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3704), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3702), [anon_sym_COLON_QMARK] = ACTIONS(3702), [anon_sym_COLON_DASH] = ACTIONS(3702), [anon_sym_PERCENT] = ACTIONS(3702), [anon_sym_DASH] = ACTIONS(3702), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1218] = { [sym__concat] = ACTIONS(3003), @@ -38847,251 +38868,251 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1228] = { - [sym_concatenation] = STATE(1641), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1641), - [anon_sym_RBRACE] = ACTIONS(3714), - [anon_sym_EQ] = ACTIONS(3716), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3718), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3716), - [anon_sym_COLON_QMARK] = ACTIONS(3716), - [anon_sym_COLON_DASH] = ACTIONS(3716), - [anon_sym_PERCENT] = ACTIONS(3716), - [anon_sym_DASH] = ACTIONS(3716), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1229] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2926), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2926), - [anon_sym_LT_AMP] = ACTIONS(2926), - [anon_sym_GT_AMP] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2926), - }, - [1230] = { - [sym_concatenation] = STATE(1644), - [sym_string] = STATE(1643), - [sym_simple_expansion] = STATE(1643), - [sym_string_expansion] = STATE(1643), - [sym_expansion] = STATE(1643), - [sym_command_substitution] = STATE(1643), - [sym_process_substitution] = STATE(1643), + [sym_concatenation] = STATE(1642), + [sym_string] = STATE(1641), + [sym_simple_expansion] = STATE(1641), + [sym_string_expansion] = STATE(1641), + [sym_expansion] = STATE(1641), + [sym_command_substitution] = STATE(1641), + [sym_process_substitution] = STATE(1641), [anon_sym_RBRACE] = ACTIONS(3712), - [sym__special_characters] = ACTIONS(3720), + [sym__special_characters] = ACTIONS(3714), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3722), + [sym_raw_string] = ACTIONS(3716), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3722), + [sym_word] = ACTIONS(3716), + }, + [1229] = { + [sym_file_descriptor] = ACTIONS(2868), + [sym__concat] = ACTIONS(2868), + [sym_variable_name] = ACTIONS(2868), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2868), + [anon_sym_AMP_GT] = ACTIONS(2870), + [anon_sym_AMP_GT_GT] = ACTIONS(2868), + [anon_sym_LT_AMP] = ACTIONS(2868), + [anon_sym_GT_AMP] = ACTIONS(2868), + [sym__special_characters] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_LT_LPAREN] = ACTIONS(2868), + [anon_sym_GT_LPAREN] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2868), + }, + [1230] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3718), }, [1231] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2969), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2969), - [anon_sym_LT_AMP] = ACTIONS(2969), - [anon_sym_GT_AMP] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2969), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3720), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1232] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3724), + [sym_file_descriptor] = ACTIONS(2876), + [sym__concat] = ACTIONS(2876), + [sym_variable_name] = ACTIONS(2876), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2876), + [anon_sym_AMP_GT] = ACTIONS(2878), + [anon_sym_AMP_GT_GT] = ACTIONS(2876), + [anon_sym_LT_AMP] = ACTIONS(2876), + [anon_sym_GT_AMP] = ACTIONS(2876), + [sym__special_characters] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [anon_sym_LT_LPAREN] = ACTIONS(2876), + [anon_sym_GT_LPAREN] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2876), }, [1233] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3726), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3722), }, [1234] = { - [sym_file_descriptor] = ACTIONS(2977), - [sym__concat] = ACTIONS(2977), - [sym_variable_name] = ACTIONS(2977), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_GT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2977), - [anon_sym_AMP_GT] = ACTIONS(2979), - [anon_sym_AMP_GT_GT] = ACTIONS(2977), - [anon_sym_LT_AMP] = ACTIONS(2977), - [anon_sym_GT_AMP] = ACTIONS(2977), - [sym__special_characters] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), - [anon_sym_BQUOTE] = ACTIONS(2977), - [anon_sym_LT_LPAREN] = ACTIONS(2977), - [anon_sym_GT_LPAREN] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2977), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3724), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1235] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3728), + [sym_regex_without_right_brace] = ACTIONS(3726), }, [1236] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3730), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3712), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1237] = { + [sym_concatenation] = STATE(1649), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1649), + [anon_sym_RBRACE] = ACTIONS(3728), + [anon_sym_EQ] = ACTIONS(3730), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3732), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3730), + [anon_sym_COLON_QMARK] = ACTIONS(3730), + [anon_sym_COLON_DASH] = ACTIONS(3730), + [anon_sym_PERCENT] = ACTIONS(3730), + [anon_sym_DASH] = ACTIONS(3730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3732), + [sym_word] = ACTIONS(767), }, [1238] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3712), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_file_descriptor] = ACTIONS(2948), + [sym__concat] = ACTIONS(2948), + [sym_variable_name] = ACTIONS(2948), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2948), + [anon_sym_AMP_GT] = ACTIONS(2950), + [anon_sym_AMP_GT_GT] = ACTIONS(2948), + [anon_sym_LT_AMP] = ACTIONS(2948), + [anon_sym_GT_AMP] = ACTIONS(2948), + [sym__special_characters] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_LT_LPAREN] = ACTIONS(2948), + [anon_sym_GT_LPAREN] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2948), }, [1239] = { [sym_concatenation] = STATE(1651), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1651), [anon_sym_RBRACE] = ACTIONS(3734), [anon_sym_EQ] = ACTIONS(3736), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3738), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3736), [anon_sym_COLON_QMARK] = ACTIONS(3736), [anon_sym_COLON_DASH] = ACTIONS(3736), [anon_sym_PERCENT] = ACTIONS(3736), [anon_sym_DASH] = ACTIONS(3736), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1240] = { [sym_file_descriptor] = ACTIONS(2993), @@ -39118,32 +39139,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1241] = { [sym_concatenation] = STATE(1653), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1653), [anon_sym_RBRACE] = ACTIONS(3740), [anon_sym_EQ] = ACTIONS(3742), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3744), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3742), [anon_sym_COLON_QMARK] = ACTIONS(3742), [anon_sym_COLON_DASH] = ACTIONS(3742), [anon_sym_PERCENT] = ACTIONS(3742), [anon_sym_DASH] = ACTIONS(3742), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1242] = { [sym_file_descriptor] = ACTIONS(3003), @@ -39334,212 +39355,212 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1251] = { - [sym_concatenation] = STATE(1659), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1659), - [anon_sym_RBRACE] = ACTIONS(3754), - [anon_sym_EQ] = ACTIONS(3756), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3756), - [anon_sym_COLON_QMARK] = ACTIONS(3756), - [anon_sym_COLON_DASH] = ACTIONS(3756), - [anon_sym_PERCENT] = ACTIONS(3756), - [anon_sym_DASH] = ACTIONS(3756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1252] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym__string_content] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - }, - [1253] = { - [sym_concatenation] = STATE(1662), - [sym_string] = STATE(1661), - [sym_simple_expansion] = STATE(1661), - [sym_string_expansion] = STATE(1661), - [sym_expansion] = STATE(1661), - [sym_command_substitution] = STATE(1661), - [sym_process_substitution] = STATE(1661), + [sym_concatenation] = STATE(1660), + [sym_string] = STATE(1659), + [sym_simple_expansion] = STATE(1659), + [sym_string_expansion] = STATE(1659), + [sym_expansion] = STATE(1659), + [sym_command_substitution] = STATE(1659), + [sym_process_substitution] = STATE(1659), [anon_sym_RBRACE] = ACTIONS(3752), - [sym__special_characters] = ACTIONS(3760), + [sym__special_characters] = ACTIONS(3754), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3762), + [sym_raw_string] = ACTIONS(3756), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3762), + [sym_word] = ACTIONS(3756), + }, + [1252] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym__string_content] = ACTIONS(2868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + }, + [1253] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3758), }, [1254] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym__string_content] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3760), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1255] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym__string_content] = ACTIONS(2876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3764), }, [1256] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3766), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(3762), }, [1257] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym__string_content] = ACTIONS(2977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3764), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1258] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3768), + [sym_regex_without_right_brace] = ACTIONS(3766), }, [1259] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3770), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3752), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1260] = { + [sym_concatenation] = STATE(1667), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1667), + [anon_sym_RBRACE] = ACTIONS(3768), + [anon_sym_EQ] = ACTIONS(3770), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3770), + [anon_sym_COLON_QMARK] = ACTIONS(3770), + [anon_sym_COLON_DASH] = ACTIONS(3770), + [anon_sym_PERCENT] = ACTIONS(3770), + [anon_sym_DASH] = ACTIONS(3770), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3772), + [sym_word] = ACTIONS(767), }, [1261] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3752), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym__string_content] = ACTIONS(2948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), }, [1262] = { [sym_concatenation] = STATE(1669), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1669), [anon_sym_RBRACE] = ACTIONS(3774), [anon_sym_EQ] = ACTIONS(3776), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3776), [anon_sym_COLON_QMARK] = ACTIONS(3776), [anon_sym_COLON_DASH] = ACTIONS(3776), [anon_sym_PERCENT] = ACTIONS(3776), [anon_sym_DASH] = ACTIONS(3776), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1263] = { [sym__concat] = ACTIONS(2993), @@ -39553,32 +39574,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1264] = { [sym_concatenation] = STATE(1671), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1671), [anon_sym_RBRACE] = ACTIONS(3780), [anon_sym_EQ] = ACTIONS(3782), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(3782), [anon_sym_COLON_QMARK] = ACTIONS(3782), [anon_sym_COLON_DASH] = ACTIONS(3782), [anon_sym_PERCENT] = ACTIONS(3782), [anon_sym_DASH] = ACTIONS(3782), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1265] = { [sym__concat] = ACTIONS(3003), @@ -39913,107 +39934,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1284] = { - [sym_concatenation] = STATE(1684), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1684), - [anon_sym_RBRACE] = ACTIONS(3816), - [anon_sym_EQ] = ACTIONS(3818), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3820), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3822), - [anon_sym_COLON] = ACTIONS(3818), - [anon_sym_COLON_QMARK] = ACTIONS(3818), - [anon_sym_COLON_DASH] = ACTIONS(3818), - [anon_sym_PERCENT] = ACTIONS(3818), + [sym_subscript] = STATE(1685), + [sym_variable_name] = ACTIONS(3816), + [anon_sym_DOLLAR] = ACTIONS(3818), [anon_sym_DASH] = ACTIONS(3818), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3820), + [anon_sym_STAR] = ACTIONS(3818), + [anon_sym_AT] = ACTIONS(3818), + [anon_sym_QMARK] = ACTIONS(3818), + [anon_sym_0] = ACTIONS(3822), + [anon_sym__] = ACTIONS(3822), }, [1285] = { - [sym_subscript] = STATE(1688), - [sym_variable_name] = ACTIONS(3824), - [anon_sym_DOLLAR] = ACTIONS(3826), + [sym_concatenation] = STATE(1688), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1688), + [anon_sym_RBRACE] = ACTIONS(3824), + [anon_sym_EQ] = ACTIONS(3826), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3828), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3830), + [anon_sym_COLON] = ACTIONS(3826), + [anon_sym_COLON_QMARK] = ACTIONS(3826), + [anon_sym_COLON_DASH] = ACTIONS(3826), + [anon_sym_PERCENT] = ACTIONS(3826), [anon_sym_DASH] = ACTIONS(3826), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3828), - [anon_sym_STAR] = ACTIONS(3826), - [anon_sym_AT] = ACTIONS(3826), - [anon_sym_QMARK] = ACTIONS(3826), - [anon_sym_0] = ACTIONS(3830), - [anon_sym__] = ACTIONS(3830), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1286] = { [sym_concatenation] = STATE(1691), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1691), [anon_sym_RBRACE] = ACTIONS(3832), [anon_sym_EQ] = ACTIONS(3834), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3836), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3838), [anon_sym_COLON] = ACTIONS(3834), [anon_sym_COLON_QMARK] = ACTIONS(3834), [anon_sym_COLON_DASH] = ACTIONS(3834), [anon_sym_PERCENT] = ACTIONS(3834), [anon_sym_DASH] = ACTIONS(3834), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1287] = { [sym_concatenation] = STATE(1694), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1694), [anon_sym_RBRACE] = ACTIONS(3840), [anon_sym_EQ] = ACTIONS(3842), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(3844), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(3846), [anon_sym_COLON] = ACTIONS(3842), [anon_sym_COLON_QMARK] = ACTIONS(3842), [anon_sym_COLON_DASH] = ACTIONS(3842), [anon_sym_PERCENT] = ACTIONS(3842), [anon_sym_DASH] = ACTIONS(3842), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1288] = { [anon_sym_PIPE] = ACTIONS(453), @@ -40342,6 +40363,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(107), }, [1297] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3864), + [sym_comment] = ACTIONS(53), + }, + [1298] = { + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(3866), + [sym_comment] = ACTIONS(53), + }, + [1299] = { + [anon_sym_RBRACE] = ACTIONS(3866), + [sym_comment] = ACTIONS(53), + }, + [1300] = { + [sym_concatenation] = STATE(1709), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1709), + [anon_sym_RBRACE] = ACTIONS(3868), + [anon_sym_EQ] = ACTIONS(3870), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3872), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3870), + [anon_sym_COLON_QMARK] = ACTIONS(3870), + [anon_sym_COLON_DASH] = ACTIONS(3870), + [anon_sym_PERCENT] = ACTIONS(3870), + [anon_sym_DASH] = ACTIONS(3870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1301] = { + [sym__simple_heredoc_body] = ACTIONS(3874), + [sym__heredoc_body_beginning] = ACTIONS(3874), + [sym_file_descriptor] = ACTIONS(3874), + [sym__concat] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [anon_sym_EQ_TILDE] = ACTIONS(3876), + [anon_sym_EQ_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_GT_GT] = ACTIONS(3876), + [anon_sym_AMP_GT] = ACTIONS(3876), + [anon_sym_AMP_GT_GT] = ACTIONS(3876), + [anon_sym_LT_AMP] = ACTIONS(3876), + [anon_sym_GT_AMP] = ACTIONS(3876), + [anon_sym_LT_LT] = ACTIONS(3876), + [anon_sym_LT_LT_DASH] = ACTIONS(3876), + [anon_sym_LT_LT_LT] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), + }, + [1302] = { + [sym_concatenation] = STATE(1711), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1711), + [anon_sym_RBRACE] = ACTIONS(3878), + [anon_sym_EQ] = ACTIONS(3880), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3882), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3880), + [anon_sym_COLON_QMARK] = ACTIONS(3880), + [anon_sym_COLON_DASH] = ACTIONS(3880), + [anon_sym_PERCENT] = ACTIONS(3880), + [anon_sym_DASH] = ACTIONS(3880), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1303] = { + [sym__simple_heredoc_body] = ACTIONS(3884), + [sym__heredoc_body_beginning] = ACTIONS(3884), + [sym_file_descriptor] = ACTIONS(3884), + [sym__concat] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_EQ_TILDE] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_AMP_GT] = ACTIONS(3886), + [anon_sym_AMP_GT_GT] = ACTIONS(3886), + [anon_sym_LT_AMP] = ACTIONS(3886), + [anon_sym_GT_AMP] = ACTIONS(3886), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LT_LT_DASH] = ACTIONS(3886), + [anon_sym_LT_LT_LT] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), + }, + [1304] = { + [sym_concatenation] = STATE(1713), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1713), + [anon_sym_RBRACE] = ACTIONS(3888), + [anon_sym_EQ] = ACTIONS(3890), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3892), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(3890), + [anon_sym_COLON_QMARK] = ACTIONS(3890), + [anon_sym_COLON_DASH] = ACTIONS(3890), + [anon_sym_PERCENT] = ACTIONS(3890), + [anon_sym_DASH] = ACTIONS(3890), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1305] = { [sym__concat] = ACTIONS(1648), [anon_sym_RBRACE] = ACTIONS(1648), [anon_sym_EQ] = ACTIONS(1650), @@ -40363,9 +40565,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1650), }, - [1298] = { - [aux_sym_concatenation_repeat1] = STATE(1298), - [sym__concat] = ACTIONS(3864), + [1306] = { + [aux_sym_concatenation_repeat1] = STATE(1306), + [sym__concat] = ACTIONS(3894), [anon_sym_RBRACE] = ACTIONS(1648), [anon_sym_EQ] = ACTIONS(1650), [sym__special_characters] = ACTIONS(1650), @@ -40386,7 +40588,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1650), }, - [1299] = { + [1307] = { [sym__concat] = ACTIONS(1655), [anon_sym_RBRACE] = ACTIONS(1655), [anon_sym_EQ] = ACTIONS(1657), @@ -40408,8 +40610,8 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1657), }, - [1300] = { - [anon_sym_DQUOTE] = ACTIONS(3867), + [1308] = { + [anon_sym_DQUOTE] = ACTIONS(3897), [anon_sym_DOLLAR] = ACTIONS(693), [sym__string_content] = ACTIONS(695), [anon_sym_POUND] = ACTIONS(697), @@ -40422,178 +40624,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_0] = ACTIONS(693), [anon_sym__] = ACTIONS(693), }, - [1301] = { - [sym_concatenation] = STATE(1710), - [sym_string] = STATE(1709), - [sym_simple_expansion] = STATE(1709), - [sym_string_expansion] = STATE(1709), - [sym_expansion] = STATE(1709), - [sym_command_substitution] = STATE(1709), - [sym_process_substitution] = STATE(1709), - [anon_sym_RBRACE] = ACTIONS(3869), - [sym__special_characters] = ACTIONS(3871), + [1309] = { + [sym_concatenation] = STATE(1718), + [sym_string] = STATE(1717), + [sym_simple_expansion] = STATE(1717), + [sym_string_expansion] = STATE(1717), + [sym_expansion] = STATE(1717), + [sym_command_substitution] = STATE(1717), + [sym_process_substitution] = STATE(1717), + [anon_sym_RBRACE] = ACTIONS(3899), + [sym__special_characters] = ACTIONS(3901), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(3873), + [sym_raw_string] = ACTIONS(3903), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3873), + [sym_word] = ACTIONS(3903), }, - [1302] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1748), - [anon_sym_POUND] = ACTIONS(1748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), - [anon_sym_COLON] = ACTIONS(1750), - [anon_sym_COLON_QMARK] = ACTIONS(1750), - [anon_sym_COLON_DASH] = ACTIONS(1750), - [anon_sym_PERCENT] = ACTIONS(1750), - [anon_sym_DASH] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), - [anon_sym_BQUOTE] = ACTIONS(1748), - [anon_sym_LT_LPAREN] = ACTIONS(1748), - [anon_sym_GT_LPAREN] = ACTIONS(1748), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(1750), - }, - [1303] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3875), - }, - [1304] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3877), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1305] = { + [1310] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(3879), + [anon_sym_EQ] = ACTIONS(3905), [sym_comment] = ACTIONS(53), }, - [1306] = { - [sym_concatenation] = STATE(1716), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1716), - [anon_sym_RBRACE] = ACTIONS(3881), - [anon_sym_EQ] = ACTIONS(3883), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3887), - [anon_sym_COLON] = ACTIONS(3883), - [anon_sym_COLON_QMARK] = ACTIONS(3883), - [anon_sym_COLON_DASH] = ACTIONS(3883), - [anon_sym_PERCENT] = ACTIONS(3883), - [anon_sym_DASH] = ACTIONS(3883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1311] = { + [sym_concatenation] = STATE(1722), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1722), + [anon_sym_RBRACE] = ACTIONS(3907), + [anon_sym_EQ] = ACTIONS(3909), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3913), + [anon_sym_COLON] = ACTIONS(3909), + [anon_sym_COLON_QMARK] = ACTIONS(3909), + [anon_sym_COLON_DASH] = ACTIONS(3909), + [anon_sym_PERCENT] = ACTIONS(3909), + [anon_sym_DASH] = ACTIONS(3909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1307] = { - [sym_concatenation] = STATE(1719), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1719), - [anon_sym_RBRACE] = ACTIONS(3889), - [anon_sym_EQ] = ACTIONS(3891), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3893), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3895), - [anon_sym_COLON] = ACTIONS(3891), - [anon_sym_COLON_QMARK] = ACTIONS(3891), - [anon_sym_COLON_DASH] = ACTIONS(3891), - [anon_sym_PERCENT] = ACTIONS(3891), - [anon_sym_DASH] = ACTIONS(3891), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1312] = { + [sym_concatenation] = STATE(1725), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1725), + [anon_sym_RBRACE] = ACTIONS(3915), + [anon_sym_EQ] = ACTIONS(3917), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3919), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3921), + [anon_sym_COLON] = ACTIONS(3917), + [anon_sym_COLON_QMARK] = ACTIONS(3917), + [anon_sym_COLON_DASH] = ACTIONS(3917), + [anon_sym_PERCENT] = ACTIONS(3917), + [anon_sym_DASH] = ACTIONS(3917), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1308] = { - [sym_concatenation] = STATE(1721), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1721), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(3897), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3899), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(3901), - [anon_sym_COLON] = ACTIONS(3897), - [anon_sym_COLON_QMARK] = ACTIONS(3897), - [anon_sym_COLON_DASH] = ACTIONS(3897), - [anon_sym_PERCENT] = ACTIONS(3897), - [anon_sym_DASH] = ACTIONS(3897), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1313] = { + [sym_concatenation] = STATE(1727), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1727), + [anon_sym_RBRACE] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(3923), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(3925), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(3927), + [anon_sym_COLON] = ACTIONS(3923), + [anon_sym_COLON_QMARK] = ACTIONS(3923), + [anon_sym_COLON_DASH] = ACTIONS(3923), + [anon_sym_PERCENT] = ACTIONS(3923), + [anon_sym_DASH] = ACTIONS(3923), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1309] = { + [1314] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_POUND] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_COLON] = ACTIONS(1774), + [anon_sym_COLON_QMARK] = ACTIONS(1774), + [anon_sym_COLON_DASH] = ACTIONS(1774), + [anon_sym_PERCENT] = ACTIONS(1774), + [anon_sym_DASH] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(1774), + }, + [1315] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(3929), + }, + [1316] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3931), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1317] = { [sym__concat] = ACTIONS(1816), [anon_sym_RBRACE] = ACTIONS(1816), [anon_sym_EQ] = ACTIONS(1818), @@ -40615,40 +40817,40 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1818), }, - [1310] = { + [1318] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3903), + [sym_regex_without_right_brace] = ACTIONS(3933), }, - [1311] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3905), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1319] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3935), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1312] = { + [1320] = { [sym__concat] = ACTIONS(1824), [anon_sym_RBRACE] = ACTIONS(1824), [anon_sym_EQ] = ACTIONS(1826), @@ -40670,108 +40872,108 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1826), }, - [1313] = { + [1321] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(3907), + [sym_regex_without_right_brace] = ACTIONS(3937), }, - [1314] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3869), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1322] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3899), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1315] = { - [sym__simple_heredoc_body] = ACTIONS(3909), - [sym__heredoc_body_beginning] = ACTIONS(3909), - [sym_file_descriptor] = ACTIONS(3909), - [sym__concat] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_EQ_TILDE] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_GT] = ACTIONS(3911), - [anon_sym_AMP_GT_GT] = ACTIONS(3911), - [anon_sym_LT_AMP] = ACTIONS(3911), - [anon_sym_GT_AMP] = ACTIONS(3911), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_LT_LT_DASH] = ACTIONS(3911), - [anon_sym_LT_LT_LT] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), + [1323] = { + [sym__simple_heredoc_body] = ACTIONS(3939), + [sym__heredoc_body_beginning] = ACTIONS(3939), + [sym_file_descriptor] = ACTIONS(3939), + [sym__concat] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_EQ_TILDE] = ACTIONS(3941), + [anon_sym_EQ_EQ] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_AMP_GT] = ACTIONS(3941), + [anon_sym_AMP_GT_GT] = ACTIONS(3941), + [anon_sym_LT_AMP] = ACTIONS(3941), + [anon_sym_GT_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3941), + [anon_sym_LT_LT_DASH] = ACTIONS(3941), + [anon_sym_LT_LT_LT] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, - [1316] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(3913), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1324] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(3943), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1317] = { + [1325] = { [sym__concat] = ACTIONS(1830), [anon_sym_RBRACE] = ACTIONS(1830), [anon_sym_EQ] = ACTIONS(1832), @@ -40793,14 +40995,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1832), }, - [1318] = { + [1326] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), [anon_sym_while] = ACTIONS(819), [anon_sym_if] = ACTIONS(819), [anon_sym_case] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(3915), + [anon_sym_RPAREN] = ACTIONS(3945), [anon_sym_function] = ACTIONS(819), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(819), @@ -40832,24 +41034,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1319] = { + [1327] = { [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3949), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LF] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), }, - [1320] = { + [1328] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3917), - [anon_sym_SEMI_SEMI] = ACTIONS(3919), + [anon_sym_RPAREN] = ACTIONS(3947), + [anon_sym_SEMI_SEMI] = ACTIONS(3949), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), @@ -40871,11 +41073,11 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(3919), - [anon_sym_LF] = ACTIONS(3921), - [anon_sym_AMP] = ACTIONS(3919), + [anon_sym_SEMI] = ACTIONS(3949), + [anon_sym_LF] = ACTIONS(3951), + [anon_sym_AMP] = ACTIONS(3949), }, - [1321] = { + [1329] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), @@ -40907,29 +41109,29 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(817), [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), - [anon_sym_BQUOTE] = ACTIONS(3915), + [anon_sym_BQUOTE] = ACTIONS(3945), [anon_sym_LT_LPAREN] = ACTIONS(817), [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1322] = { + [1330] = { [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3953), [anon_sym_PIPE_AMP] = ACTIONS(795), [anon_sym_AMP_AMP] = ACTIONS(799), [anon_sym_PIPE_PIPE] = ACTIONS(799), - [anon_sym_BQUOTE] = ACTIONS(3917), + [anon_sym_BQUOTE] = ACTIONS(3947), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym_LF] = ACTIONS(3925), - [anon_sym_AMP] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), }, - [1323] = { + [1331] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(795), - [anon_sym_SEMI_SEMI] = ACTIONS(3923), + [anon_sym_SEMI_SEMI] = ACTIONS(3953), [anon_sym_PIPE_AMP] = ACTIONS(795), [anon_sym_AMP_AMP] = ACTIONS(799), [anon_sym_PIPE_PIPE] = ACTIONS(799), @@ -40946,16 +41148,16 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(325), [anon_sym_DOLLAR_LBRACE] = ACTIONS(325), [anon_sym_DOLLAR_LPAREN] = ACTIONS(325), - [anon_sym_BQUOTE] = ACTIONS(3917), + [anon_sym_BQUOTE] = ACTIONS(3947), [anon_sym_LT_LPAREN] = ACTIONS(325), [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(3923), - [anon_sym_LF] = ACTIONS(3925), - [anon_sym_AMP] = ACTIONS(3923), + [anon_sym_SEMI] = ACTIONS(3953), + [anon_sym_LF] = ACTIONS(3955), + [anon_sym_AMP] = ACTIONS(3953), }, - [1324] = { + [1332] = { [sym__concat] = ACTIONS(1864), [anon_sym_RBRACE] = ACTIONS(1864), [anon_sym_EQ] = ACTIONS(1866), @@ -40977,14 +41179,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(1866), }, - [1325] = { + [1333] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), [anon_sym_while] = ACTIONS(819), [anon_sym_if] = ACTIONS(819), [anon_sym_case] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(3927), + [anon_sym_RPAREN] = ACTIONS(3957), [anon_sym_function] = ACTIONS(819), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(819), @@ -41016,24 +41218,24 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1326] = { + [1334] = { [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3929), - [anon_sym_SEMI_SEMI] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3959), + [anon_sym_SEMI_SEMI] = ACTIONS(3961), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3931), - [anon_sym_LF] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_LF] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), }, - [1327] = { + [1335] = { [sym_file_descriptor] = ACTIONS(323), [sym_variable_name] = ACTIONS(323), [anon_sym_PIPE] = ACTIONS(453), - [anon_sym_RPAREN] = ACTIONS(3929), - [anon_sym_SEMI_SEMI] = ACTIONS(3931), + [anon_sym_RPAREN] = ACTIONS(3959), + [anon_sym_SEMI_SEMI] = ACTIONS(3961), [anon_sym_PIPE_AMP] = ACTIONS(453), [anon_sym_AMP_AMP] = ACTIONS(459), [anon_sym_PIPE_PIPE] = ACTIONS(459), @@ -41055,190 +41257,9 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_GT_LPAREN] = ACTIONS(325), [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(325), - [anon_sym_SEMI] = ACTIONS(3931), - [anon_sym_LF] = ACTIONS(3933), - [anon_sym_AMP] = ACTIONS(3931), - }, - [1328] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3935), - [sym_comment] = ACTIONS(53), - }, - [1329] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(3937), - [sym_comment] = ACTIONS(53), - }, - [1330] = { - [anon_sym_RBRACE] = ACTIONS(3937), - [sym_comment] = ACTIONS(53), - }, - [1331] = { - [sym_concatenation] = STATE(1734), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1734), - [anon_sym_RBRACE] = ACTIONS(3939), - [anon_sym_EQ] = ACTIONS(3941), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3943), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3941), - [anon_sym_COLON_QMARK] = ACTIONS(3941), - [anon_sym_COLON_DASH] = ACTIONS(3941), - [anon_sym_PERCENT] = ACTIONS(3941), - [anon_sym_DASH] = ACTIONS(3941), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1332] = { - [sym__simple_heredoc_body] = ACTIONS(3945), - [sym__heredoc_body_beginning] = ACTIONS(3945), - [sym_file_descriptor] = ACTIONS(3945), - [sym__concat] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [anon_sym_EQ_TILDE] = ACTIONS(3947), - [anon_sym_EQ_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3947), - [anon_sym_AMP_GT] = ACTIONS(3947), - [anon_sym_AMP_GT_GT] = ACTIONS(3947), - [anon_sym_LT_AMP] = ACTIONS(3947), - [anon_sym_GT_AMP] = ACTIONS(3947), - [anon_sym_LT_LT] = ACTIONS(3947), - [anon_sym_LT_LT_DASH] = ACTIONS(3947), - [anon_sym_LT_LT_LT] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), - }, - [1333] = { - [sym_concatenation] = STATE(1736), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1736), - [anon_sym_RBRACE] = ACTIONS(3949), - [anon_sym_EQ] = ACTIONS(3951), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3953), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3951), - [anon_sym_COLON_QMARK] = ACTIONS(3951), - [anon_sym_COLON_DASH] = ACTIONS(3951), - [anon_sym_PERCENT] = ACTIONS(3951), - [anon_sym_DASH] = ACTIONS(3951), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1334] = { - [sym__simple_heredoc_body] = ACTIONS(3955), - [sym__heredoc_body_beginning] = ACTIONS(3955), - [sym_file_descriptor] = ACTIONS(3955), - [sym__concat] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_EQ_TILDE] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3957), - [anon_sym_AMP_GT] = ACTIONS(3957), - [anon_sym_AMP_GT_GT] = ACTIONS(3957), - [anon_sym_LT_AMP] = ACTIONS(3957), - [anon_sym_GT_AMP] = ACTIONS(3957), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_LT_LT_DASH] = ACTIONS(3957), - [anon_sym_LT_LT_LT] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), - }, - [1335] = { - [sym_concatenation] = STATE(1738), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1738), - [anon_sym_RBRACE] = ACTIONS(3959), - [anon_sym_EQ] = ACTIONS(3961), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(3963), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(3961), - [anon_sym_COLON_QMARK] = ACTIONS(3961), - [anon_sym_COLON_DASH] = ACTIONS(3961), - [anon_sym_PERCENT] = ACTIONS(3961), - [anon_sym_DASH] = ACTIONS(3961), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(3961), + [anon_sym_LF] = ACTIONS(3963), + [anon_sym_AMP] = ACTIONS(3961), }, [1336] = { [sym__simple_heredoc_body] = ACTIONS(3965), @@ -41280,33 +41301,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1337] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3969), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1338] = { [sym__simple_heredoc_body] = ACTIONS(3971), @@ -41348,33 +41369,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1339] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(3975), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1340] = { [sym__simple_heredoc_body] = ACTIONS(3977), @@ -41764,139 +41785,139 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4009), }, [1357] = { - [sym__heredoc_body_middle] = ACTIONS(1748), - [sym__heredoc_body_end] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4011), [sym_comment] = ACTIONS(53), }, [1358] = { + [sym_concatenation] = STATE(1759), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1759), + [anon_sym_RBRACE] = ACTIONS(4013), + [anon_sym_EQ] = ACTIONS(4015), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4017), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4019), + [anon_sym_COLON] = ACTIONS(4015), + [anon_sym_COLON_QMARK] = ACTIONS(4015), + [anon_sym_COLON_DASH] = ACTIONS(4015), + [anon_sym_PERCENT] = ACTIONS(4015), + [anon_sym_DASH] = ACTIONS(4015), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4011), + [sym_word] = ACTIONS(767), }, [1359] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4013), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1762), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1762), + [anon_sym_RBRACE] = ACTIONS(4021), + [anon_sym_EQ] = ACTIONS(4023), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4025), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4027), + [anon_sym_COLON] = ACTIONS(4023), + [anon_sym_COLON_QMARK] = ACTIONS(4023), + [anon_sym_COLON_DASH] = ACTIONS(4023), + [anon_sym_PERCENT] = ACTIONS(4023), + [anon_sym_DASH] = ACTIONS(4023), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1360] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4015), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1764), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1764), + [anon_sym_RBRACE] = ACTIONS(4005), + [anon_sym_EQ] = ACTIONS(4029), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4031), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4033), + [anon_sym_COLON] = ACTIONS(4029), + [anon_sym_COLON_QMARK] = ACTIONS(4029), + [anon_sym_COLON_DASH] = ACTIONS(4029), + [anon_sym_PERCENT] = ACTIONS(4029), + [anon_sym_DASH] = ACTIONS(4029), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1361] = { - [sym_concatenation] = STATE(1761), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1761), - [anon_sym_RBRACE] = ACTIONS(4017), - [anon_sym_EQ] = ACTIONS(4019), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4021), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4023), - [anon_sym_COLON] = ACTIONS(4019), - [anon_sym_COLON_QMARK] = ACTIONS(4019), - [anon_sym_COLON_DASH] = ACTIONS(4019), - [anon_sym_PERCENT] = ACTIONS(4019), - [anon_sym_DASH] = ACTIONS(4019), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__heredoc_body_middle] = ACTIONS(1772), + [sym__heredoc_body_end] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), }, [1362] = { - [sym_concatenation] = STATE(1764), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1764), - [anon_sym_RBRACE] = ACTIONS(4025), - [anon_sym_EQ] = ACTIONS(4027), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4029), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4031), - [anon_sym_COLON] = ACTIONS(4027), - [anon_sym_COLON_QMARK] = ACTIONS(4027), - [anon_sym_COLON_DASH] = ACTIONS(4027), - [anon_sym_PERCENT] = ACTIONS(4027), - [anon_sym_DASH] = ACTIONS(4027), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4035), }, [1363] = { - [sym_concatenation] = STATE(1766), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1766), - [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(4033), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4035), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4037), - [anon_sym_COLON] = ACTIONS(4033), - [anon_sym_COLON_QMARK] = ACTIONS(4033), - [anon_sym_COLON_DASH] = ACTIONS(4033), - [anon_sym_PERCENT] = ACTIONS(4033), - [anon_sym_DASH] = ACTIONS(4033), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4037), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1364] = { [sym__heredoc_body_middle] = ACTIONS(1816), @@ -41910,33 +41931,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4039), }, [1366] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4041), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1367] = { [sym__heredoc_body_middle] = ACTIONS(1824), @@ -41950,33 +41971,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4043), }, [1369] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4005), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1370] = { [aux_sym_concatenation_repeat1] = STATE(1370), @@ -42110,147 +42131,147 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4062), }, [1379] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_RPAREN] = ACTIONS(1748), - [sym__special_characters] = ACTIONS(1748), - [anon_sym_DQUOTE] = ACTIONS(1748), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1748), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1748), - [anon_sym_BQUOTE] = ACTIONS(1748), - [anon_sym_LT_LPAREN] = ACTIONS(1748), - [anon_sym_GT_LPAREN] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4064), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(1748), }, [1380] = { + [sym_concatenation] = STATE(1778), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1778), + [anon_sym_RBRACE] = ACTIONS(4066), + [anon_sym_EQ] = ACTIONS(4068), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4070), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4072), + [anon_sym_COLON] = ACTIONS(4068), + [anon_sym_COLON_QMARK] = ACTIONS(4068), + [anon_sym_COLON_DASH] = ACTIONS(4068), + [anon_sym_PERCENT] = ACTIONS(4068), + [anon_sym_DASH] = ACTIONS(4068), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4064), + [sym_word] = ACTIONS(767), }, [1381] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4066), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1781), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1781), + [anon_sym_RBRACE] = ACTIONS(4074), + [anon_sym_EQ] = ACTIONS(4076), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4078), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4080), + [anon_sym_COLON] = ACTIONS(4076), + [anon_sym_COLON_QMARK] = ACTIONS(4076), + [anon_sym_COLON_DASH] = ACTIONS(4076), + [anon_sym_PERCENT] = ACTIONS(4076), + [anon_sym_DASH] = ACTIONS(4076), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1382] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4068), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(1783), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1783), + [anon_sym_RBRACE] = ACTIONS(4058), + [anon_sym_EQ] = ACTIONS(4082), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4084), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4086), + [anon_sym_COLON] = ACTIONS(4082), + [anon_sym_COLON_QMARK] = ACTIONS(4082), + [anon_sym_COLON_DASH] = ACTIONS(4082), + [anon_sym_PERCENT] = ACTIONS(4082), + [anon_sym_DASH] = ACTIONS(4082), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1383] = { - [sym_concatenation] = STATE(1780), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1780), - [anon_sym_RBRACE] = ACTIONS(4070), - [anon_sym_EQ] = ACTIONS(4072), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4074), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4076), - [anon_sym_COLON] = ACTIONS(4072), - [anon_sym_COLON_QMARK] = ACTIONS(4072), - [anon_sym_COLON_DASH] = ACTIONS(4072), - [anon_sym_PERCENT] = ACTIONS(4072), - [anon_sym_DASH] = ACTIONS(4072), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(1772), + [anon_sym_RPAREN] = ACTIONS(1772), + [sym__special_characters] = ACTIONS(1772), + [anon_sym_DQUOTE] = ACTIONS(1772), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1772), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1772), + [anon_sym_BQUOTE] = ACTIONS(1772), + [anon_sym_LT_LPAREN] = ACTIONS(1772), + [anon_sym_GT_LPAREN] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(1772), }, [1384] = { - [sym_concatenation] = STATE(1783), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1783), - [anon_sym_RBRACE] = ACTIONS(4078), - [anon_sym_EQ] = ACTIONS(4080), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4082), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4084), - [anon_sym_COLON] = ACTIONS(4080), - [anon_sym_COLON_QMARK] = ACTIONS(4080), - [anon_sym_COLON_DASH] = ACTIONS(4080), - [anon_sym_PERCENT] = ACTIONS(4080), - [anon_sym_DASH] = ACTIONS(4080), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4088), }, [1385] = { - [sym_concatenation] = STATE(1785), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1785), - [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(4086), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4088), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4090), - [anon_sym_COLON] = ACTIONS(4086), - [anon_sym_COLON_QMARK] = ACTIONS(4086), - [anon_sym_COLON_DASH] = ACTIONS(4086), - [anon_sym_PERCENT] = ACTIONS(4086), - [anon_sym_DASH] = ACTIONS(4086), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4090), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1386] = { [sym__concat] = ACTIONS(1816), @@ -42272,33 +42293,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4092), }, [1388] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4094), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1389] = { [sym__concat] = ACTIONS(1824), @@ -42320,33 +42341,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4096), }, [1391] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4058), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1392] = { [sym__concat] = ACTIONS(1830), @@ -42705,281 +42726,281 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1408] = { - [sym_concatenation] = STATE(1797), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1797), - [anon_sym_RBRACE] = ACTIONS(4122), - [anon_sym_EQ] = ACTIONS(4124), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4126), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4124), - [anon_sym_COLON_QMARK] = ACTIONS(4124), - [anon_sym_COLON_DASH] = ACTIONS(4124), - [anon_sym_PERCENT] = ACTIONS(4124), - [anon_sym_DASH] = ACTIONS(4124), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1409] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2928), - [anon_sym_LT_AMP] = ACTIONS(2928), - [anon_sym_GT_AMP] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1410] = { - [sym_concatenation] = STATE(1800), - [sym_string] = STATE(1799), - [sym_simple_expansion] = STATE(1799), - [sym_string_expansion] = STATE(1799), - [sym_expansion] = STATE(1799), - [sym_command_substitution] = STATE(1799), - [sym_process_substitution] = STATE(1799), + [sym_concatenation] = STATE(1798), + [sym_string] = STATE(1797), + [sym_simple_expansion] = STATE(1797), + [sym_string_expansion] = STATE(1797), + [sym_expansion] = STATE(1797), + [sym_command_substitution] = STATE(1797), + [sym_process_substitution] = STATE(1797), [anon_sym_RBRACE] = ACTIONS(4120), - [sym__special_characters] = ACTIONS(4128), + [sym__special_characters] = ACTIONS(4122), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4130), + [sym_raw_string] = ACTIONS(4124), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4130), + [sym_word] = ACTIONS(4124), + }, + [1409] = { + [sym_file_descriptor] = ACTIONS(2868), + [sym__concat] = ACTIONS(2868), + [sym_variable_name] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_GT] = ACTIONS(2870), + [anon_sym_AMP_GT_GT] = ACTIONS(2870), + [anon_sym_LT_AMP] = ACTIONS(2870), + [anon_sym_GT_AMP] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [1410] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4126), }, [1411] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4128), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [1412] = { + [sym_file_descriptor] = ACTIONS(2876), + [sym__concat] = ACTIONS(2876), + [sym_variable_name] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_GT] = ACTIONS(2878), + [anon_sym_AMP_GT_GT] = ACTIONS(2878), + [anon_sym_LT_AMP] = ACTIONS(2878), + [anon_sym_GT_AMP] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4132), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [1413] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4134), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4130), }, [1414] = { - [sym_file_descriptor] = ACTIONS(2977), - [sym__concat] = ACTIONS(2977), - [sym_variable_name] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_GT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_GT] = ACTIONS(2979), - [anon_sym_AMP_GT_GT] = ACTIONS(2979), - [anon_sym_LT_AMP] = ACTIONS(2979), - [anon_sym_GT_AMP] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4132), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [1415] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4136), + [sym_regex_without_right_brace] = ACTIONS(4134), }, [1416] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4138), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4120), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1417] = { + [sym_concatenation] = STATE(1805), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1805), + [anon_sym_RBRACE] = ACTIONS(4136), + [anon_sym_EQ] = ACTIONS(4138), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4140), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4138), + [anon_sym_COLON_QMARK] = ACTIONS(4138), + [anon_sym_COLON_DASH] = ACTIONS(4138), + [anon_sym_PERCENT] = ACTIONS(4138), + [anon_sym_DASH] = ACTIONS(4138), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4140), + [sym_word] = ACTIONS(767), }, [1418] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4120), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(2948), + [sym__concat] = ACTIONS(2948), + [sym_variable_name] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_GT] = ACTIONS(2950), + [anon_sym_AMP_GT_GT] = ACTIONS(2950), + [anon_sym_LT_AMP] = ACTIONS(2950), + [anon_sym_GT_AMP] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [1419] = { [sym_concatenation] = STATE(1807), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1807), [anon_sym_RBRACE] = ACTIONS(4142), [anon_sym_EQ] = ACTIONS(4144), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4146), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4144), [anon_sym_COLON_QMARK] = ACTIONS(4144), [anon_sym_COLON_DASH] = ACTIONS(4144), [anon_sym_PERCENT] = ACTIONS(4144), [anon_sym_DASH] = ACTIONS(4144), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1420] = { [sym_file_descriptor] = ACTIONS(2993), @@ -43016,32 +43037,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1421] = { [sym_concatenation] = STATE(1809), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1809), [anon_sym_RBRACE] = ACTIONS(4148), [anon_sym_EQ] = ACTIONS(4150), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4152), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4150), [anon_sym_COLON_QMARK] = ACTIONS(4150), [anon_sym_COLON_DASH] = ACTIONS(4150), [anon_sym_PERCENT] = ACTIONS(4150), [anon_sym_DASH] = ACTIONS(4150), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1422] = { [sym_file_descriptor] = ACTIONS(3003), @@ -43455,107 +43476,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1440] = { - [sym_concatenation] = STATE(1822), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1822), - [anon_sym_RBRACE] = ACTIONS(4174), - [anon_sym_EQ] = ACTIONS(4176), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4180), - [anon_sym_COLON] = ACTIONS(4176), - [anon_sym_COLON_QMARK] = ACTIONS(4176), - [anon_sym_COLON_DASH] = ACTIONS(4176), - [anon_sym_PERCENT] = ACTIONS(4176), + [sym_subscript] = STATE(1823), + [sym_variable_name] = ACTIONS(4174), + [anon_sym_DOLLAR] = ACTIONS(4176), [anon_sym_DASH] = ACTIONS(4176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4178), + [anon_sym_STAR] = ACTIONS(4176), + [anon_sym_AT] = ACTIONS(4176), + [anon_sym_QMARK] = ACTIONS(4176), + [anon_sym_0] = ACTIONS(4180), + [anon_sym__] = ACTIONS(4180), }, [1441] = { - [sym_subscript] = STATE(1826), - [sym_variable_name] = ACTIONS(4182), - [anon_sym_DOLLAR] = ACTIONS(4184), + [sym_concatenation] = STATE(1826), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1826), + [anon_sym_RBRACE] = ACTIONS(4182), + [anon_sym_EQ] = ACTIONS(4184), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4186), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4188), + [anon_sym_COLON] = ACTIONS(4184), + [anon_sym_COLON_QMARK] = ACTIONS(4184), + [anon_sym_COLON_DASH] = ACTIONS(4184), + [anon_sym_PERCENT] = ACTIONS(4184), [anon_sym_DASH] = ACTIONS(4184), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4186), - [anon_sym_STAR] = ACTIONS(4184), - [anon_sym_AT] = ACTIONS(4184), - [anon_sym_QMARK] = ACTIONS(4184), - [anon_sym_0] = ACTIONS(4188), - [anon_sym__] = ACTIONS(4188), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1442] = { [sym_concatenation] = STATE(1829), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1829), [anon_sym_RBRACE] = ACTIONS(4190), [anon_sym_EQ] = ACTIONS(4192), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4194), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(4196), [anon_sym_COLON] = ACTIONS(4192), [anon_sym_COLON_QMARK] = ACTIONS(4192), [anon_sym_COLON_DASH] = ACTIONS(4192), [anon_sym_PERCENT] = ACTIONS(4192), [anon_sym_DASH] = ACTIONS(4192), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1443] = { [sym_concatenation] = STATE(1832), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1832), [anon_sym_RBRACE] = ACTIONS(4198), [anon_sym_EQ] = ACTIONS(4200), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4202), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(4204), [anon_sym_COLON] = ACTIONS(4200), [anon_sym_COLON_QMARK] = ACTIONS(4200), [anon_sym_COLON_DASH] = ACTIONS(4200), [anon_sym_PERCENT] = ACTIONS(4200), [anon_sym_DASH] = ACTIONS(4200), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1444] = { [anon_sym_PIPE] = ACTIONS(453), @@ -44015,242 +44036,242 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1462] = { - [sym_concatenation] = STATE(1851), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1851), - [anon_sym_RBRACE] = ACTIONS(4244), - [anon_sym_EQ] = ACTIONS(4246), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4248), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4246), - [anon_sym_COLON_QMARK] = ACTIONS(4246), - [anon_sym_COLON_DASH] = ACTIONS(4246), - [anon_sym_PERCENT] = ACTIONS(4246), - [anon_sym_DASH] = ACTIONS(4246), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1463] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_EQ_TILDE] = ACTIONS(2928), - [anon_sym_EQ_EQ] = ACTIONS(2928), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_BANG_EQ] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [1464] = { - [sym_concatenation] = STATE(1854), - [sym_string] = STATE(1853), - [sym_simple_expansion] = STATE(1853), - [sym_string_expansion] = STATE(1853), - [sym_expansion] = STATE(1853), - [sym_command_substitution] = STATE(1853), - [sym_process_substitution] = STATE(1853), + [sym_concatenation] = STATE(1852), + [sym_string] = STATE(1851), + [sym_simple_expansion] = STATE(1851), + [sym_string_expansion] = STATE(1851), + [sym_expansion] = STATE(1851), + [sym_command_substitution] = STATE(1851), + [sym_process_substitution] = STATE(1851), [anon_sym_RBRACE] = ACTIONS(4242), - [sym__special_characters] = ACTIONS(4250), + [sym__special_characters] = ACTIONS(4244), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4252), + [sym_raw_string] = ACTIONS(4246), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4252), + [sym_word] = ACTIONS(4246), + }, + [1463] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_EQ_TILDE] = ACTIONS(2870), + [anon_sym_EQ_EQ] = ACTIONS(2870), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_BANG_EQ] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [1464] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4248), }, [1465] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_EQ_TILDE] = ACTIONS(2971), - [anon_sym_EQ_EQ] = ACTIONS(2971), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_BANG_EQ] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4250), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [1466] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_EQ_TILDE] = ACTIONS(2878), + [anon_sym_EQ_EQ] = ACTIONS(2878), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_BANG_EQ] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4254), + [sym_test_operator] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [1467] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4256), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4252), }, [1468] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_EQ_TILDE] = ACTIONS(2979), - [anon_sym_EQ_EQ] = ACTIONS(2979), - [anon_sym_EQ] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_GT] = ACTIONS(2979), - [anon_sym_BANG_EQ] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4254), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [1469] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4258), + [sym_regex_without_right_brace] = ACTIONS(4256), }, [1470] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4260), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4242), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1471] = { + [sym_concatenation] = STATE(1859), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1859), + [anon_sym_RBRACE] = ACTIONS(4258), + [anon_sym_EQ] = ACTIONS(4260), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4262), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4260), + [anon_sym_COLON_QMARK] = ACTIONS(4260), + [anon_sym_COLON_DASH] = ACTIONS(4260), + [anon_sym_PERCENT] = ACTIONS(4260), + [anon_sym_DASH] = ACTIONS(4260), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4262), + [sym_word] = ACTIONS(767), }, [1472] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4242), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_EQ_TILDE] = ACTIONS(2950), + [anon_sym_EQ_EQ] = ACTIONS(2950), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_BANG_EQ] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_test_operator] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [1473] = { [sym_concatenation] = STATE(1861), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1861), [anon_sym_RBRACE] = ACTIONS(4264), [anon_sym_EQ] = ACTIONS(4266), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4268), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4266), [anon_sym_COLON_QMARK] = ACTIONS(4266), [anon_sym_COLON_DASH] = ACTIONS(4266), [anon_sym_PERCENT] = ACTIONS(4266), [anon_sym_DASH] = ACTIONS(4266), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1474] = { [sym__concat] = ACTIONS(2993), @@ -44274,32 +44295,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1475] = { [sym_concatenation] = STATE(1863), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1863), [anon_sym_RBRACE] = ACTIONS(4270), [anon_sym_EQ] = ACTIONS(4272), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4274), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4272), [anon_sym_COLON_QMARK] = ACTIONS(4272), [anon_sym_COLON_DASH] = ACTIONS(4272), [anon_sym_PERCENT] = ACTIONS(4272), [anon_sym_DASH] = ACTIONS(4272), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1476] = { [sym__concat] = ACTIONS(3003), @@ -45032,193 +45053,193 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [1506] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_in] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4374), + [sym_comment] = ACTIONS(53), }, [1507] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4374), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1508] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4376), [sym_comment] = ACTIONS(53), }, - [1509] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4378), + [1508] = { + [anon_sym_RBRACE] = ACTIONS(4376), [sym_comment] = ACTIONS(53), }, + [1509] = { + [sym_concatenation] = STATE(1908), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1908), + [anon_sym_RBRACE] = ACTIONS(4378), + [anon_sym_EQ] = ACTIONS(4380), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4382), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4380), + [anon_sym_COLON_QMARK] = ACTIONS(4380), + [anon_sym_COLON_DASH] = ACTIONS(4380), + [anon_sym_PERCENT] = ACTIONS(4380), + [anon_sym_DASH] = ACTIONS(4380), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1510] = { - [anon_sym_RBRACE] = ACTIONS(4378), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [anon_sym_in] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [1511] = { - [sym_concatenation] = STATE(1909), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1909), - [anon_sym_RBRACE] = ACTIONS(4380), - [anon_sym_EQ] = ACTIONS(4382), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4384), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4382), - [anon_sym_COLON_QMARK] = ACTIONS(4382), - [anon_sym_COLON_DASH] = ACTIONS(4382), - [anon_sym_PERCENT] = ACTIONS(4382), - [anon_sym_DASH] = ACTIONS(4382), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1910), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1910), + [anon_sym_RBRACE] = ACTIONS(4384), + [anon_sym_EQ] = ACTIONS(4386), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4388), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4386), + [anon_sym_COLON_QMARK] = ACTIONS(4386), + [anon_sym_COLON_DASH] = ACTIONS(4386), + [anon_sym_PERCENT] = ACTIONS(4386), + [anon_sym_DASH] = ACTIONS(4386), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1512] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_in] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [anon_sym_in] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [1513] = { - [sym_concatenation] = STATE(1911), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1911), - [anon_sym_RBRACE] = ACTIONS(4386), - [anon_sym_EQ] = ACTIONS(4388), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4390), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4388), - [anon_sym_COLON_QMARK] = ACTIONS(4388), - [anon_sym_COLON_DASH] = ACTIONS(4388), - [anon_sym_PERCENT] = ACTIONS(4388), - [anon_sym_DASH] = ACTIONS(4388), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1912), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1912), + [anon_sym_RBRACE] = ACTIONS(4390), + [anon_sym_EQ] = ACTIONS(4392), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4394), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4392), + [anon_sym_COLON_QMARK] = ACTIONS(4392), + [anon_sym_COLON_DASH] = ACTIONS(4392), + [anon_sym_PERCENT] = ACTIONS(4392), + [anon_sym_DASH] = ACTIONS(4392), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1514] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_in] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [anon_sym_in] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [1515] = { - [sym_concatenation] = STATE(1913), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1913), - [anon_sym_RBRACE] = ACTIONS(4392), - [anon_sym_EQ] = ACTIONS(4394), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4396), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4394), - [anon_sym_COLON_QMARK] = ACTIONS(4394), - [anon_sym_COLON_DASH] = ACTIONS(4394), - [anon_sym_PERCENT] = ACTIONS(4394), - [anon_sym_DASH] = ACTIONS(4394), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4396), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1516] = { [sym__concat] = ACTIONS(3965), @@ -45240,33 +45261,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1517] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4398), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1518] = { [sym__concat] = ACTIONS(3971), @@ -45288,33 +45309,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1519] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4400), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1520] = { [sym__concat] = ACTIONS(3977), @@ -45748,178 +45769,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3810), }, [1542] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_RBRACK] = ACTIONS(3909), - [anon_sym_EQ_TILDE] = ACTIONS(3909), - [anon_sym_EQ_EQ] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_BANG_EQ] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4423), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3909), }, [1543] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4423), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1544] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4425), [sym_comment] = ACTIONS(53), }, - [1545] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4427), + [1544] = { + [anon_sym_RBRACE] = ACTIONS(4425), [sym_comment] = ACTIONS(53), }, + [1545] = { + [sym_concatenation] = STATE(1926), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1926), + [anon_sym_RBRACE] = ACTIONS(4427), + [anon_sym_EQ] = ACTIONS(4429), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4431), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4429), + [anon_sym_COLON_QMARK] = ACTIONS(4429), + [anon_sym_COLON_DASH] = ACTIONS(4429), + [anon_sym_PERCENT] = ACTIONS(4429), + [anon_sym_DASH] = ACTIONS(4429), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1546] = { - [anon_sym_RBRACE] = ACTIONS(4427), + [sym__concat] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_PIPE_PIPE] = ACTIONS(3874), + [anon_sym_RBRACK] = ACTIONS(3874), + [anon_sym_EQ_TILDE] = ACTIONS(3874), + [anon_sym_EQ_EQ] = ACTIONS(3874), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3874), + [anon_sym_GT] = ACTIONS(3874), + [anon_sym_BANG_EQ] = ACTIONS(3874), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3874), }, [1547] = { - [sym_concatenation] = STATE(1927), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1927), - [anon_sym_RBRACE] = ACTIONS(4429), - [anon_sym_EQ] = ACTIONS(4431), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4433), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4431), - [anon_sym_COLON_QMARK] = ACTIONS(4431), - [anon_sym_COLON_DASH] = ACTIONS(4431), - [anon_sym_PERCENT] = ACTIONS(4431), - [anon_sym_DASH] = ACTIONS(4431), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1928), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1928), + [anon_sym_RBRACE] = ACTIONS(4433), + [anon_sym_EQ] = ACTIONS(4435), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4437), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4435), + [anon_sym_COLON_QMARK] = ACTIONS(4435), + [anon_sym_COLON_DASH] = ACTIONS(4435), + [anon_sym_PERCENT] = ACTIONS(4435), + [anon_sym_DASH] = ACTIONS(4435), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1548] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_RBRACK] = ACTIONS(3945), - [anon_sym_EQ_TILDE] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3945), - [anon_sym_GT] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), + [sym__concat] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_RBRACK] = ACTIONS(3884), + [anon_sym_EQ_TILDE] = ACTIONS(3884), + [anon_sym_EQ_EQ] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3884), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3945), + [sym_test_operator] = ACTIONS(3884), }, [1549] = { - [sym_concatenation] = STATE(1929), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1929), - [anon_sym_RBRACE] = ACTIONS(4435), - [anon_sym_EQ] = ACTIONS(4437), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4439), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4437), - [anon_sym_COLON_QMARK] = ACTIONS(4437), - [anon_sym_COLON_DASH] = ACTIONS(4437), - [anon_sym_PERCENT] = ACTIONS(4437), - [anon_sym_DASH] = ACTIONS(4437), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1930), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1930), + [anon_sym_RBRACE] = ACTIONS(4439), + [anon_sym_EQ] = ACTIONS(4441), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4443), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4441), + [anon_sym_COLON_QMARK] = ACTIONS(4441), + [anon_sym_COLON_DASH] = ACTIONS(4441), + [anon_sym_PERCENT] = ACTIONS(4441), + [anon_sym_DASH] = ACTIONS(4441), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1550] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3955), - [anon_sym_PIPE_PIPE] = ACTIONS(3955), - [anon_sym_RBRACK] = ACTIONS(3955), - [anon_sym_EQ_TILDE] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_BANG_EQ] = ACTIONS(3955), + [sym__concat] = ACTIONS(3939), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_RBRACK] = ACTIONS(3939), + [anon_sym_EQ_TILDE] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_GT] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3955), + [sym_test_operator] = ACTIONS(3939), }, [1551] = { - [sym_concatenation] = STATE(1931), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1931), - [anon_sym_RBRACE] = ACTIONS(4441), - [anon_sym_EQ] = ACTIONS(4443), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4445), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4443), - [anon_sym_COLON_QMARK] = ACTIONS(4443), - [anon_sym_COLON_DASH] = ACTIONS(4443), - [anon_sym_PERCENT] = ACTIONS(4443), - [anon_sym_DASH] = ACTIONS(4443), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4445), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1552] = { [sym__concat] = ACTIONS(3965), @@ -45936,33 +45957,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3965), }, [1553] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4447), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1554] = { [sym__concat] = ACTIONS(3971), @@ -45979,33 +46000,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3971), }, [1555] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4449), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1556] = { [sym__concat] = ACTIONS(3977), @@ -46288,107 +46309,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1570] = { - [sym_concatenation] = STATE(1941), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1941), - [anon_sym_RBRACE] = ACTIONS(4459), - [anon_sym_EQ] = ACTIONS(4461), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4463), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4465), - [anon_sym_COLON] = ACTIONS(4461), - [anon_sym_COLON_QMARK] = ACTIONS(4461), - [anon_sym_COLON_DASH] = ACTIONS(4461), - [anon_sym_PERCENT] = ACTIONS(4461), + [sym_subscript] = STATE(1942), + [sym_variable_name] = ACTIONS(4459), + [anon_sym_DOLLAR] = ACTIONS(4461), [anon_sym_DASH] = ACTIONS(4461), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4463), + [anon_sym_STAR] = ACTIONS(4461), + [anon_sym_AT] = ACTIONS(4461), + [anon_sym_QMARK] = ACTIONS(4461), + [anon_sym_0] = ACTIONS(4465), + [anon_sym__] = ACTIONS(4465), }, [1571] = { - [sym_subscript] = STATE(1945), - [sym_variable_name] = ACTIONS(4467), - [anon_sym_DOLLAR] = ACTIONS(4469), + [sym_concatenation] = STATE(1945), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1945), + [anon_sym_RBRACE] = ACTIONS(4467), + [anon_sym_EQ] = ACTIONS(4469), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4471), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4473), + [anon_sym_COLON] = ACTIONS(4469), + [anon_sym_COLON_QMARK] = ACTIONS(4469), + [anon_sym_COLON_DASH] = ACTIONS(4469), + [anon_sym_PERCENT] = ACTIONS(4469), [anon_sym_DASH] = ACTIONS(4469), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4471), - [anon_sym_STAR] = ACTIONS(4469), - [anon_sym_AT] = ACTIONS(4469), - [anon_sym_QMARK] = ACTIONS(4469), - [anon_sym_0] = ACTIONS(4473), - [anon_sym__] = ACTIONS(4473), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1572] = { [sym_concatenation] = STATE(1948), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1948), [anon_sym_RBRACE] = ACTIONS(4475), [anon_sym_EQ] = ACTIONS(4477), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4479), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(4481), [anon_sym_COLON] = ACTIONS(4477), [anon_sym_COLON_QMARK] = ACTIONS(4477), [anon_sym_COLON_DASH] = ACTIONS(4477), [anon_sym_PERCENT] = ACTIONS(4477), [anon_sym_DASH] = ACTIONS(4477), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1573] = { [sym_concatenation] = STATE(1951), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(1951), [anon_sym_RBRACE] = ACTIONS(4483), [anon_sym_EQ] = ACTIONS(4485), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4487), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(4489), [anon_sym_COLON] = ACTIONS(4485), [anon_sym_COLON_QMARK] = ACTIONS(4485), [anon_sym_COLON_DASH] = ACTIONS(4485), [anon_sym_PERCENT] = ACTIONS(4485), [anon_sym_DASH] = ACTIONS(4485), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1574] = { [anon_sym_PIPE] = ACTIONS(453), @@ -46749,184 +46770,184 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3810), }, [1585] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3909), - [anon_sym_EQ_TILDE] = ACTIONS(3909), - [anon_sym_EQ_EQ] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_BANG_EQ] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4507), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3909), }, [1586] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4507), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1587] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4509), [sym_comment] = ACTIONS(53), }, - [1588] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4511), + [1587] = { + [anon_sym_RBRACE] = ACTIONS(4509), [sym_comment] = ACTIONS(53), }, + [1588] = { + [sym_concatenation] = STATE(1966), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1966), + [anon_sym_RBRACE] = ACTIONS(4511), + [anon_sym_EQ] = ACTIONS(4513), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4515), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4513), + [anon_sym_COLON_QMARK] = ACTIONS(4513), + [anon_sym_COLON_DASH] = ACTIONS(4513), + [anon_sym_PERCENT] = ACTIONS(4513), + [anon_sym_DASH] = ACTIONS(4513), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1589] = { - [anon_sym_RBRACE] = ACTIONS(4511), + [sym__concat] = ACTIONS(3874), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_PIPE_PIPE] = ACTIONS(3874), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3874), + [anon_sym_EQ_TILDE] = ACTIONS(3874), + [anon_sym_EQ_EQ] = ACTIONS(3874), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3874), + [anon_sym_GT] = ACTIONS(3874), + [anon_sym_BANG_EQ] = ACTIONS(3874), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3874), }, [1590] = { - [sym_concatenation] = STATE(1967), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1967), - [anon_sym_RBRACE] = ACTIONS(4513), - [anon_sym_EQ] = ACTIONS(4515), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4517), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4515), - [anon_sym_COLON_QMARK] = ACTIONS(4515), - [anon_sym_COLON_DASH] = ACTIONS(4515), - [anon_sym_PERCENT] = ACTIONS(4515), - [anon_sym_DASH] = ACTIONS(4515), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1968), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1968), + [anon_sym_RBRACE] = ACTIONS(4517), + [anon_sym_EQ] = ACTIONS(4519), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4521), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4519), + [anon_sym_COLON_QMARK] = ACTIONS(4519), + [anon_sym_COLON_DASH] = ACTIONS(4519), + [anon_sym_PERCENT] = ACTIONS(4519), + [anon_sym_DASH] = ACTIONS(4519), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1591] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3945), - [anon_sym_EQ_TILDE] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3945), - [anon_sym_GT] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), + [sym__concat] = ACTIONS(3884), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3884), + [anon_sym_EQ_TILDE] = ACTIONS(3884), + [anon_sym_EQ_EQ] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3884), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3945), + [sym_test_operator] = ACTIONS(3884), }, [1592] = { - [sym_concatenation] = STATE(1969), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1969), - [anon_sym_RBRACE] = ACTIONS(4519), - [anon_sym_EQ] = ACTIONS(4521), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4523), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4521), - [anon_sym_COLON_QMARK] = ACTIONS(4521), - [anon_sym_COLON_DASH] = ACTIONS(4521), - [anon_sym_PERCENT] = ACTIONS(4521), - [anon_sym_DASH] = ACTIONS(4521), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1970), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1970), + [anon_sym_RBRACE] = ACTIONS(4523), + [anon_sym_EQ] = ACTIONS(4525), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4527), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4525), + [anon_sym_COLON_QMARK] = ACTIONS(4525), + [anon_sym_COLON_DASH] = ACTIONS(4525), + [anon_sym_PERCENT] = ACTIONS(4525), + [anon_sym_DASH] = ACTIONS(4525), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1593] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3955), - [anon_sym_PIPE_PIPE] = ACTIONS(3955), - [anon_sym_RBRACK_RBRACK] = ACTIONS(3955), - [anon_sym_EQ_TILDE] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_BANG_EQ] = ACTIONS(3955), + [sym__concat] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3939), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_RBRACK_RBRACK] = ACTIONS(3939), + [anon_sym_EQ_TILDE] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_GT] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3955), + [sym_test_operator] = ACTIONS(3939), }, [1594] = { - [sym_concatenation] = STATE(1971), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1971), - [anon_sym_RBRACE] = ACTIONS(4525), - [anon_sym_EQ] = ACTIONS(4527), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4529), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4527), - [anon_sym_COLON_QMARK] = ACTIONS(4527), - [anon_sym_COLON_DASH] = ACTIONS(4527), - [anon_sym_PERCENT] = ACTIONS(4527), - [anon_sym_DASH] = ACTIONS(4527), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4529), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1595] = { [sym__concat] = ACTIONS(3965), @@ -46945,33 +46966,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3965), }, [1596] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4531), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1597] = { [sym__concat] = ACTIONS(3971), @@ -46990,33 +47011,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3971), }, [1598] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4533), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1599] = { [sym__concat] = ACTIONS(3977), @@ -47125,211 +47146,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [1604] = { - [sym__concat] = ACTIONS(3909), - [sym_variable_name] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4535), + [sym_comment] = ACTIONS(53), }, [1605] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4535), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1606] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4537), [sym_comment] = ACTIONS(53), }, - [1607] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4539), + [1606] = { + [anon_sym_RBRACE] = ACTIONS(4537), [sym_comment] = ACTIONS(53), }, + [1607] = { + [sym_concatenation] = STATE(1977), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1977), + [anon_sym_RBRACE] = ACTIONS(4539), + [anon_sym_EQ] = ACTIONS(4541), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4543), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4541), + [anon_sym_COLON_QMARK] = ACTIONS(4541), + [anon_sym_COLON_DASH] = ACTIONS(4541), + [anon_sym_PERCENT] = ACTIONS(4541), + [anon_sym_DASH] = ACTIONS(4541), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1608] = { - [anon_sym_RBRACE] = ACTIONS(4539), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [sym_variable_name] = ACTIONS(3874), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [1609] = { - [sym_concatenation] = STATE(1978), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1978), - [anon_sym_RBRACE] = ACTIONS(4541), - [anon_sym_EQ] = ACTIONS(4543), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4545), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4543), - [anon_sym_COLON_QMARK] = ACTIONS(4543), - [anon_sym_COLON_DASH] = ACTIONS(4543), - [anon_sym_PERCENT] = ACTIONS(4543), - [anon_sym_DASH] = ACTIONS(4543), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1979), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1979), + [anon_sym_RBRACE] = ACTIONS(4545), + [anon_sym_EQ] = ACTIONS(4547), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4549), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4547), + [anon_sym_COLON_QMARK] = ACTIONS(4547), + [anon_sym_COLON_DASH] = ACTIONS(4547), + [anon_sym_PERCENT] = ACTIONS(4547), + [anon_sym_DASH] = ACTIONS(4547), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1610] = { - [sym__concat] = ACTIONS(3945), - [sym_variable_name] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [sym_variable_name] = ACTIONS(3884), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [1611] = { - [sym_concatenation] = STATE(1980), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1980), - [anon_sym_RBRACE] = ACTIONS(4547), - [anon_sym_EQ] = ACTIONS(4549), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4551), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4549), - [anon_sym_COLON_QMARK] = ACTIONS(4549), - [anon_sym_COLON_DASH] = ACTIONS(4549), - [anon_sym_PERCENT] = ACTIONS(4549), - [anon_sym_DASH] = ACTIONS(4549), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1981), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1981), + [anon_sym_RBRACE] = ACTIONS(4551), + [anon_sym_EQ] = ACTIONS(4553), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4555), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4553), + [anon_sym_COLON_QMARK] = ACTIONS(4553), + [anon_sym_COLON_DASH] = ACTIONS(4553), + [anon_sym_PERCENT] = ACTIONS(4553), + [anon_sym_DASH] = ACTIONS(4553), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1612] = { - [sym__concat] = ACTIONS(3955), - [sym_variable_name] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [sym_variable_name] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [1613] = { - [sym_concatenation] = STATE(1982), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1982), - [anon_sym_RBRACE] = ACTIONS(4553), - [anon_sym_EQ] = ACTIONS(4555), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4557), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4555), - [anon_sym_COLON_QMARK] = ACTIONS(4555), - [anon_sym_COLON_DASH] = ACTIONS(4555), - [anon_sym_PERCENT] = ACTIONS(4555), - [anon_sym_DASH] = ACTIONS(4555), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4557), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1614] = { [sym__concat] = ACTIONS(3965), @@ -47357,33 +47378,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1615] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4559), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1616] = { [sym__concat] = ACTIONS(3971), @@ -47411,33 +47432,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1617] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4561), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1618] = { [sym__concat] = ACTIONS(3977), @@ -47538,208 +47559,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [1622] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4563), + [sym_comment] = ACTIONS(53), }, [1623] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4563), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1624] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4565), [sym_comment] = ACTIONS(53), }, - [1625] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4567), + [1624] = { + [anon_sym_RBRACE] = ACTIONS(4565), [sym_comment] = ACTIONS(53), }, + [1625] = { + [sym_concatenation] = STATE(1988), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1988), + [anon_sym_RBRACE] = ACTIONS(4567), + [anon_sym_EQ] = ACTIONS(4569), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4571), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4569), + [anon_sym_COLON_QMARK] = ACTIONS(4569), + [anon_sym_COLON_DASH] = ACTIONS(4569), + [anon_sym_PERCENT] = ACTIONS(4569), + [anon_sym_DASH] = ACTIONS(4569), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1626] = { - [anon_sym_RBRACE] = ACTIONS(4567), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [1627] = { - [sym_concatenation] = STATE(1989), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1989), - [anon_sym_RBRACE] = ACTIONS(4569), - [anon_sym_EQ] = ACTIONS(4571), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4573), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4571), - [anon_sym_COLON_QMARK] = ACTIONS(4571), - [anon_sym_COLON_DASH] = ACTIONS(4571), - [anon_sym_PERCENT] = ACTIONS(4571), - [anon_sym_DASH] = ACTIONS(4571), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1990), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1990), + [anon_sym_RBRACE] = ACTIONS(4573), + [anon_sym_EQ] = ACTIONS(4575), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4577), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4575), + [anon_sym_COLON_QMARK] = ACTIONS(4575), + [anon_sym_COLON_DASH] = ACTIONS(4575), + [anon_sym_PERCENT] = ACTIONS(4575), + [anon_sym_DASH] = ACTIONS(4575), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1628] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [1629] = { - [sym_concatenation] = STATE(1991), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1991), - [anon_sym_RBRACE] = ACTIONS(4575), - [anon_sym_EQ] = ACTIONS(4577), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4579), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4577), - [anon_sym_COLON_QMARK] = ACTIONS(4577), - [anon_sym_COLON_DASH] = ACTIONS(4577), - [anon_sym_PERCENT] = ACTIONS(4577), - [anon_sym_DASH] = ACTIONS(4577), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(1992), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1992), + [anon_sym_RBRACE] = ACTIONS(4579), + [anon_sym_EQ] = ACTIONS(4581), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4583), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4581), + [anon_sym_COLON_QMARK] = ACTIONS(4581), + [anon_sym_COLON_DASH] = ACTIONS(4581), + [anon_sym_PERCENT] = ACTIONS(4581), + [anon_sym_DASH] = ACTIONS(4581), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1630] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [1631] = { - [sym_concatenation] = STATE(1993), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(1993), - [anon_sym_RBRACE] = ACTIONS(4581), - [anon_sym_EQ] = ACTIONS(4583), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4585), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4583), - [anon_sym_COLON_QMARK] = ACTIONS(4583), - [anon_sym_COLON_DASH] = ACTIONS(4583), - [anon_sym_PERCENT] = ACTIONS(4583), - [anon_sym_DASH] = ACTIONS(4583), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4585), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1632] = { [sym__concat] = ACTIONS(3965), @@ -47766,33 +47787,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1633] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4587), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1634] = { [sym__concat] = ACTIONS(3971), @@ -47819,33 +47840,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1635] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4589), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1636] = { [sym__concat] = ACTIONS(3977), @@ -47942,205 +47963,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3810), }, [1640] = { - [sym_file_descriptor] = ACTIONS(3909), - [sym__concat] = ACTIONS(3909), - [sym_variable_name] = ACTIONS(3909), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3909), - [anon_sym_AMP_GT] = ACTIONS(3911), - [anon_sym_AMP_GT_GT] = ACTIONS(3909), - [anon_sym_LT_AMP] = ACTIONS(3909), - [anon_sym_GT_AMP] = ACTIONS(3909), - [sym__special_characters] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), - [anon_sym_BQUOTE] = ACTIONS(3909), - [anon_sym_LT_LPAREN] = ACTIONS(3909), - [anon_sym_GT_LPAREN] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4591), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3909), }, [1641] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4591), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1642] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4593), [sym_comment] = ACTIONS(53), }, - [1643] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4595), + [1642] = { + [anon_sym_RBRACE] = ACTIONS(4593), [sym_comment] = ACTIONS(53), }, + [1643] = { + [sym_concatenation] = STATE(1999), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(1999), + [anon_sym_RBRACE] = ACTIONS(4595), + [anon_sym_EQ] = ACTIONS(4597), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4599), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4597), + [anon_sym_COLON_QMARK] = ACTIONS(4597), + [anon_sym_COLON_DASH] = ACTIONS(4597), + [anon_sym_PERCENT] = ACTIONS(4597), + [anon_sym_DASH] = ACTIONS(4597), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1644] = { - [anon_sym_RBRACE] = ACTIONS(4595), + [sym_file_descriptor] = ACTIONS(3874), + [sym__concat] = ACTIONS(3874), + [sym_variable_name] = ACTIONS(3874), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_GT_GT] = ACTIONS(3874), + [anon_sym_AMP_GT] = ACTIONS(3876), + [anon_sym_AMP_GT_GT] = ACTIONS(3874), + [anon_sym_LT_AMP] = ACTIONS(3874), + [anon_sym_GT_AMP] = ACTIONS(3874), + [sym__special_characters] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), + [anon_sym_BQUOTE] = ACTIONS(3874), + [anon_sym_LT_LPAREN] = ACTIONS(3874), + [anon_sym_GT_LPAREN] = ACTIONS(3874), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3874), }, [1645] = { - [sym_concatenation] = STATE(2000), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2000), - [anon_sym_RBRACE] = ACTIONS(4597), - [anon_sym_EQ] = ACTIONS(4599), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4601), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4599), - [anon_sym_COLON_QMARK] = ACTIONS(4599), - [anon_sym_COLON_DASH] = ACTIONS(4599), - [anon_sym_PERCENT] = ACTIONS(4599), - [anon_sym_DASH] = ACTIONS(4599), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2001), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2001), + [anon_sym_RBRACE] = ACTIONS(4601), + [anon_sym_EQ] = ACTIONS(4603), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4605), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4603), + [anon_sym_COLON_QMARK] = ACTIONS(4603), + [anon_sym_COLON_DASH] = ACTIONS(4603), + [anon_sym_PERCENT] = ACTIONS(4603), + [anon_sym_DASH] = ACTIONS(4603), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1646] = { - [sym_file_descriptor] = ACTIONS(3945), - [sym__concat] = ACTIONS(3945), - [sym_variable_name] = ACTIONS(3945), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3945), - [anon_sym_AMP_GT] = ACTIONS(3947), - [anon_sym_AMP_GT_GT] = ACTIONS(3945), - [anon_sym_LT_AMP] = ACTIONS(3945), - [anon_sym_GT_AMP] = ACTIONS(3945), - [sym__special_characters] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), - [anon_sym_BQUOTE] = ACTIONS(3945), - [anon_sym_LT_LPAREN] = ACTIONS(3945), - [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym_file_descriptor] = ACTIONS(3884), + [sym__concat] = ACTIONS(3884), + [sym_variable_name] = ACTIONS(3884), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3884), + [anon_sym_AMP_GT] = ACTIONS(3886), + [anon_sym_AMP_GT_GT] = ACTIONS(3884), + [anon_sym_LT_AMP] = ACTIONS(3884), + [anon_sym_GT_AMP] = ACTIONS(3884), + [sym__special_characters] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_LT_LPAREN] = ACTIONS(3884), + [anon_sym_GT_LPAREN] = ACTIONS(3884), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3945), + [sym_word] = ACTIONS(3884), }, [1647] = { - [sym_concatenation] = STATE(2002), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2002), - [anon_sym_RBRACE] = ACTIONS(4603), - [anon_sym_EQ] = ACTIONS(4605), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4607), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4605), - [anon_sym_COLON_QMARK] = ACTIONS(4605), - [anon_sym_COLON_DASH] = ACTIONS(4605), - [anon_sym_PERCENT] = ACTIONS(4605), - [anon_sym_DASH] = ACTIONS(4605), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2003), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2003), + [anon_sym_RBRACE] = ACTIONS(4607), + [anon_sym_EQ] = ACTIONS(4609), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4611), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4609), + [anon_sym_COLON_QMARK] = ACTIONS(4609), + [anon_sym_COLON_DASH] = ACTIONS(4609), + [anon_sym_PERCENT] = ACTIONS(4609), + [anon_sym_DASH] = ACTIONS(4609), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1648] = { - [sym_file_descriptor] = ACTIONS(3955), - [sym__concat] = ACTIONS(3955), - [sym_variable_name] = ACTIONS(3955), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3955), - [anon_sym_AMP_GT] = ACTIONS(3957), - [anon_sym_AMP_GT_GT] = ACTIONS(3955), - [anon_sym_LT_AMP] = ACTIONS(3955), - [anon_sym_GT_AMP] = ACTIONS(3955), - [sym__special_characters] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3955), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), - [anon_sym_BQUOTE] = ACTIONS(3955), - [anon_sym_LT_LPAREN] = ACTIONS(3955), - [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym_file_descriptor] = ACTIONS(3939), + [sym__concat] = ACTIONS(3939), + [sym_variable_name] = ACTIONS(3939), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_GT_GT] = ACTIONS(3939), + [anon_sym_AMP_GT] = ACTIONS(3941), + [anon_sym_AMP_GT_GT] = ACTIONS(3939), + [anon_sym_LT_AMP] = ACTIONS(3939), + [anon_sym_GT_AMP] = ACTIONS(3939), + [sym__special_characters] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), + [anon_sym_BQUOTE] = ACTIONS(3939), + [anon_sym_LT_LPAREN] = ACTIONS(3939), + [anon_sym_GT_LPAREN] = ACTIONS(3939), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3955), + [sym_word] = ACTIONS(3939), }, [1649] = { - [sym_concatenation] = STATE(2004), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2004), - [anon_sym_RBRACE] = ACTIONS(4609), - [anon_sym_EQ] = ACTIONS(4611), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4613), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4611), - [anon_sym_COLON_QMARK] = ACTIONS(4611), - [anon_sym_COLON_DASH] = ACTIONS(4611), - [anon_sym_PERCENT] = ACTIONS(4611), - [anon_sym_DASH] = ACTIONS(4611), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4613), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1650] = { [sym_file_descriptor] = ACTIONS(3965), @@ -48166,33 +48187,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3965), }, [1651] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4615), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1652] = { [sym_file_descriptor] = ACTIONS(3971), @@ -48218,33 +48239,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3971), }, [1653] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4617), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1654] = { [sym_file_descriptor] = ACTIONS(3977), @@ -48313,166 +48334,166 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), }, [1658] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym__string_content] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4619), + [sym_comment] = ACTIONS(53), }, [1659] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4619), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1660] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4621), [sym_comment] = ACTIONS(53), }, - [1661] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4623), + [1660] = { + [anon_sym_RBRACE] = ACTIONS(4621), [sym_comment] = ACTIONS(53), }, + [1661] = { + [sym_concatenation] = STATE(2010), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2010), + [anon_sym_RBRACE] = ACTIONS(4623), + [anon_sym_EQ] = ACTIONS(4625), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4627), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4625), + [anon_sym_COLON_QMARK] = ACTIONS(4625), + [anon_sym_COLON_DASH] = ACTIONS(4625), + [anon_sym_PERCENT] = ACTIONS(4625), + [anon_sym_DASH] = ACTIONS(4625), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1662] = { - [anon_sym_RBRACE] = ACTIONS(4623), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym__string_content] = ACTIONS(3874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), }, [1663] = { - [sym_concatenation] = STATE(2011), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2011), - [anon_sym_RBRACE] = ACTIONS(4625), - [anon_sym_EQ] = ACTIONS(4627), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4629), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4627), - [anon_sym_COLON_QMARK] = ACTIONS(4627), - [anon_sym_COLON_DASH] = ACTIONS(4627), - [anon_sym_PERCENT] = ACTIONS(4627), - [anon_sym_DASH] = ACTIONS(4627), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2012), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2012), + [anon_sym_RBRACE] = ACTIONS(4629), + [anon_sym_EQ] = ACTIONS(4631), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4633), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4631), + [anon_sym_COLON_QMARK] = ACTIONS(4631), + [anon_sym_COLON_DASH] = ACTIONS(4631), + [anon_sym_PERCENT] = ACTIONS(4631), + [anon_sym_DASH] = ACTIONS(4631), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1664] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym__string_content] = ACTIONS(3945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym__string_content] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), [sym_comment] = ACTIONS(179), }, [1665] = { - [sym_concatenation] = STATE(2013), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2013), - [anon_sym_RBRACE] = ACTIONS(4631), - [anon_sym_EQ] = ACTIONS(4633), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4635), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4633), - [anon_sym_COLON_QMARK] = ACTIONS(4633), - [anon_sym_COLON_DASH] = ACTIONS(4633), - [anon_sym_PERCENT] = ACTIONS(4633), - [anon_sym_DASH] = ACTIONS(4633), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2014), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2014), + [anon_sym_RBRACE] = ACTIONS(4635), + [anon_sym_EQ] = ACTIONS(4637), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4639), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4637), + [anon_sym_COLON_QMARK] = ACTIONS(4637), + [anon_sym_COLON_DASH] = ACTIONS(4637), + [anon_sym_PERCENT] = ACTIONS(4637), + [anon_sym_DASH] = ACTIONS(4637), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1666] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym__string_content] = ACTIONS(3955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym__string_content] = ACTIONS(3939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), [sym_comment] = ACTIONS(179), }, [1667] = { - [sym_concatenation] = STATE(2015), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2015), - [anon_sym_RBRACE] = ACTIONS(4637), - [anon_sym_EQ] = ACTIONS(4639), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4641), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4639), - [anon_sym_COLON_QMARK] = ACTIONS(4639), - [anon_sym_COLON_DASH] = ACTIONS(4639), - [anon_sym_PERCENT] = ACTIONS(4639), - [anon_sym_DASH] = ACTIONS(4639), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4641), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1668] = { [sym__concat] = ACTIONS(3965), @@ -48485,33 +48506,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), }, [1669] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4643), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1670] = { [sym__concat] = ACTIONS(3971), @@ -48524,33 +48545,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), }, [1671] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4645), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1672] = { [sym__concat] = ACTIONS(3977), @@ -48704,137 +48725,137 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4664), }, [1682] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_RBRACE] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4666), [sym_comment] = ACTIONS(53), }, [1683] = { + [sym_concatenation] = STATE(2028), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2028), + [anon_sym_RBRACE] = ACTIONS(4668), + [anon_sym_EQ] = ACTIONS(4670), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4672), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4674), + [anon_sym_COLON] = ACTIONS(4670), + [anon_sym_COLON_QMARK] = ACTIONS(4670), + [anon_sym_COLON_DASH] = ACTIONS(4670), + [anon_sym_PERCENT] = ACTIONS(4670), + [anon_sym_DASH] = ACTIONS(4670), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4666), + [sym_word] = ACTIONS(767), }, [1684] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4668), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2031), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2031), + [anon_sym_RBRACE] = ACTIONS(4676), + [anon_sym_EQ] = ACTIONS(4678), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4680), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4682), + [anon_sym_COLON] = ACTIONS(4678), + [anon_sym_COLON_QMARK] = ACTIONS(4678), + [anon_sym_COLON_DASH] = ACTIONS(4678), + [anon_sym_PERCENT] = ACTIONS(4678), + [anon_sym_DASH] = ACTIONS(4678), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1685] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4670), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2033), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2033), + [anon_sym_RBRACE] = ACTIONS(4660), + [anon_sym_EQ] = ACTIONS(4684), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4686), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4688), + [anon_sym_COLON] = ACTIONS(4684), + [anon_sym_COLON_QMARK] = ACTIONS(4684), + [anon_sym_COLON_DASH] = ACTIONS(4684), + [anon_sym_PERCENT] = ACTIONS(4684), + [anon_sym_DASH] = ACTIONS(4684), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1686] = { - [sym_concatenation] = STATE(2030), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2030), - [anon_sym_RBRACE] = ACTIONS(4672), - [anon_sym_EQ] = ACTIONS(4674), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4676), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4678), - [anon_sym_COLON] = ACTIONS(4674), - [anon_sym_COLON_QMARK] = ACTIONS(4674), - [anon_sym_COLON_DASH] = ACTIONS(4674), - [anon_sym_PERCENT] = ACTIONS(4674), - [anon_sym_DASH] = ACTIONS(4674), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(1772), + [anon_sym_RBRACE] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), }, [1687] = { - [sym_concatenation] = STATE(2033), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2033), - [anon_sym_RBRACE] = ACTIONS(4680), - [anon_sym_EQ] = ACTIONS(4682), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4684), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4686), - [anon_sym_COLON] = ACTIONS(4682), - [anon_sym_COLON_QMARK] = ACTIONS(4682), - [anon_sym_COLON_DASH] = ACTIONS(4682), - [anon_sym_PERCENT] = ACTIONS(4682), - [anon_sym_DASH] = ACTIONS(4682), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4690), }, [1688] = { - [sym_concatenation] = STATE(2035), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2035), - [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_EQ] = ACTIONS(4688), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4690), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4692), - [anon_sym_COLON] = ACTIONS(4688), - [anon_sym_COLON_QMARK] = ACTIONS(4688), - [anon_sym_COLON_DASH] = ACTIONS(4688), - [anon_sym_PERCENT] = ACTIONS(4688), - [anon_sym_DASH] = ACTIONS(4688), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4692), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1689] = { [sym__concat] = ACTIONS(1816), @@ -48846,33 +48867,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4694), }, [1691] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4696), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1692] = { [sym__concat] = ACTIONS(1824), @@ -48884,33 +48905,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4698), }, [1694] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4660), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1695] = { [sym__concat] = ACTIONS(1830), @@ -49167,6 +49188,288 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4716), }, [1706] = { + [sym__simple_heredoc_body] = ACTIONS(4720), + [sym__heredoc_body_beginning] = ACTIONS(4720), + [sym_file_descriptor] = ACTIONS(4720), + [sym__concat] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_AMP_GT] = ACTIONS(4722), + [anon_sym_AMP_GT_GT] = ACTIONS(4722), + [anon_sym_LT_AMP] = ACTIONS(4722), + [anon_sym_GT_AMP] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_LT_LT_DASH] = ACTIONS(4722), + [anon_sym_LT_LT_LT] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), + }, + [1707] = { + [sym__simple_heredoc_body] = ACTIONS(4724), + [sym__heredoc_body_beginning] = ACTIONS(4724), + [sym_file_descriptor] = ACTIONS(4724), + [sym__concat] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_EQ_TILDE] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_GT_GT] = ACTIONS(4726), + [anon_sym_AMP_GT] = ACTIONS(4726), + [anon_sym_AMP_GT_GT] = ACTIONS(4726), + [anon_sym_LT_AMP] = ACTIONS(4726), + [anon_sym_GT_AMP] = ACTIONS(4726), + [anon_sym_LT_LT] = ACTIONS(4726), + [anon_sym_LT_LT_DASH] = ACTIONS(4726), + [anon_sym_LT_LT_LT] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), + }, + [1708] = { + [sym__simple_heredoc_body] = ACTIONS(4728), + [sym__heredoc_body_beginning] = ACTIONS(4728), + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_EQ_TILDE] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), + }, + [1709] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4732), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1710] = { + [sym__simple_heredoc_body] = ACTIONS(4734), + [sym__heredoc_body_beginning] = ACTIONS(4734), + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_EQ_TILDE] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), + }, + [1711] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4738), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1712] = { + [sym__simple_heredoc_body] = ACTIONS(4740), + [sym__heredoc_body_beginning] = ACTIONS(4740), + [sym_file_descriptor] = ACTIONS(4740), + [sym__concat] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_EQ_TILDE] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4742), + [anon_sym_GT_GT] = ACTIONS(4742), + [anon_sym_AMP_GT] = ACTIONS(4742), + [anon_sym_AMP_GT_GT] = ACTIONS(4742), + [anon_sym_LT_AMP] = ACTIONS(4742), + [anon_sym_GT_AMP] = ACTIONS(4742), + [anon_sym_LT_LT] = ACTIONS(4742), + [anon_sym_LT_LT_DASH] = ACTIONS(4742), + [anon_sym_LT_LT_LT] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), + }, + [1713] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4744), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1714] = { [sym__concat] = ACTIONS(2818), [anon_sym_RBRACE] = ACTIONS(2818), [anon_sym_EQ] = ACTIONS(2820), @@ -49188,7 +49491,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(2820), }, - [1707] = { + [1715] = { [sym__concat] = ACTIONS(2832), [anon_sym_RBRACE] = ACTIONS(2832), [anon_sym_EQ] = ACTIONS(2834), @@ -49210,267 +49513,267 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(2834), }, - [1708] = { + [1716] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4746), [sym_comment] = ACTIONS(53), }, - [1709] = { + [1717] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4722), + [anon_sym_RBRACE] = ACTIONS(4748), [sym_comment] = ACTIONS(53), }, - [1710] = { - [anon_sym_RBRACE] = ACTIONS(4722), + [1718] = { + [anon_sym_RBRACE] = ACTIONS(4748), [sym_comment] = ACTIONS(53), }, - [1711] = { - [sym_concatenation] = STATE(2047), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2047), - [anon_sym_RBRACE] = ACTIONS(4724), - [anon_sym_EQ] = ACTIONS(4726), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4728), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4726), - [anon_sym_COLON_QMARK] = ACTIONS(4726), - [anon_sym_COLON_DASH] = ACTIONS(4726), - [anon_sym_PERCENT] = ACTIONS(4726), - [anon_sym_DASH] = ACTIONS(4726), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1712] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_POUND] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_COLON] = ACTIONS(2928), - [anon_sym_COLON_QMARK] = ACTIONS(2928), - [anon_sym_COLON_DASH] = ACTIONS(2928), - [anon_sym_PERCENT] = ACTIONS(2928), - [anon_sym_DASH] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2928), - }, - [1713] = { - [sym_concatenation] = STATE(2050), - [sym_string] = STATE(2049), - [sym_simple_expansion] = STATE(2049), - [sym_string_expansion] = STATE(2049), - [sym_expansion] = STATE(2049), - [sym_command_substitution] = STATE(2049), - [sym_process_substitution] = STATE(2049), - [anon_sym_RBRACE] = ACTIONS(4722), - [sym__special_characters] = ACTIONS(4730), + [1719] = { + [sym_concatenation] = STATE(2051), + [sym_string] = STATE(2050), + [sym_simple_expansion] = STATE(2050), + [sym_string_expansion] = STATE(2050), + [sym_expansion] = STATE(2050), + [sym_command_substitution] = STATE(2050), + [sym_process_substitution] = STATE(2050), + [anon_sym_RBRACE] = ACTIONS(4748), + [sym__special_characters] = ACTIONS(4750), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4732), + [sym_raw_string] = ACTIONS(4752), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4732), - }, - [1714] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_POUND] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_COLON] = ACTIONS(2971), - [anon_sym_COLON_QMARK] = ACTIONS(2971), - [anon_sym_COLON_DASH] = ACTIONS(2971), - [anon_sym_PERCENT] = ACTIONS(2971), - [anon_sym_DASH] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2971), - }, - [1715] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4734), - }, - [1716] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4736), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1717] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2977), - [anon_sym_POUND] = ACTIONS(2977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_COLON] = ACTIONS(2979), - [anon_sym_COLON_QMARK] = ACTIONS(2979), - [anon_sym_COLON_DASH] = ACTIONS(2979), - [anon_sym_PERCENT] = ACTIONS(2979), - [anon_sym_DASH] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), - [anon_sym_BQUOTE] = ACTIONS(2977), - [anon_sym_LT_LPAREN] = ACTIONS(2977), - [anon_sym_GT_LPAREN] = ACTIONS(2977), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(2979), - }, - [1718] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4738), - }, - [1719] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4740), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4752), }, [1720] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2868), + [anon_sym_POUND] = ACTIONS(2868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), + [anon_sym_COLON] = ACTIONS(2870), + [anon_sym_COLON_QMARK] = ACTIONS(2870), + [anon_sym_COLON_DASH] = ACTIONS(2870), + [anon_sym_PERCENT] = ACTIONS(2870), + [anon_sym_DASH] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_LT_LPAREN] = ACTIONS(2868), + [anon_sym_GT_LPAREN] = ACTIONS(2868), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4742), + [sym_word] = ACTIONS(2870), }, [1721] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4722), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4754), }, [1722] = { - [sym_concatenation] = STATE(2057), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2057), - [anon_sym_RBRACE] = ACTIONS(4744), - [anon_sym_EQ] = ACTIONS(4746), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4748), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4746), - [anon_sym_COLON_QMARK] = ACTIONS(4746), - [anon_sym_COLON_DASH] = ACTIONS(4746), - [anon_sym_PERCENT] = ACTIONS(4746), - [anon_sym_DASH] = ACTIONS(4746), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4756), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1723] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2876), + [anon_sym_POUND] = ACTIONS(2876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_COLON] = ACTIONS(2878), + [anon_sym_COLON_QMARK] = ACTIONS(2878), + [anon_sym_COLON_DASH] = ACTIONS(2878), + [anon_sym_PERCENT] = ACTIONS(2878), + [anon_sym_DASH] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [anon_sym_LT_LPAREN] = ACTIONS(2876), + [anon_sym_GT_LPAREN] = ACTIONS(2876), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2878), + }, + [1724] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4758), + }, + [1725] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4760), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1726] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4762), + }, + [1727] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4748), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1728] = { + [sym_concatenation] = STATE(2058), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2058), + [anon_sym_RBRACE] = ACTIONS(4764), + [anon_sym_EQ] = ACTIONS(4766), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4768), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4766), + [anon_sym_COLON_QMARK] = ACTIONS(4766), + [anon_sym_COLON_DASH] = ACTIONS(4766), + [anon_sym_PERCENT] = ACTIONS(4766), + [anon_sym_DASH] = ACTIONS(4766), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1729] = { + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2948), + [anon_sym_POUND] = ACTIONS(2948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), + [anon_sym_COLON] = ACTIONS(2950), + [anon_sym_COLON_QMARK] = ACTIONS(2950), + [anon_sym_COLON_DASH] = ACTIONS(2950), + [anon_sym_PERCENT] = ACTIONS(2950), + [anon_sym_DASH] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_LT_LPAREN] = ACTIONS(2948), + [anon_sym_GT_LPAREN] = ACTIONS(2948), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(2950), + }, + [1730] = { + [sym_concatenation] = STATE(2060), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2060), + [anon_sym_RBRACE] = ACTIONS(4770), + [anon_sym_EQ] = ACTIONS(4772), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4772), + [anon_sym_COLON_QMARK] = ACTIONS(4772), + [anon_sym_COLON_DASH] = ACTIONS(4772), + [anon_sym_PERCENT] = ACTIONS(4772), + [anon_sym_DASH] = ACTIONS(4772), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1731] = { [sym__concat] = ACTIONS(2993), [anon_sym_RBRACE] = ACTIONS(2993), [anon_sym_EQ] = ACTIONS(2995), @@ -49492,75 +49795,75 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(2995), }, - [1724] = { - [sym_concatenation] = STATE(2059), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2059), - [anon_sym_RBRACE] = ACTIONS(4750), - [anon_sym_EQ] = ACTIONS(4752), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4754), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4752), - [anon_sym_COLON_QMARK] = ACTIONS(4752), - [anon_sym_COLON_DASH] = ACTIONS(4752), - [anon_sym_PERCENT] = ACTIONS(4752), - [anon_sym_DASH] = ACTIONS(4752), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1732] = { + [sym_concatenation] = STATE(2062), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2062), + [anon_sym_RBRACE] = ACTIONS(4776), + [anon_sym_EQ] = ACTIONS(4778), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4780), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4778), + [anon_sym_COLON_QMARK] = ACTIONS(4778), + [anon_sym_COLON_DASH] = ACTIONS(4778), + [anon_sym_PERCENT] = ACTIONS(4778), + [anon_sym_DASH] = ACTIONS(4778), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [1725] = { - [sym__simple_heredoc_body] = ACTIONS(4756), - [sym__heredoc_body_beginning] = ACTIONS(4756), - [sym_file_descriptor] = ACTIONS(4756), - [sym__concat] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [anon_sym_EQ_TILDE] = ACTIONS(4758), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_GT_GT] = ACTIONS(4758), - [anon_sym_AMP_GT] = ACTIONS(4758), - [anon_sym_AMP_GT_GT] = ACTIONS(4758), - [anon_sym_LT_AMP] = ACTIONS(4758), - [anon_sym_GT_AMP] = ACTIONS(4758), - [anon_sym_LT_LT] = ACTIONS(4758), - [anon_sym_LT_LT_DASH] = ACTIONS(4758), - [anon_sym_LT_LT_LT] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [1733] = { + [sym__simple_heredoc_body] = ACTIONS(4782), + [sym__heredoc_body_beginning] = ACTIONS(4782), + [sym_file_descriptor] = ACTIONS(4782), + [sym__concat] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_EQ_TILDE] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_AMP_GT] = ACTIONS(4784), + [anon_sym_AMP_GT_GT] = ACTIONS(4784), + [anon_sym_LT_AMP] = ACTIONS(4784), + [anon_sym_GT_AMP] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_LT_LT_DASH] = ACTIONS(4784), + [anon_sym_LT_LT_LT] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, - [1726] = { + [1734] = { [sym__concat] = ACTIONS(3003), [anon_sym_RBRACE] = ACTIONS(3003), [anon_sym_EQ] = ACTIONS(3005), @@ -49582,14 +49885,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3005), }, - [1727] = { + [1735] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), [anon_sym_while] = ACTIONS(819), [anon_sym_if] = ACTIONS(819), [anon_sym_case] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(4760), + [anon_sym_RPAREN] = ACTIONS(4786), [anon_sym_function] = ACTIONS(819), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(819), @@ -49621,7 +49924,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1728] = { + [1736] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), @@ -49653,13 +49956,13 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_raw_string] = ACTIONS(817), [anon_sym_DOLLAR_LBRACE] = ACTIONS(817), [anon_sym_DOLLAR_LPAREN] = ACTIONS(817), - [anon_sym_BQUOTE] = ACTIONS(4760), + [anon_sym_BQUOTE] = ACTIONS(4786), [anon_sym_LT_LPAREN] = ACTIONS(817), [anon_sym_GT_LPAREN] = ACTIONS(817), [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1729] = { + [1737] = { [sym__concat] = ACTIONS(3034), [anon_sym_RBRACE] = ACTIONS(3034), [anon_sym_EQ] = ACTIONS(3036), @@ -49681,14 +49984,14 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3036), }, - [1730] = { + [1738] = { [sym_file_descriptor] = ACTIONS(817), [sym_variable_name] = ACTIONS(817), [anon_sym_for] = ACTIONS(819), [anon_sym_while] = ACTIONS(819), [anon_sym_if] = ACTIONS(819), [anon_sym_case] = ACTIONS(819), - [anon_sym_RPAREN] = ACTIONS(4762), + [anon_sym_RPAREN] = ACTIONS(4788), [anon_sym_function] = ACTIONS(819), [anon_sym_LPAREN] = ACTIONS(817), [anon_sym_BANG] = ACTIONS(819), @@ -49720,288 +50023,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), [sym_word] = ACTIONS(819), }, - [1731] = { - [sym__simple_heredoc_body] = ACTIONS(4764), - [sym__heredoc_body_beginning] = ACTIONS(4764), - [sym_file_descriptor] = ACTIONS(4764), - [sym__concat] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [anon_sym_EQ_TILDE] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_AMP_GT] = ACTIONS(4766), - [anon_sym_AMP_GT_GT] = ACTIONS(4766), - [anon_sym_LT_AMP] = ACTIONS(4766), - [anon_sym_GT_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LT_LT_DASH] = ACTIONS(4766), - [anon_sym_LT_LT_LT] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), - }, - [1732] = { - [sym__simple_heredoc_body] = ACTIONS(4768), - [sym__heredoc_body_beginning] = ACTIONS(4768), - [sym_file_descriptor] = ACTIONS(4768), - [sym__concat] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [anon_sym_EQ_TILDE] = ACTIONS(4770), - [anon_sym_EQ_EQ] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_AMP_GT] = ACTIONS(4770), - [anon_sym_AMP_GT_GT] = ACTIONS(4770), - [anon_sym_LT_AMP] = ACTIONS(4770), - [anon_sym_GT_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4770), - [anon_sym_LT_LT_DASH] = ACTIONS(4770), - [anon_sym_LT_LT_LT] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), - }, - [1733] = { - [sym__simple_heredoc_body] = ACTIONS(4772), - [sym__heredoc_body_beginning] = ACTIONS(4772), - [sym_file_descriptor] = ACTIONS(4772), - [sym__concat] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_EQ_TILDE] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4774), - [anon_sym_AMP_GT] = ACTIONS(4774), - [anon_sym_AMP_GT_GT] = ACTIONS(4774), - [anon_sym_LT_AMP] = ACTIONS(4774), - [anon_sym_GT_AMP] = ACTIONS(4774), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_LT_LT_DASH] = ACTIONS(4774), - [anon_sym_LT_LT_LT] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), - }, - [1734] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4776), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1735] = { - [sym__simple_heredoc_body] = ACTIONS(4778), - [sym__heredoc_body_beginning] = ACTIONS(4778), - [sym_file_descriptor] = ACTIONS(4778), - [sym__concat] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_EQ_TILDE] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4780), - [anon_sym_AMP_GT] = ACTIONS(4780), - [anon_sym_AMP_GT_GT] = ACTIONS(4780), - [anon_sym_LT_AMP] = ACTIONS(4780), - [anon_sym_GT_AMP] = ACTIONS(4780), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_LT_LT_DASH] = ACTIONS(4780), - [anon_sym_LT_LT_LT] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), - }, - [1736] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4782), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1737] = { - [sym__simple_heredoc_body] = ACTIONS(4784), - [sym__heredoc_body_beginning] = ACTIONS(4784), - [sym_file_descriptor] = ACTIONS(4784), - [sym__concat] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [anon_sym_EQ_TILDE] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_AMP_GT] = ACTIONS(4786), - [anon_sym_AMP_GT_GT] = ACTIONS(4786), - [anon_sym_LT_AMP] = ACTIONS(4786), - [anon_sym_GT_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_LT_LT_DASH] = ACTIONS(4786), - [anon_sym_LT_LT_LT] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), - }, - [1738] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4788), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, [1739] = { [sym__simple_heredoc_body] = ACTIONS(4790), [sym__heredoc_body_beginning] = ACTIONS(4790), @@ -50347,203 +50368,203 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1756] = { - [sym_concatenation] = STATE(2074), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2074), - [anon_sym_RBRACE] = ACTIONS(4819), - [anon_sym_EQ] = ACTIONS(4821), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4823), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4821), - [anon_sym_COLON_QMARK] = ACTIONS(4821), - [anon_sym_COLON_DASH] = ACTIONS(4821), - [anon_sym_PERCENT] = ACTIONS(4821), - [anon_sym_DASH] = ACTIONS(4821), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1757] = { - [sym__heredoc_body_middle] = ACTIONS(2926), - [sym__heredoc_body_end] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - }, - [1758] = { - [sym_concatenation] = STATE(2077), - [sym_string] = STATE(2076), - [sym_simple_expansion] = STATE(2076), - [sym_string_expansion] = STATE(2076), - [sym_expansion] = STATE(2076), - [sym_command_substitution] = STATE(2076), - [sym_process_substitution] = STATE(2076), + [sym_concatenation] = STATE(2075), + [sym_string] = STATE(2074), + [sym_simple_expansion] = STATE(2074), + [sym_string_expansion] = STATE(2074), + [sym_expansion] = STATE(2074), + [sym_command_substitution] = STATE(2074), + [sym_process_substitution] = STATE(2074), [anon_sym_RBRACE] = ACTIONS(4817), - [sym__special_characters] = ACTIONS(4825), + [sym__special_characters] = ACTIONS(4819), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4827), + [sym_raw_string] = ACTIONS(4821), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4827), + [sym_word] = ACTIONS(4821), + }, + [1757] = { + [sym__heredoc_body_middle] = ACTIONS(2868), + [sym__heredoc_body_end] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + }, + [1758] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4823), }, [1759] = { - [sym__heredoc_body_middle] = ACTIONS(2969), - [sym__heredoc_body_end] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4825), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1760] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4829), + [sym__heredoc_body_middle] = ACTIONS(2876), + [sym__heredoc_body_end] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), }, [1761] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4831), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4827), }, [1762] = { - [sym__heredoc_body_middle] = ACTIONS(2977), - [sym__heredoc_body_end] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4829), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1763] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4833), + [sym_regex_without_right_brace] = ACTIONS(4831), }, [1764] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4835), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4817), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1765] = { + [sym_concatenation] = STATE(2082), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2082), + [anon_sym_RBRACE] = ACTIONS(4833), + [anon_sym_EQ] = ACTIONS(4835), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4837), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4835), + [anon_sym_COLON_QMARK] = ACTIONS(4835), + [anon_sym_COLON_DASH] = ACTIONS(4835), + [anon_sym_PERCENT] = ACTIONS(4835), + [anon_sym_DASH] = ACTIONS(4835), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4837), + [sym_word] = ACTIONS(767), }, [1766] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4817), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__heredoc_body_middle] = ACTIONS(2948), + [sym__heredoc_body_end] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), }, [1767] = { [sym_concatenation] = STATE(2084), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2084), [anon_sym_RBRACE] = ACTIONS(4839), [anon_sym_EQ] = ACTIONS(4841), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4843), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4841), [anon_sym_COLON_QMARK] = ACTIONS(4841), [anon_sym_COLON_DASH] = ACTIONS(4841), [anon_sym_PERCENT] = ACTIONS(4841), [anon_sym_DASH] = ACTIONS(4841), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1768] = { [sym__heredoc_body_middle] = ACTIONS(2993), @@ -50554,32 +50575,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1769] = { [sym_concatenation] = STATE(2086), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2086), [anon_sym_RBRACE] = ACTIONS(4845), [anon_sym_EQ] = ACTIONS(4847), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4849), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4847), [anon_sym_COLON_QMARK] = ACTIONS(4847), [anon_sym_COLON_DASH] = ACTIONS(4847), [anon_sym_PERCENT] = ACTIONS(4847), [anon_sym_DASH] = ACTIONS(4847), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1770] = { [sym__concat] = ACTIONS(2818), @@ -50628,227 +50649,227 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1775] = { - [sym_concatenation] = STATE(2090), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2090), - [anon_sym_RBRACE] = ACTIONS(4855), - [anon_sym_EQ] = ACTIONS(4857), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4859), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4857), - [anon_sym_COLON_QMARK] = ACTIONS(4857), - [anon_sym_COLON_DASH] = ACTIONS(4857), - [anon_sym_PERCENT] = ACTIONS(4857), - [anon_sym_DASH] = ACTIONS(4857), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1776] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RPAREN] = ACTIONS(2926), - [sym__special_characters] = ACTIONS(2926), - [anon_sym_DQUOTE] = ACTIONS(2926), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2926), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2926), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2926), - [anon_sym_BQUOTE] = ACTIONS(2926), - [anon_sym_LT_LPAREN] = ACTIONS(2926), - [anon_sym_GT_LPAREN] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2926), - }, - [1777] = { - [sym_concatenation] = STATE(2093), - [sym_string] = STATE(2092), - [sym_simple_expansion] = STATE(2092), - [sym_string_expansion] = STATE(2092), - [sym_expansion] = STATE(2092), - [sym_command_substitution] = STATE(2092), - [sym_process_substitution] = STATE(2092), + [sym_concatenation] = STATE(2091), + [sym_string] = STATE(2090), + [sym_simple_expansion] = STATE(2090), + [sym_string_expansion] = STATE(2090), + [sym_expansion] = STATE(2090), + [sym_command_substitution] = STATE(2090), + [sym_process_substitution] = STATE(2090), [anon_sym_RBRACE] = ACTIONS(4853), - [sym__special_characters] = ACTIONS(4861), + [sym__special_characters] = ACTIONS(4855), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(4863), + [sym_raw_string] = ACTIONS(4857), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4863), + [sym_word] = ACTIONS(4857), + }, + [1776] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_RPAREN] = ACTIONS(2868), + [sym__special_characters] = ACTIONS(2868), + [anon_sym_DQUOTE] = ACTIONS(2868), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2868), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2868), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2868), + [anon_sym_BQUOTE] = ACTIONS(2868), + [anon_sym_LT_LPAREN] = ACTIONS(2868), + [anon_sym_GT_LPAREN] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2868), + }, + [1777] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(4859), }, [1778] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RPAREN] = ACTIONS(2969), - [sym__special_characters] = ACTIONS(2969), - [anon_sym_DQUOTE] = ACTIONS(2969), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2969), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2969), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2969), - [anon_sym_BQUOTE] = ACTIONS(2969), - [anon_sym_LT_LPAREN] = ACTIONS(2969), - [anon_sym_GT_LPAREN] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2969), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4861), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1779] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4865), + [sym__concat] = ACTIONS(2876), + [anon_sym_RPAREN] = ACTIONS(2876), + [sym__special_characters] = ACTIONS(2876), + [anon_sym_DQUOTE] = ACTIONS(2876), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2876), + [anon_sym_BQUOTE] = ACTIONS(2876), + [anon_sym_LT_LPAREN] = ACTIONS(2876), + [anon_sym_GT_LPAREN] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2876), }, [1780] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4867), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4863), }, [1781] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_RPAREN] = ACTIONS(2977), - [sym__special_characters] = ACTIONS(2977), - [anon_sym_DQUOTE] = ACTIONS(2977), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2977), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2977), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2977), - [anon_sym_BQUOTE] = ACTIONS(2977), - [anon_sym_LT_LPAREN] = ACTIONS(2977), - [anon_sym_GT_LPAREN] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(2977), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4865), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1782] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4869), + [sym_regex_without_right_brace] = ACTIONS(4867), }, [1783] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4871), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4853), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1784] = { + [sym_concatenation] = STATE(2098), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2098), + [anon_sym_RBRACE] = ACTIONS(4869), + [anon_sym_EQ] = ACTIONS(4871), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4873), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4871), + [anon_sym_COLON_QMARK] = ACTIONS(4871), + [anon_sym_COLON_DASH] = ACTIONS(4871), + [anon_sym_PERCENT] = ACTIONS(4871), + [anon_sym_DASH] = ACTIONS(4871), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4873), + [sym_word] = ACTIONS(767), }, [1785] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4853), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(2948), + [anon_sym_RPAREN] = ACTIONS(2948), + [sym__special_characters] = ACTIONS(2948), + [anon_sym_DQUOTE] = ACTIONS(2948), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2948), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2948), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2948), + [anon_sym_BQUOTE] = ACTIONS(2948), + [anon_sym_LT_LPAREN] = ACTIONS(2948), + [anon_sym_GT_LPAREN] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(2948), }, [1786] = { [sym_concatenation] = STATE(2100), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2100), [anon_sym_RBRACE] = ACTIONS(4875), [anon_sym_EQ] = ACTIONS(4877), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4879), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4877), [anon_sym_COLON_QMARK] = ACTIONS(4877), [anon_sym_COLON_DASH] = ACTIONS(4877), [anon_sym_PERCENT] = ACTIONS(4877), [anon_sym_DASH] = ACTIONS(4877), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1787] = { [sym__concat] = ACTIONS(2993), @@ -50867,32 +50888,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [1788] = { [sym_concatenation] = STATE(2102), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2102), [anon_sym_RBRACE] = ACTIONS(4881), [anon_sym_EQ] = ACTIONS(4883), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(4885), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(4883), [anon_sym_COLON_QMARK] = ACTIONS(4883), [anon_sym_COLON_DASH] = ACTIONS(4883), [anon_sym_PERCENT] = ACTIONS(4883), [anon_sym_DASH] = ACTIONS(4883), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1789] = { [sym__concat] = ACTIONS(3003), @@ -51107,235 +51128,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [1796] = { - [sym_file_descriptor] = ACTIONS(3909), - [sym__concat] = ACTIONS(3909), - [sym_variable_name] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_GT] = ACTIONS(3911), - [anon_sym_AMP_GT_GT] = ACTIONS(3911), - [anon_sym_LT_AMP] = ACTIONS(3911), - [anon_sym_GT_AMP] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4891), + [sym_comment] = ACTIONS(53), }, [1797] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4891), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1798] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4893), [sym_comment] = ACTIONS(53), }, - [1799] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4895), + [1798] = { + [anon_sym_RBRACE] = ACTIONS(4893), [sym_comment] = ACTIONS(53), }, + [1799] = { + [sym_concatenation] = STATE(2108), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2108), + [anon_sym_RBRACE] = ACTIONS(4895), + [anon_sym_EQ] = ACTIONS(4897), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4899), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4897), + [anon_sym_COLON_QMARK] = ACTIONS(4897), + [anon_sym_COLON_DASH] = ACTIONS(4897), + [anon_sym_PERCENT] = ACTIONS(4897), + [anon_sym_DASH] = ACTIONS(4897), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1800] = { - [anon_sym_RBRACE] = ACTIONS(4895), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(3874), + [sym__concat] = ACTIONS(3874), + [sym_variable_name] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_GT_GT] = ACTIONS(3876), + [anon_sym_AMP_GT] = ACTIONS(3876), + [anon_sym_AMP_GT_GT] = ACTIONS(3876), + [anon_sym_LT_AMP] = ACTIONS(3876), + [anon_sym_GT_AMP] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [1801] = { - [sym_concatenation] = STATE(2109), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2109), - [anon_sym_RBRACE] = ACTIONS(4897), - [anon_sym_EQ] = ACTIONS(4899), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4901), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4899), - [anon_sym_COLON_QMARK] = ACTIONS(4899), - [anon_sym_COLON_DASH] = ACTIONS(4899), - [anon_sym_PERCENT] = ACTIONS(4899), - [anon_sym_DASH] = ACTIONS(4899), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2110), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2110), + [anon_sym_RBRACE] = ACTIONS(4901), + [anon_sym_EQ] = ACTIONS(4903), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4905), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4903), + [anon_sym_COLON_QMARK] = ACTIONS(4903), + [anon_sym_COLON_DASH] = ACTIONS(4903), + [anon_sym_PERCENT] = ACTIONS(4903), + [anon_sym_DASH] = ACTIONS(4903), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1802] = { - [sym_file_descriptor] = ACTIONS(3945), - [sym__concat] = ACTIONS(3945), - [sym_variable_name] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3947), - [anon_sym_AMP_GT] = ACTIONS(3947), - [anon_sym_AMP_GT_GT] = ACTIONS(3947), - [anon_sym_LT_AMP] = ACTIONS(3947), - [anon_sym_GT_AMP] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym_file_descriptor] = ACTIONS(3884), + [sym__concat] = ACTIONS(3884), + [sym_variable_name] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_AMP_GT] = ACTIONS(3886), + [anon_sym_AMP_GT_GT] = ACTIONS(3886), + [anon_sym_LT_AMP] = ACTIONS(3886), + [anon_sym_GT_AMP] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [1803] = { - [sym_concatenation] = STATE(2111), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2111), - [anon_sym_RBRACE] = ACTIONS(4903), - [anon_sym_EQ] = ACTIONS(4905), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4907), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4905), - [anon_sym_COLON_QMARK] = ACTIONS(4905), - [anon_sym_COLON_DASH] = ACTIONS(4905), - [anon_sym_PERCENT] = ACTIONS(4905), - [anon_sym_DASH] = ACTIONS(4905), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2112), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2112), + [anon_sym_RBRACE] = ACTIONS(4907), + [anon_sym_EQ] = ACTIONS(4909), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4911), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4909), + [anon_sym_COLON_QMARK] = ACTIONS(4909), + [anon_sym_COLON_DASH] = ACTIONS(4909), + [anon_sym_PERCENT] = ACTIONS(4909), + [anon_sym_DASH] = ACTIONS(4909), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1804] = { - [sym_file_descriptor] = ACTIONS(3955), - [sym__concat] = ACTIONS(3955), - [sym_variable_name] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3957), - [anon_sym_AMP_GT] = ACTIONS(3957), - [anon_sym_AMP_GT_GT] = ACTIONS(3957), - [anon_sym_LT_AMP] = ACTIONS(3957), - [anon_sym_GT_AMP] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym_file_descriptor] = ACTIONS(3939), + [sym__concat] = ACTIONS(3939), + [sym_variable_name] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_AMP_GT] = ACTIONS(3941), + [anon_sym_AMP_GT_GT] = ACTIONS(3941), + [anon_sym_LT_AMP] = ACTIONS(3941), + [anon_sym_GT_AMP] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [1805] = { - [sym_concatenation] = STATE(2113), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2113), - [anon_sym_RBRACE] = ACTIONS(4909), - [anon_sym_EQ] = ACTIONS(4911), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4913), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4911), - [anon_sym_COLON_QMARK] = ACTIONS(4911), - [anon_sym_COLON_DASH] = ACTIONS(4911), - [anon_sym_PERCENT] = ACTIONS(4911), - [anon_sym_DASH] = ACTIONS(4911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4913), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1806] = { [sym_file_descriptor] = ACTIONS(3965), @@ -51371,33 +51392,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1807] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4915), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1808] = { [sym_file_descriptor] = ACTIONS(3971), @@ -51433,33 +51454,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1809] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4917), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1810] = { [sym_file_descriptor] = ACTIONS(3977), @@ -51700,146 +51721,146 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4930), }, [1820] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_RPAREN_RPAREN] = ACTIONS(1748), - [anon_sym_AMP_AMP] = ACTIONS(1748), - [anon_sym_PIPE_PIPE] = ACTIONS(1748), - [anon_sym_EQ_TILDE] = ACTIONS(1748), - [anon_sym_EQ_EQ] = ACTIONS(1748), - [anon_sym_EQ] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1748), - [anon_sym_GT] = ACTIONS(1748), - [anon_sym_BANG_EQ] = ACTIONS(1748), + [anon_sym_LBRACK] = ACTIONS(731), + [anon_sym_EQ] = ACTIONS(4932), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(1748), }, [1821] = { + [sym_concatenation] = STATE(2125), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2125), + [anon_sym_RBRACE] = ACTIONS(4934), + [anon_sym_EQ] = ACTIONS(4936), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4938), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4940), + [anon_sym_COLON] = ACTIONS(4936), + [anon_sym_COLON_QMARK] = ACTIONS(4936), + [anon_sym_COLON_DASH] = ACTIONS(4936), + [anon_sym_PERCENT] = ACTIONS(4936), + [anon_sym_DASH] = ACTIONS(4936), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(4932), + [sym_word] = ACTIONS(767), }, [1822] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4934), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2128), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2128), + [anon_sym_RBRACE] = ACTIONS(4942), + [anon_sym_EQ] = ACTIONS(4944), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4946), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4948), + [anon_sym_COLON] = ACTIONS(4944), + [anon_sym_COLON_QMARK] = ACTIONS(4944), + [anon_sym_COLON_DASH] = ACTIONS(4944), + [anon_sym_PERCENT] = ACTIONS(4944), + [anon_sym_DASH] = ACTIONS(4944), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1823] = { - [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(4936), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(2130), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2130), + [anon_sym_RBRACE] = ACTIONS(4926), + [anon_sym_EQ] = ACTIONS(4950), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4952), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(4954), + [anon_sym_COLON] = ACTIONS(4950), + [anon_sym_COLON_QMARK] = ACTIONS(4950), + [anon_sym_COLON_DASH] = ACTIONS(4950), + [anon_sym_PERCENT] = ACTIONS(4950), + [anon_sym_DASH] = ACTIONS(4950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1824] = { - [sym_concatenation] = STATE(2127), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2127), - [anon_sym_RBRACE] = ACTIONS(4938), - [anon_sym_EQ] = ACTIONS(4940), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4942), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4944), - [anon_sym_COLON] = ACTIONS(4940), - [anon_sym_COLON_QMARK] = ACTIONS(4940), - [anon_sym_COLON_DASH] = ACTIONS(4940), - [anon_sym_PERCENT] = ACTIONS(4940), - [anon_sym_DASH] = ACTIONS(4940), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(1772), + [anon_sym_RPAREN_RPAREN] = ACTIONS(1772), + [anon_sym_AMP_AMP] = ACTIONS(1772), + [anon_sym_PIPE_PIPE] = ACTIONS(1772), + [anon_sym_EQ_TILDE] = ACTIONS(1772), + [anon_sym_EQ_EQ] = ACTIONS(1772), + [anon_sym_EQ] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1772), + [anon_sym_GT] = ACTIONS(1772), + [anon_sym_BANG_EQ] = ACTIONS(1772), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(1772), }, [1825] = { - [sym_concatenation] = STATE(2130), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2130), - [anon_sym_RBRACE] = ACTIONS(4946), - [anon_sym_EQ] = ACTIONS(4948), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4950), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4952), - [anon_sym_COLON] = ACTIONS(4948), - [anon_sym_COLON_QMARK] = ACTIONS(4948), - [anon_sym_COLON_DASH] = ACTIONS(4948), - [anon_sym_PERCENT] = ACTIONS(4948), - [anon_sym_DASH] = ACTIONS(4948), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(4956), }, [1826] = { - [sym_concatenation] = STATE(2132), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2132), - [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(4954), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(4956), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(4958), - [anon_sym_COLON] = ACTIONS(4954), - [anon_sym_COLON_QMARK] = ACTIONS(4954), - [anon_sym_COLON_DASH] = ACTIONS(4954), - [anon_sym_PERCENT] = ACTIONS(4954), - [anon_sym_DASH] = ACTIONS(4954), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(4958), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1827] = { [sym__concat] = ACTIONS(1816), @@ -51860,33 +51881,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4960), }, [1829] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4962), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1830] = { [sym__concat] = ACTIONS(1824), @@ -51907,33 +51928,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(4964), }, [1832] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(4926), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1833] = { [sym__concat] = ACTIONS(1830), @@ -52295,196 +52316,196 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [1850] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_EQ_TILDE] = ACTIONS(3911), - [anon_sym_EQ_EQ] = ACTIONS(3911), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_BANG_EQ] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(4990), + [sym_comment] = ACTIONS(53), }, [1851] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(4990), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1852] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(4992), [sym_comment] = ACTIONS(53), }, - [1853] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(4994), + [1852] = { + [anon_sym_RBRACE] = ACTIONS(4992), [sym_comment] = ACTIONS(53), }, + [1853] = { + [sym_concatenation] = STATE(2145), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2145), + [anon_sym_RBRACE] = ACTIONS(4994), + [anon_sym_EQ] = ACTIONS(4996), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(4998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(4996), + [anon_sym_COLON_QMARK] = ACTIONS(4996), + [anon_sym_COLON_DASH] = ACTIONS(4996), + [anon_sym_PERCENT] = ACTIONS(4996), + [anon_sym_DASH] = ACTIONS(4996), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [1854] = { - [anon_sym_RBRACE] = ACTIONS(4994), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [anon_sym_EQ_TILDE] = ACTIONS(3876), + [anon_sym_EQ_EQ] = ACTIONS(3876), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_BANG_EQ] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [sym_test_operator] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [1855] = { - [sym_concatenation] = STATE(2146), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2146), - [anon_sym_RBRACE] = ACTIONS(4996), - [anon_sym_EQ] = ACTIONS(4998), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5000), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(4998), - [anon_sym_COLON_QMARK] = ACTIONS(4998), - [anon_sym_COLON_DASH] = ACTIONS(4998), - [anon_sym_PERCENT] = ACTIONS(4998), - [anon_sym_DASH] = ACTIONS(4998), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2147), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2147), + [anon_sym_RBRACE] = ACTIONS(5000), + [anon_sym_EQ] = ACTIONS(5002), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5004), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5002), + [anon_sym_COLON_QMARK] = ACTIONS(5002), + [anon_sym_COLON_DASH] = ACTIONS(5002), + [anon_sym_PERCENT] = ACTIONS(5002), + [anon_sym_DASH] = ACTIONS(5002), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1856] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [anon_sym_EQ_TILDE] = ACTIONS(3947), - [anon_sym_EQ_EQ] = ACTIONS(3947), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_BANG_EQ] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_EQ_TILDE] = ACTIONS(3886), + [anon_sym_EQ_EQ] = ACTIONS(3886), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_BANG_EQ] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [sym_test_operator] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [1857] = { - [sym_concatenation] = STATE(2148), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2148), - [anon_sym_RBRACE] = ACTIONS(5002), - [anon_sym_EQ] = ACTIONS(5004), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5006), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5004), - [anon_sym_COLON_QMARK] = ACTIONS(5004), - [anon_sym_COLON_DASH] = ACTIONS(5004), - [anon_sym_PERCENT] = ACTIONS(5004), - [anon_sym_DASH] = ACTIONS(5004), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2149), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2149), + [anon_sym_RBRACE] = ACTIONS(5006), + [anon_sym_EQ] = ACTIONS(5008), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5010), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5008), + [anon_sym_COLON_QMARK] = ACTIONS(5008), + [anon_sym_COLON_DASH] = ACTIONS(5008), + [anon_sym_PERCENT] = ACTIONS(5008), + [anon_sym_DASH] = ACTIONS(5008), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1858] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_EQ_TILDE] = ACTIONS(3957), - [anon_sym_EQ_EQ] = ACTIONS(3957), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_BANG_EQ] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_EQ_TILDE] = ACTIONS(3941), + [anon_sym_EQ_EQ] = ACTIONS(3941), + [anon_sym_EQ] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_BANG_EQ] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [sym_test_operator] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [1859] = { - [sym_concatenation] = STATE(2150), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2150), - [anon_sym_RBRACE] = ACTIONS(5008), - [anon_sym_EQ] = ACTIONS(5010), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5012), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5010), - [anon_sym_COLON_QMARK] = ACTIONS(5010), - [anon_sym_COLON_DASH] = ACTIONS(5010), - [anon_sym_PERCENT] = ACTIONS(5010), - [anon_sym_DASH] = ACTIONS(5010), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5012), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1860] = { [sym__concat] = ACTIONS(3965), @@ -52507,33 +52528,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [1861] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5014), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1862] = { [sym__concat] = ACTIONS(3971), @@ -52556,33 +52577,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [1863] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5016), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1864] = { [sym__concat] = ACTIONS(3977), @@ -53638,205 +53659,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [1905] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_in] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [anon_sym_in] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [1906] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_in] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [anon_sym_in] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [1907] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_in] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [anon_sym_in] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [1908] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_in] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5131), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [1909] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5131), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_in] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [1910] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_in] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5133), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [1911] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5133), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_in] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [1912] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_in] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5135), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [1913] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5135), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_in] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [1914] = { [sym__concat] = ACTIONS(4790), @@ -54007,175 +54028,175 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(685), }, [1923] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_RBRACK] = ACTIONS(4756), - [anon_sym_EQ_TILDE] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_RBRACK] = ACTIONS(4720), + [anon_sym_EQ_TILDE] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4756), + [sym_test_operator] = ACTIONS(4720), }, [1924] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_RBRACK] = ACTIONS(4764), - [anon_sym_EQ_TILDE] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4764), - [anon_sym_GT] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_RBRACK] = ACTIONS(4724), + [anon_sym_EQ_TILDE] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4724), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4764), + [sym_test_operator] = ACTIONS(4724), }, [1925] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_RBRACK] = ACTIONS(4768), - [anon_sym_EQ_TILDE] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_RBRACK] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4768), + [sym_test_operator] = ACTIONS(4728), }, [1926] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_RBRACK] = ACTIONS(4772), - [anon_sym_EQ_TILDE] = ACTIONS(4772), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5137), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1927] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5137), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_RBRACK] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4734), }, [1928] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_RBRACK] = ACTIONS(4778), - [anon_sym_EQ_TILDE] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4778), - [anon_sym_GT] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5139), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1929] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5139), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4740), + [anon_sym_AMP_AMP] = ACTIONS(4740), + [anon_sym_PIPE_PIPE] = ACTIONS(4740), + [anon_sym_RBRACK] = ACTIONS(4740), + [anon_sym_EQ_TILDE] = ACTIONS(4740), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4740), }, [1930] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [anon_sym_RBRACK] = ACTIONS(4784), - [anon_sym_EQ_TILDE] = ACTIONS(4784), - [anon_sym_EQ_EQ] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4784), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5141), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1931] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5141), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_RBRACK] = ACTIONS(4782), + [anon_sym_EQ_TILDE] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4782), }, [1932] = { [sym__concat] = ACTIONS(4790), @@ -54317,158 +54338,158 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(5152), }, [1939] = { - [sym_file_descriptor] = ACTIONS(1748), - [sym__concat] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_RPAREN] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [anon_sym_LT] = ACTIONS(1750), - [anon_sym_GT] = ACTIONS(1750), - [anon_sym_GT_GT] = ACTIONS(1750), - [anon_sym_AMP_GT] = ACTIONS(1750), - [anon_sym_AMP_GT_GT] = ACTIONS(1750), - [anon_sym_LT_AMP] = ACTIONS(1750), - [anon_sym_GT_AMP] = ACTIONS(1750), - [anon_sym_LT_LT] = ACTIONS(1750), - [anon_sym_LT_LT_DASH] = ACTIONS(1750), - [anon_sym_LT_LT_LT] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [1940] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5154), - }, - [1941] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5156), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [1942] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(5158), + [anon_sym_EQ] = ACTIONS(5154), [sym_comment] = ACTIONS(53), }, - [1943] = { - [sym_concatenation] = STATE(2229), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2229), - [anon_sym_RBRACE] = ACTIONS(5160), - [anon_sym_EQ] = ACTIONS(5162), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(5166), - [anon_sym_COLON] = ACTIONS(5162), - [anon_sym_COLON_QMARK] = ACTIONS(5162), - [anon_sym_COLON_DASH] = ACTIONS(5162), - [anon_sym_PERCENT] = ACTIONS(5162), - [anon_sym_DASH] = ACTIONS(5162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [1940] = { + [sym_concatenation] = STATE(2227), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2227), + [anon_sym_RBRACE] = ACTIONS(5156), + [anon_sym_EQ] = ACTIONS(5158), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5160), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(5162), + [anon_sym_COLON] = ACTIONS(5158), + [anon_sym_COLON_QMARK] = ACTIONS(5158), + [anon_sym_COLON_DASH] = ACTIONS(5158), + [anon_sym_PERCENT] = ACTIONS(5158), + [anon_sym_DASH] = ACTIONS(5158), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [1941] = { + [sym_concatenation] = STATE(2230), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2230), + [anon_sym_RBRACE] = ACTIONS(5164), + [anon_sym_EQ] = ACTIONS(5166), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5168), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(5170), + [anon_sym_COLON] = ACTIONS(5166), + [anon_sym_COLON_QMARK] = ACTIONS(5166), + [anon_sym_COLON_DASH] = ACTIONS(5166), + [anon_sym_PERCENT] = ACTIONS(5166), + [anon_sym_DASH] = ACTIONS(5166), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1942] = { + [sym_concatenation] = STATE(2232), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2232), + [anon_sym_RBRACE] = ACTIONS(5148), + [anon_sym_EQ] = ACTIONS(5172), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5174), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(5176), + [anon_sym_COLON] = ACTIONS(5172), + [anon_sym_COLON_QMARK] = ACTIONS(5172), + [anon_sym_COLON_DASH] = ACTIONS(5172), + [anon_sym_PERCENT] = ACTIONS(5172), + [anon_sym_DASH] = ACTIONS(5172), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [1943] = { + [sym_file_descriptor] = ACTIONS(1772), + [sym__concat] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_RPAREN] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [anon_sym_LT] = ACTIONS(1774), + [anon_sym_GT] = ACTIONS(1774), + [anon_sym_GT_GT] = ACTIONS(1774), + [anon_sym_AMP_GT] = ACTIONS(1774), + [anon_sym_AMP_GT_GT] = ACTIONS(1774), + [anon_sym_LT_AMP] = ACTIONS(1774), + [anon_sym_GT_AMP] = ACTIONS(1774), + [anon_sym_LT_LT] = ACTIONS(1774), + [anon_sym_LT_LT_DASH] = ACTIONS(1774), + [anon_sym_LT_LT_LT] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [1944] = { - [sym_concatenation] = STATE(2232), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2232), - [anon_sym_RBRACE] = ACTIONS(5168), - [anon_sym_EQ] = ACTIONS(5170), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5172), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(5174), - [anon_sym_COLON] = ACTIONS(5170), - [anon_sym_COLON_QMARK] = ACTIONS(5170), - [anon_sym_COLON_DASH] = ACTIONS(5170), - [anon_sym_PERCENT] = ACTIONS(5170), - [anon_sym_DASH] = ACTIONS(5170), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(5178), }, [1945] = { - [sym_concatenation] = STATE(2234), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2234), - [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(5176), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5178), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(5180), - [anon_sym_COLON] = ACTIONS(5176), - [anon_sym_COLON_QMARK] = ACTIONS(5176), - [anon_sym_COLON_DASH] = ACTIONS(5176), - [anon_sym_PERCENT] = ACTIONS(5176), - [anon_sym_DASH] = ACTIONS(5176), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5180), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1946] = { [sym_file_descriptor] = ACTIONS(1816), @@ -54501,33 +54522,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(5182), }, [1948] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5184), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1949] = { [sym_file_descriptor] = ACTIONS(1824), @@ -54560,33 +54581,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(5186), }, [1951] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5148), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [1952] = { [sym_file_descriptor] = ACTIONS(1830), @@ -54885,187 +54906,187 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(5204), }, [1963] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4756), - [anon_sym_EQ_TILDE] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4720), + [anon_sym_EQ_TILDE] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4756), + [sym_test_operator] = ACTIONS(4720), }, [1964] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4764), - [anon_sym_EQ_TILDE] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4764), - [anon_sym_GT] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4724), + [anon_sym_EQ_TILDE] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4724), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4764), + [sym_test_operator] = ACTIONS(4724), }, [1965] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4768), - [anon_sym_EQ_TILDE] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4768), + [sym_test_operator] = ACTIONS(4728), }, [1966] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4772), - [anon_sym_EQ_TILDE] = ACTIONS(4772), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5208), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1967] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5208), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4734), }, [1968] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4778), - [anon_sym_EQ_TILDE] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4778), - [anon_sym_GT] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5210), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1969] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5210), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4740), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4740), + [anon_sym_AMP_AMP] = ACTIONS(4740), + [anon_sym_PIPE_PIPE] = ACTIONS(4740), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4740), + [anon_sym_EQ_TILDE] = ACTIONS(4740), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4740), }, [1970] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [anon_sym_RBRACK_RBRACK] = ACTIONS(4784), - [anon_sym_EQ_TILDE] = ACTIONS(4784), - [anon_sym_EQ_EQ] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4784), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5212), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [1971] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5212), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_RBRACK_RBRACK] = ACTIONS(4782), + [anon_sym_EQ_TILDE] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4782), }, [1972] = { [sym__concat] = ACTIONS(4790), @@ -55100,241 +55121,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(4794), }, [1974] = { - [sym__concat] = ACTIONS(4756), - [sym_variable_name] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [sym_variable_name] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [1975] = { - [sym__concat] = ACTIONS(4764), - [sym_variable_name] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [sym_variable_name] = ACTIONS(4724), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [1976] = { - [sym__concat] = ACTIONS(4768), - [sym_variable_name] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [1977] = { - [sym__concat] = ACTIONS(4772), - [sym_variable_name] = ACTIONS(4772), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5214), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [1978] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5214), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [1979] = { - [sym__concat] = ACTIONS(4778), - [sym_variable_name] = ACTIONS(4778), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5216), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [1980] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5216), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [sym_variable_name] = ACTIONS(4740), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [1981] = { - [sym__concat] = ACTIONS(4784), - [sym_variable_name] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5218), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [1982] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5218), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [sym_variable_name] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [1983] = { [sym__concat] = ACTIONS(4790), @@ -55387,235 +55408,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4796), }, [1985] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [1986] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [1987] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [1988] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5220), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [1989] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5220), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [1990] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5222), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [1991] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5222), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [1992] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5224), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [1993] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5224), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [1994] = { [sym__concat] = ACTIONS(4790), @@ -55666,229 +55687,229 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4796), }, [1996] = { - [sym_file_descriptor] = ACTIONS(4756), - [sym__concat] = ACTIONS(4756), - [sym_variable_name] = ACTIONS(4756), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_GT_GT] = ACTIONS(4756), - [anon_sym_AMP_GT] = ACTIONS(4758), - [anon_sym_AMP_GT_GT] = ACTIONS(4756), - [anon_sym_LT_AMP] = ACTIONS(4756), - [anon_sym_GT_AMP] = ACTIONS(4756), - [sym__special_characters] = ACTIONS(4756), - [anon_sym_DQUOTE] = ACTIONS(4756), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), - [anon_sym_BQUOTE] = ACTIONS(4756), - [anon_sym_LT_LPAREN] = ACTIONS(4756), - [anon_sym_GT_LPAREN] = ACTIONS(4756), + [sym_file_descriptor] = ACTIONS(4720), + [sym__concat] = ACTIONS(4720), + [sym_variable_name] = ACTIONS(4720), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4720), + [anon_sym_AMP_GT] = ACTIONS(4722), + [anon_sym_AMP_GT_GT] = ACTIONS(4720), + [anon_sym_LT_AMP] = ACTIONS(4720), + [anon_sym_GT_AMP] = ACTIONS(4720), + [sym__special_characters] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), + [anon_sym_BQUOTE] = ACTIONS(4720), + [anon_sym_LT_LPAREN] = ACTIONS(4720), + [anon_sym_GT_LPAREN] = ACTIONS(4720), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4756), + [sym_word] = ACTIONS(4720), }, [1997] = { - [sym_file_descriptor] = ACTIONS(4764), - [sym__concat] = ACTIONS(4764), - [sym_variable_name] = ACTIONS(4764), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4764), - [anon_sym_AMP_GT] = ACTIONS(4766), - [anon_sym_AMP_GT_GT] = ACTIONS(4764), - [anon_sym_LT_AMP] = ACTIONS(4764), - [anon_sym_GT_AMP] = ACTIONS(4764), - [sym__special_characters] = ACTIONS(4764), - [anon_sym_DQUOTE] = ACTIONS(4764), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), - [anon_sym_BQUOTE] = ACTIONS(4764), - [anon_sym_LT_LPAREN] = ACTIONS(4764), - [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym_file_descriptor] = ACTIONS(4724), + [sym__concat] = ACTIONS(4724), + [sym_variable_name] = ACTIONS(4724), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_GT_GT] = ACTIONS(4724), + [anon_sym_AMP_GT] = ACTIONS(4726), + [anon_sym_AMP_GT_GT] = ACTIONS(4724), + [anon_sym_LT_AMP] = ACTIONS(4724), + [anon_sym_GT_AMP] = ACTIONS(4724), + [sym__special_characters] = ACTIONS(4724), + [anon_sym_DQUOTE] = ACTIONS(4724), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4724), + [anon_sym_BQUOTE] = ACTIONS(4724), + [anon_sym_LT_LPAREN] = ACTIONS(4724), + [anon_sym_GT_LPAREN] = ACTIONS(4724), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4764), + [sym_word] = ACTIONS(4724), }, [1998] = { - [sym_file_descriptor] = ACTIONS(4768), - [sym__concat] = ACTIONS(4768), - [sym_variable_name] = ACTIONS(4768), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_GT_GT] = ACTIONS(4768), - [anon_sym_AMP_GT] = ACTIONS(4770), - [anon_sym_AMP_GT_GT] = ACTIONS(4768), - [anon_sym_LT_AMP] = ACTIONS(4768), - [anon_sym_GT_AMP] = ACTIONS(4768), - [sym__special_characters] = ACTIONS(4768), - [anon_sym_DQUOTE] = ACTIONS(4768), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), - [anon_sym_BQUOTE] = ACTIONS(4768), - [anon_sym_LT_LPAREN] = ACTIONS(4768), - [anon_sym_GT_LPAREN] = ACTIONS(4768), + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4728), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4728), + [anon_sym_LT_AMP] = ACTIONS(4728), + [anon_sym_GT_AMP] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4768), + [sym_word] = ACTIONS(4728), }, [1999] = { - [sym_file_descriptor] = ACTIONS(4772), - [sym__concat] = ACTIONS(4772), - [sym_variable_name] = ACTIONS(4772), - [anon_sym_LT] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4772), - [anon_sym_AMP_GT] = ACTIONS(4774), - [anon_sym_AMP_GT_GT] = ACTIONS(4772), - [anon_sym_LT_AMP] = ACTIONS(4772), - [anon_sym_GT_AMP] = ACTIONS(4772), - [sym__special_characters] = ACTIONS(4772), - [anon_sym_DQUOTE] = ACTIONS(4772), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), - [anon_sym_BQUOTE] = ACTIONS(4772), - [anon_sym_LT_LPAREN] = ACTIONS(4772), - [anon_sym_GT_LPAREN] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5226), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2000] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5226), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4734), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4734), + [anon_sym_LT_AMP] = ACTIONS(4734), + [anon_sym_GT_AMP] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4734), }, [2001] = { - [sym_file_descriptor] = ACTIONS(4778), - [sym__concat] = ACTIONS(4778), - [sym_variable_name] = ACTIONS(4778), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4778), - [anon_sym_AMP_GT] = ACTIONS(4780), - [anon_sym_AMP_GT_GT] = ACTIONS(4778), - [anon_sym_LT_AMP] = ACTIONS(4778), - [anon_sym_GT_AMP] = ACTIONS(4778), - [sym__special_characters] = ACTIONS(4778), - [anon_sym_DQUOTE] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), - [anon_sym_BQUOTE] = ACTIONS(4778), - [anon_sym_LT_LPAREN] = ACTIONS(4778), - [anon_sym_GT_LPAREN] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5228), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2002] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5228), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_file_descriptor] = ACTIONS(4740), + [sym__concat] = ACTIONS(4740), + [sym_variable_name] = ACTIONS(4740), + [anon_sym_LT] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4742), + [anon_sym_GT_GT] = ACTIONS(4740), + [anon_sym_AMP_GT] = ACTIONS(4742), + [anon_sym_AMP_GT_GT] = ACTIONS(4740), + [anon_sym_LT_AMP] = ACTIONS(4740), + [anon_sym_GT_AMP] = ACTIONS(4740), + [sym__special_characters] = ACTIONS(4740), + [anon_sym_DQUOTE] = ACTIONS(4740), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), + [anon_sym_BQUOTE] = ACTIONS(4740), + [anon_sym_LT_LPAREN] = ACTIONS(4740), + [anon_sym_GT_LPAREN] = ACTIONS(4740), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4740), }, [2003] = { - [sym_file_descriptor] = ACTIONS(4784), - [sym__concat] = ACTIONS(4784), - [sym_variable_name] = ACTIONS(4784), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4784), - [anon_sym_AMP_GT] = ACTIONS(4786), - [anon_sym_AMP_GT_GT] = ACTIONS(4784), - [anon_sym_LT_AMP] = ACTIONS(4784), - [anon_sym_GT_AMP] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), - [anon_sym_BQUOTE] = ACTIONS(4784), - [anon_sym_LT_LPAREN] = ACTIONS(4784), - [anon_sym_GT_LPAREN] = ACTIONS(4784), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5230), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2004] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5230), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_file_descriptor] = ACTIONS(4782), + [sym__concat] = ACTIONS(4782), + [sym_variable_name] = ACTIONS(4782), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4782), + [anon_sym_AMP_GT] = ACTIONS(4784), + [anon_sym_AMP_GT_GT] = ACTIONS(4782), + [anon_sym_LT_AMP] = ACTIONS(4782), + [anon_sym_GT_AMP] = ACTIONS(4782), + [sym__special_characters] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), + [anon_sym_BQUOTE] = ACTIONS(4782), + [anon_sym_LT_LPAREN] = ACTIONS(4782), + [anon_sym_GT_LPAREN] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4782), }, [2005] = { [sym_file_descriptor] = ACTIONS(4790), @@ -55937,151 +55958,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4794), }, [2007] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym__string_content] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym__string_content] = ACTIONS(4720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), [sym_comment] = ACTIONS(179), }, [2008] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym__string_content] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym__string_content] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), [sym_comment] = ACTIONS(179), }, [2009] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym__string_content] = ACTIONS(4768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym__string_content] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), [sym_comment] = ACTIONS(179), }, [2010] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym__string_content] = ACTIONS(4772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5232), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2011] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5232), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym__string_content] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), }, [2012] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym__string_content] = ACTIONS(4778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5234), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2013] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5234), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym__string_content] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), }, [2014] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym__string_content] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5236), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2015] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5236), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym__string_content] = ACTIONS(4782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), }, [2016] = { [sym__concat] = ACTIONS(4790), @@ -56174,197 +56195,197 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2025] = { - [sym_concatenation] = STATE(2261), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2261), - [anon_sym_RBRACE] = ACTIONS(5246), - [anon_sym_EQ] = ACTIONS(5248), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5248), - [anon_sym_COLON_QMARK] = ACTIONS(5248), - [anon_sym_COLON_DASH] = ACTIONS(5248), - [anon_sym_PERCENT] = ACTIONS(5248), - [anon_sym_DASH] = ACTIONS(5248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2026] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RBRACE] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - }, - [2027] = { - [sym_concatenation] = STATE(2264), - [sym_string] = STATE(2263), - [sym_simple_expansion] = STATE(2263), - [sym_string_expansion] = STATE(2263), - [sym_expansion] = STATE(2263), - [sym_command_substitution] = STATE(2263), - [sym_process_substitution] = STATE(2263), + [sym_concatenation] = STATE(2262), + [sym_string] = STATE(2261), + [sym_simple_expansion] = STATE(2261), + [sym_string_expansion] = STATE(2261), + [sym_expansion] = STATE(2261), + [sym_command_substitution] = STATE(2261), + [sym_process_substitution] = STATE(2261), [anon_sym_RBRACE] = ACTIONS(5244), - [sym__special_characters] = ACTIONS(5252), + [sym__special_characters] = ACTIONS(5246), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5254), + [sym_raw_string] = ACTIONS(5248), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5254), + [sym_word] = ACTIONS(5248), + }, + [2026] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_RBRACE] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + }, + [2027] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5250), }, [2028] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RBRACE] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5252), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2029] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5256), + [sym__concat] = ACTIONS(2876), + [anon_sym_RBRACE] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), }, [2030] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5258), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(5254), }, [2031] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_RBRACE] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5256), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2032] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5260), + [sym_regex_without_right_brace] = ACTIONS(5258), }, [2033] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5262), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5244), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2034] = { + [sym_concatenation] = STATE(2269), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2269), + [anon_sym_RBRACE] = ACTIONS(5260), + [anon_sym_EQ] = ACTIONS(5262), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5264), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5262), + [anon_sym_COLON_QMARK] = ACTIONS(5262), + [anon_sym_COLON_DASH] = ACTIONS(5262), + [anon_sym_PERCENT] = ACTIONS(5262), + [anon_sym_DASH] = ACTIONS(5262), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5264), + [sym_word] = ACTIONS(767), }, [2035] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5244), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(2948), + [anon_sym_RBRACE] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), }, [2036] = { [sym_concatenation] = STATE(2271), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2271), [anon_sym_RBRACE] = ACTIONS(5266), [anon_sym_EQ] = ACTIONS(5268), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5270), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5268), [anon_sym_COLON_QMARK] = ACTIONS(5268), [anon_sym_COLON_DASH] = ACTIONS(5268), [anon_sym_PERCENT] = ACTIONS(5268), [anon_sym_DASH] = ACTIONS(5268), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2037] = { [sym__concat] = ACTIONS(2993), @@ -56373,32 +56394,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [2038] = { [sym_concatenation] = STATE(2273), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2273), [anon_sym_RBRACE] = ACTIONS(5272), [anon_sym_EQ] = ACTIONS(5274), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5276), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5274), [anon_sym_COLON_QMARK] = ACTIONS(5274), [anon_sym_COLON_DASH] = ACTIONS(5274), [anon_sym_PERCENT] = ACTIONS(5274), [anon_sym_DASH] = ACTIONS(5274), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2039] = { [sym__concat] = ACTIONS(3003), @@ -56527,6 +56548,123 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(819), }, [2044] = { + [sym__simple_heredoc_body] = ACTIONS(5282), + [sym__heredoc_body_beginning] = ACTIONS(5282), + [sym_file_descriptor] = ACTIONS(5282), + [sym__concat] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [anon_sym_EQ_TILDE] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_AMP_GT] = ACTIONS(5284), + [anon_sym_AMP_GT_GT] = ACTIONS(5284), + [anon_sym_LT_AMP] = ACTIONS(5284), + [anon_sym_GT_AMP] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_LT_LT_DASH] = ACTIONS(5284), + [anon_sym_LT_LT_LT] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), + }, + [2045] = { + [sym__simple_heredoc_body] = ACTIONS(5286), + [sym__heredoc_body_beginning] = ACTIONS(5286), + [sym_file_descriptor] = ACTIONS(5286), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [anon_sym_EQ_TILDE] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_AMP_GT] = ACTIONS(5288), + [anon_sym_AMP_GT_GT] = ACTIONS(5288), + [anon_sym_LT_AMP] = ACTIONS(5288), + [anon_sym_GT_AMP] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_LT_LT_DASH] = ACTIONS(5288), + [anon_sym_LT_LT_LT] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), + }, + [2046] = { + [sym__simple_heredoc_body] = ACTIONS(5290), + [sym__heredoc_body_beginning] = ACTIONS(5290), + [sym_file_descriptor] = ACTIONS(5290), + [sym__concat] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [anon_sym_EQ_TILDE] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_AMP_GT] = ACTIONS(5292), + [anon_sym_AMP_GT_GT] = ACTIONS(5292), + [anon_sym_LT_AMP] = ACTIONS(5292), + [anon_sym_GT_AMP] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_LT_LT_DASH] = ACTIONS(5292), + [anon_sym_LT_LT_LT] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), + }, + [2047] = { [sym__concat] = ACTIONS(3802), [anon_sym_RBRACE] = ACTIONS(3802), [anon_sym_EQ] = ACTIONS(3804), @@ -56548,7 +56686,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3804), }, - [2045] = { + [2048] = { [sym__concat] = ACTIONS(3810), [anon_sym_RBRACE] = ACTIONS(3810), [anon_sym_EQ] = ACTIONS(3812), @@ -56570,205 +56708,205 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3812), }, - [2046] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3909), - [anon_sym_POUND] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), - [anon_sym_COLON] = ACTIONS(3911), - [anon_sym_COLON_QMARK] = ACTIONS(3911), - [anon_sym_COLON_DASH] = ACTIONS(3911), - [anon_sym_PERCENT] = ACTIONS(3911), - [anon_sym_DASH] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), - [anon_sym_BQUOTE] = ACTIONS(3909), - [anon_sym_LT_LPAREN] = ACTIONS(3909), - [anon_sym_GT_LPAREN] = ACTIONS(3909), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3911), - }, - [2047] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5282), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2048] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5284), - [sym_comment] = ACTIONS(53), - }, [2049] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5294), [sym_comment] = ACTIONS(53), }, [2050] = { - [anon_sym_RBRACE] = ACTIONS(5286), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5296), [sym_comment] = ACTIONS(53), }, [2051] = { - [sym_concatenation] = STATE(2280), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2280), - [anon_sym_RBRACE] = ACTIONS(5288), - [anon_sym_EQ] = ACTIONS(5290), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5292), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5290), - [anon_sym_COLON_QMARK] = ACTIONS(5290), - [anon_sym_COLON_DASH] = ACTIONS(5290), - [anon_sym_PERCENT] = ACTIONS(5290), - [anon_sym_DASH] = ACTIONS(5290), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_RBRACE] = ACTIONS(5296), + [sym_comment] = ACTIONS(53), }, [2052] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), - [anon_sym_EQ] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3945), - [anon_sym_POUND] = ACTIONS(3945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), - [anon_sym_COLON] = ACTIONS(3947), - [anon_sym_COLON_QMARK] = ACTIONS(3947), - [anon_sym_COLON_DASH] = ACTIONS(3947), - [anon_sym_PERCENT] = ACTIONS(3947), - [anon_sym_DASH] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), - [anon_sym_BQUOTE] = ACTIONS(3945), - [anon_sym_LT_LPAREN] = ACTIONS(3945), - [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym_concatenation] = STATE(2279), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2279), + [anon_sym_RBRACE] = ACTIONS(5298), + [anon_sym_EQ] = ACTIONS(5300), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5302), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5300), + [anon_sym_COLON_QMARK] = ACTIONS(5300), + [anon_sym_COLON_DASH] = ACTIONS(5300), + [anon_sym_PERCENT] = ACTIONS(5300), + [anon_sym_DASH] = ACTIONS(5300), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3947), + [sym_word] = ACTIONS(767), }, [2053] = { - [sym_concatenation] = STATE(2282), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2282), - [anon_sym_RBRACE] = ACTIONS(5294), - [anon_sym_EQ] = ACTIONS(5296), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5298), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5296), - [anon_sym_COLON_QMARK] = ACTIONS(5296), - [anon_sym_COLON_DASH] = ACTIONS(5296), - [anon_sym_PERCENT] = ACTIONS(5296), - [anon_sym_DASH] = ACTIONS(5296), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3874), + [anon_sym_EQ] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3874), + [anon_sym_POUND] = ACTIONS(3874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), + [anon_sym_COLON] = ACTIONS(3876), + [anon_sym_COLON_QMARK] = ACTIONS(3876), + [anon_sym_COLON_DASH] = ACTIONS(3876), + [anon_sym_PERCENT] = ACTIONS(3876), + [anon_sym_DASH] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), + [anon_sym_BQUOTE] = ACTIONS(3874), + [anon_sym_LT_LPAREN] = ACTIONS(3874), + [anon_sym_GT_LPAREN] = ACTIONS(3874), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(3876), }, [2054] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_RBRACE] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3955), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3955), - [anon_sym_POUND] = ACTIONS(3955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), - [anon_sym_COLON] = ACTIONS(3957), - [anon_sym_COLON_QMARK] = ACTIONS(3957), - [anon_sym_COLON_DASH] = ACTIONS(3957), - [anon_sym_PERCENT] = ACTIONS(3957), - [anon_sym_DASH] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), - [anon_sym_BQUOTE] = ACTIONS(3955), - [anon_sym_LT_LPAREN] = ACTIONS(3955), - [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym_concatenation] = STATE(2281), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2281), + [anon_sym_RBRACE] = ACTIONS(5304), + [anon_sym_EQ] = ACTIONS(5306), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5308), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5306), + [anon_sym_COLON_QMARK] = ACTIONS(5306), + [anon_sym_COLON_DASH] = ACTIONS(5306), + [anon_sym_PERCENT] = ACTIONS(5306), + [anon_sym_DASH] = ACTIONS(5306), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(3957), + [sym_word] = ACTIONS(767), }, [2055] = { - [sym_concatenation] = STATE(2284), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2284), - [anon_sym_RBRACE] = ACTIONS(5300), - [anon_sym_EQ] = ACTIONS(5302), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5304), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5302), - [anon_sym_COLON_QMARK] = ACTIONS(5302), - [anon_sym_COLON_DASH] = ACTIONS(5302), - [anon_sym_PERCENT] = ACTIONS(5302), - [anon_sym_DASH] = ACTIONS(5302), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(3884), + [anon_sym_RBRACE] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3884), + [anon_sym_POUND] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), + [anon_sym_COLON] = ACTIONS(3886), + [anon_sym_COLON_QMARK] = ACTIONS(3886), + [anon_sym_COLON_DASH] = ACTIONS(3886), + [anon_sym_PERCENT] = ACTIONS(3886), + [anon_sym_DASH] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_LT_LPAREN] = ACTIONS(3884), + [anon_sym_GT_LPAREN] = ACTIONS(3884), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(3886), }, [2056] = { + [sym_concatenation] = STATE(2283), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2283), + [anon_sym_RBRACE] = ACTIONS(5310), + [anon_sym_EQ] = ACTIONS(5312), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5314), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5312), + [anon_sym_COLON_QMARK] = ACTIONS(5312), + [anon_sym_COLON_DASH] = ACTIONS(5312), + [anon_sym_PERCENT] = ACTIONS(5312), + [anon_sym_DASH] = ACTIONS(5312), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2057] = { + [sym__concat] = ACTIONS(3939), + [anon_sym_RBRACE] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3939), + [anon_sym_POUND] = ACTIONS(3939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), + [anon_sym_COLON] = ACTIONS(3941), + [anon_sym_COLON_QMARK] = ACTIONS(3941), + [anon_sym_COLON_DASH] = ACTIONS(3941), + [anon_sym_PERCENT] = ACTIONS(3941), + [anon_sym_DASH] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), + [anon_sym_BQUOTE] = ACTIONS(3939), + [anon_sym_LT_LPAREN] = ACTIONS(3939), + [anon_sym_GT_LPAREN] = ACTIONS(3939), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(3941), + }, + [2058] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5316), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2059] = { [sym__concat] = ACTIONS(3965), [anon_sym_RBRACE] = ACTIONS(3965), [anon_sym_EQ] = ACTIONS(3967), @@ -56790,36 +56928,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3967), }, - [2057] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5306), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [2060] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5318), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [2058] = { + [2061] = { [sym__concat] = ACTIONS(3971), [anon_sym_RBRACE] = ACTIONS(3971), [anon_sym_EQ] = ACTIONS(3973), @@ -56841,36 +56979,36 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3973), }, - [2059] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5308), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [2062] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5320), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, - [2060] = { + [2063] = { [sym__concat] = ACTIONS(3977), [anon_sym_RBRACE] = ACTIONS(3977), [anon_sym_EQ] = ACTIONS(3979), @@ -56892,7 +57030,7 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(3979), }, - [2061] = { + [2064] = { [sym__concat] = ACTIONS(4001), [anon_sym_RBRACE] = ACTIONS(4001), [anon_sym_EQ] = ACTIONS(4003), @@ -56914,123 +57052,6 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(179), [sym_word] = ACTIONS(4003), }, - [2062] = { - [sym__simple_heredoc_body] = ACTIONS(5310), - [sym__heredoc_body_beginning] = ACTIONS(5310), - [sym_file_descriptor] = ACTIONS(5310), - [sym__concat] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_EQ_TILDE] = ACTIONS(5312), - [anon_sym_EQ_EQ] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5312), - [anon_sym_AMP_GT] = ACTIONS(5312), - [anon_sym_AMP_GT_GT] = ACTIONS(5312), - [anon_sym_LT_AMP] = ACTIONS(5312), - [anon_sym_GT_AMP] = ACTIONS(5312), - [anon_sym_LT_LT] = ACTIONS(5312), - [anon_sym_LT_LT_DASH] = ACTIONS(5312), - [anon_sym_LT_LT_LT] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), - }, - [2063] = { - [sym__simple_heredoc_body] = ACTIONS(5314), - [sym__heredoc_body_beginning] = ACTIONS(5314), - [sym_file_descriptor] = ACTIONS(5314), - [sym__concat] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_EQ_TILDE] = ACTIONS(5316), - [anon_sym_EQ_EQ] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5316), - [anon_sym_GT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5316), - [anon_sym_AMP_GT] = ACTIONS(5316), - [anon_sym_AMP_GT_GT] = ACTIONS(5316), - [anon_sym_LT_AMP] = ACTIONS(5316), - [anon_sym_GT_AMP] = ACTIONS(5316), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_LT_LT_DASH] = ACTIONS(5316), - [anon_sym_LT_LT_LT] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), - }, - [2064] = { - [sym__simple_heredoc_body] = ACTIONS(5318), - [sym__heredoc_body_beginning] = ACTIONS(5318), - [sym_file_descriptor] = ACTIONS(5318), - [sym__concat] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_EQ_TILDE] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5320), - [anon_sym_AMP_GT] = ACTIONS(5320), - [anon_sym_AMP_GT_GT] = ACTIONS(5320), - [anon_sym_LT_AMP] = ACTIONS(5320), - [anon_sym_GT_AMP] = ACTIONS(5320), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_LT_LT_DASH] = ACTIONS(5320), - [anon_sym_LT_LT_LT] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), - }, [2065] = { [aux_sym_concatenation_repeat1] = STATE(2067), [sym__concat] = ACTIONS(607), @@ -57163,157 +57184,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2073] = { - [sym__heredoc_body_middle] = ACTIONS(3909), - [sym__heredoc_body_end] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5322), [sym_comment] = ACTIONS(53), }, [2074] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5322), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2075] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(5324), [sym_comment] = ACTIONS(53), }, - [2076] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5326), + [2075] = { + [anon_sym_RBRACE] = ACTIONS(5324), [sym_comment] = ACTIONS(53), }, - [2077] = { + [2076] = { + [sym_concatenation] = STATE(2292), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2292), [anon_sym_RBRACE] = ACTIONS(5326), + [anon_sym_EQ] = ACTIONS(5328), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5330), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5328), + [anon_sym_COLON_QMARK] = ACTIONS(5328), + [anon_sym_COLON_DASH] = ACTIONS(5328), + [anon_sym_PERCENT] = ACTIONS(5328), + [anon_sym_DASH] = ACTIONS(5328), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2077] = { + [sym__heredoc_body_middle] = ACTIONS(3874), + [sym__heredoc_body_end] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), [sym_comment] = ACTIONS(53), }, [2078] = { - [sym_concatenation] = STATE(2293), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2293), - [anon_sym_RBRACE] = ACTIONS(5328), - [anon_sym_EQ] = ACTIONS(5330), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5332), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5330), - [anon_sym_COLON_QMARK] = ACTIONS(5330), - [anon_sym_COLON_DASH] = ACTIONS(5330), - [anon_sym_PERCENT] = ACTIONS(5330), - [anon_sym_DASH] = ACTIONS(5330), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2294), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2294), + [anon_sym_RBRACE] = ACTIONS(5332), + [anon_sym_EQ] = ACTIONS(5334), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5336), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5334), + [anon_sym_COLON_QMARK] = ACTIONS(5334), + [anon_sym_COLON_DASH] = ACTIONS(5334), + [anon_sym_PERCENT] = ACTIONS(5334), + [anon_sym_DASH] = ACTIONS(5334), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2079] = { - [sym__heredoc_body_middle] = ACTIONS(3945), - [sym__heredoc_body_end] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), + [sym__heredoc_body_middle] = ACTIONS(3884), + [sym__heredoc_body_end] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), [sym_comment] = ACTIONS(53), }, [2080] = { - [sym_concatenation] = STATE(2295), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2295), - [anon_sym_RBRACE] = ACTIONS(5334), - [anon_sym_EQ] = ACTIONS(5336), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5338), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5336), - [anon_sym_COLON_QMARK] = ACTIONS(5336), - [anon_sym_COLON_DASH] = ACTIONS(5336), - [anon_sym_PERCENT] = ACTIONS(5336), - [anon_sym_DASH] = ACTIONS(5336), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2296), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2296), + [anon_sym_RBRACE] = ACTIONS(5338), + [anon_sym_EQ] = ACTIONS(5340), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5342), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5340), + [anon_sym_COLON_QMARK] = ACTIONS(5340), + [anon_sym_COLON_DASH] = ACTIONS(5340), + [anon_sym_PERCENT] = ACTIONS(5340), + [anon_sym_DASH] = ACTIONS(5340), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2081] = { - [sym__heredoc_body_middle] = ACTIONS(3955), - [sym__heredoc_body_end] = ACTIONS(3955), - [anon_sym_DOLLAR] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), + [sym__heredoc_body_middle] = ACTIONS(3939), + [sym__heredoc_body_end] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), [sym_comment] = ACTIONS(53), }, [2082] = { - [sym_concatenation] = STATE(2297), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2297), - [anon_sym_RBRACE] = ACTIONS(5340), - [anon_sym_EQ] = ACTIONS(5342), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5344), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5342), - [anon_sym_COLON_QMARK] = ACTIONS(5342), - [anon_sym_COLON_DASH] = ACTIONS(5342), - [anon_sym_PERCENT] = ACTIONS(5342), - [anon_sym_DASH] = ACTIONS(5342), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5344), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2083] = { [sym__heredoc_body_middle] = ACTIONS(3965), @@ -57323,33 +57344,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2084] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5346), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2085] = { [sym__heredoc_body_middle] = ACTIONS(3971), @@ -57359,33 +57380,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2086] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5348), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2087] = { [sym__concat] = ACTIONS(3802), @@ -57418,181 +57439,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3810), }, [2089] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_RPAREN] = ACTIONS(3909), - [sym__special_characters] = ACTIONS(3909), - [anon_sym_DQUOTE] = ACTIONS(3909), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3909), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3909), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3909), - [anon_sym_BQUOTE] = ACTIONS(3909), - [anon_sym_LT_LPAREN] = ACTIONS(3909), - [anon_sym_GT_LPAREN] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5350), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3909), }, [2090] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5350), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2091] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(5352), [sym_comment] = ACTIONS(53), }, - [2092] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5354), + [2091] = { + [anon_sym_RBRACE] = ACTIONS(5352), [sym_comment] = ACTIONS(53), }, + [2092] = { + [sym_concatenation] = STATE(2303), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2303), + [anon_sym_RBRACE] = ACTIONS(5354), + [anon_sym_EQ] = ACTIONS(5356), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5358), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5356), + [anon_sym_COLON_QMARK] = ACTIONS(5356), + [anon_sym_COLON_DASH] = ACTIONS(5356), + [anon_sym_PERCENT] = ACTIONS(5356), + [anon_sym_DASH] = ACTIONS(5356), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [2093] = { - [anon_sym_RBRACE] = ACTIONS(5354), + [sym__concat] = ACTIONS(3874), + [anon_sym_RPAREN] = ACTIONS(3874), + [sym__special_characters] = ACTIONS(3874), + [anon_sym_DQUOTE] = ACTIONS(3874), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3874), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3874), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3874), + [anon_sym_BQUOTE] = ACTIONS(3874), + [anon_sym_LT_LPAREN] = ACTIONS(3874), + [anon_sym_GT_LPAREN] = ACTIONS(3874), [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(3874), }, [2094] = { - [sym_concatenation] = STATE(2304), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2304), - [anon_sym_RBRACE] = ACTIONS(5356), - [anon_sym_EQ] = ACTIONS(5358), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5360), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5358), - [anon_sym_COLON_QMARK] = ACTIONS(5358), - [anon_sym_COLON_DASH] = ACTIONS(5358), - [anon_sym_PERCENT] = ACTIONS(5358), - [anon_sym_DASH] = ACTIONS(5358), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2305), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2305), + [anon_sym_RBRACE] = ACTIONS(5360), + [anon_sym_EQ] = ACTIONS(5362), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5364), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5362), + [anon_sym_COLON_QMARK] = ACTIONS(5362), + [anon_sym_COLON_DASH] = ACTIONS(5362), + [anon_sym_PERCENT] = ACTIONS(5362), + [anon_sym_DASH] = ACTIONS(5362), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2095] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_RPAREN] = ACTIONS(3945), - [sym__special_characters] = ACTIONS(3945), - [anon_sym_DQUOTE] = ACTIONS(3945), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3945), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3945), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3945), - [anon_sym_BQUOTE] = ACTIONS(3945), - [anon_sym_LT_LPAREN] = ACTIONS(3945), - [anon_sym_GT_LPAREN] = ACTIONS(3945), + [sym__concat] = ACTIONS(3884), + [anon_sym_RPAREN] = ACTIONS(3884), + [sym__special_characters] = ACTIONS(3884), + [anon_sym_DQUOTE] = ACTIONS(3884), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3884), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3884), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3884), + [anon_sym_BQUOTE] = ACTIONS(3884), + [anon_sym_LT_LPAREN] = ACTIONS(3884), + [anon_sym_GT_LPAREN] = ACTIONS(3884), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3945), + [sym_word] = ACTIONS(3884), }, [2096] = { - [sym_concatenation] = STATE(2306), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2306), - [anon_sym_RBRACE] = ACTIONS(5362), - [anon_sym_EQ] = ACTIONS(5364), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5366), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5364), - [anon_sym_COLON_QMARK] = ACTIONS(5364), - [anon_sym_COLON_DASH] = ACTIONS(5364), - [anon_sym_PERCENT] = ACTIONS(5364), - [anon_sym_DASH] = ACTIONS(5364), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2307), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2307), + [anon_sym_RBRACE] = ACTIONS(5366), + [anon_sym_EQ] = ACTIONS(5368), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5370), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5368), + [anon_sym_COLON_QMARK] = ACTIONS(5368), + [anon_sym_COLON_DASH] = ACTIONS(5368), + [anon_sym_PERCENT] = ACTIONS(5368), + [anon_sym_DASH] = ACTIONS(5368), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2097] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_RPAREN] = ACTIONS(3955), - [sym__special_characters] = ACTIONS(3955), - [anon_sym_DQUOTE] = ACTIONS(3955), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3955), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3955), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3955), - [anon_sym_BQUOTE] = ACTIONS(3955), - [anon_sym_LT_LPAREN] = ACTIONS(3955), - [anon_sym_GT_LPAREN] = ACTIONS(3955), + [sym__concat] = ACTIONS(3939), + [anon_sym_RPAREN] = ACTIONS(3939), + [sym__special_characters] = ACTIONS(3939), + [anon_sym_DQUOTE] = ACTIONS(3939), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3939), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3939), + [anon_sym_BQUOTE] = ACTIONS(3939), + [anon_sym_LT_LPAREN] = ACTIONS(3939), + [anon_sym_GT_LPAREN] = ACTIONS(3939), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(3955), + [sym_word] = ACTIONS(3939), }, [2098] = { - [sym_concatenation] = STATE(2308), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2308), - [anon_sym_RBRACE] = ACTIONS(5368), - [anon_sym_EQ] = ACTIONS(5370), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5372), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5370), - [anon_sym_COLON_QMARK] = ACTIONS(5370), - [anon_sym_COLON_DASH] = ACTIONS(5370), - [anon_sym_PERCENT] = ACTIONS(5370), - [anon_sym_DASH] = ACTIONS(5370), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5372), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2099] = { [sym__concat] = ACTIONS(3965), @@ -57610,33 +57631,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3965), }, [2100] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5374), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2101] = { [sym__concat] = ACTIONS(3971), @@ -57654,33 +57675,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(3971), }, [2102] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5376), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2103] = { [sym__concat] = ACTIONS(3977), @@ -57713,289 +57734,289 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4001), }, [2105] = { - [sym_file_descriptor] = ACTIONS(4756), - [sym__concat] = ACTIONS(4756), - [sym_variable_name] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_GT_GT] = ACTIONS(4758), - [anon_sym_AMP_GT] = ACTIONS(4758), - [anon_sym_AMP_GT_GT] = ACTIONS(4758), - [anon_sym_LT_AMP] = ACTIONS(4758), - [anon_sym_GT_AMP] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym_file_descriptor] = ACTIONS(4720), + [sym__concat] = ACTIONS(4720), + [sym_variable_name] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_AMP_GT] = ACTIONS(4722), + [anon_sym_AMP_GT_GT] = ACTIONS(4722), + [anon_sym_LT_AMP] = ACTIONS(4722), + [anon_sym_GT_AMP] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [2106] = { - [sym_file_descriptor] = ACTIONS(4764), - [sym__concat] = ACTIONS(4764), - [sym_variable_name] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_AMP_GT] = ACTIONS(4766), - [anon_sym_AMP_GT_GT] = ACTIONS(4766), - [anon_sym_LT_AMP] = ACTIONS(4766), - [anon_sym_GT_AMP] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym_file_descriptor] = ACTIONS(4724), + [sym__concat] = ACTIONS(4724), + [sym_variable_name] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_GT_GT] = ACTIONS(4726), + [anon_sym_AMP_GT] = ACTIONS(4726), + [anon_sym_AMP_GT_GT] = ACTIONS(4726), + [anon_sym_LT_AMP] = ACTIONS(4726), + [anon_sym_GT_AMP] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [2107] = { - [sym_file_descriptor] = ACTIONS(4768), - [sym__concat] = ACTIONS(4768), - [sym_variable_name] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_AMP_GT] = ACTIONS(4770), - [anon_sym_AMP_GT_GT] = ACTIONS(4770), - [anon_sym_LT_AMP] = ACTIONS(4770), - [anon_sym_GT_AMP] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [2108] = { - [sym_file_descriptor] = ACTIONS(4772), - [sym__concat] = ACTIONS(4772), - [sym_variable_name] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4774), - [anon_sym_AMP_GT] = ACTIONS(4774), - [anon_sym_AMP_GT_GT] = ACTIONS(4774), - [anon_sym_LT_AMP] = ACTIONS(4774), - [anon_sym_GT_AMP] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5378), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2109] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5378), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [2110] = { - [sym_file_descriptor] = ACTIONS(4778), - [sym__concat] = ACTIONS(4778), - [sym_variable_name] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4780), - [anon_sym_AMP_GT] = ACTIONS(4780), - [anon_sym_AMP_GT_GT] = ACTIONS(4780), - [anon_sym_LT_AMP] = ACTIONS(4780), - [anon_sym_GT_AMP] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5380), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2111] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5380), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4740), + [sym__concat] = ACTIONS(4740), + [sym_variable_name] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4742), + [anon_sym_GT_GT] = ACTIONS(4742), + [anon_sym_AMP_GT] = ACTIONS(4742), + [anon_sym_AMP_GT_GT] = ACTIONS(4742), + [anon_sym_LT_AMP] = ACTIONS(4742), + [anon_sym_GT_AMP] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [2112] = { - [sym_file_descriptor] = ACTIONS(4784), - [sym__concat] = ACTIONS(4784), - [sym_variable_name] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_AMP_GT] = ACTIONS(4786), - [anon_sym_AMP_GT_GT] = ACTIONS(4786), - [anon_sym_LT_AMP] = ACTIONS(4786), - [anon_sym_GT_AMP] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5382), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2113] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5382), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4782), + [sym__concat] = ACTIONS(4782), + [sym_variable_name] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_AMP_GT] = ACTIONS(4784), + [anon_sym_AMP_GT_GT] = ACTIONS(4784), + [anon_sym_LT_AMP] = ACTIONS(4784), + [anon_sym_GT_AMP] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [2114] = { [sym_file_descriptor] = ACTIONS(4790), @@ -58122,224 +58143,224 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2122] = { - [sym_concatenation] = STATE(2317), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2317), - [anon_sym_RBRACE] = ACTIONS(5388), - [anon_sym_EQ] = ACTIONS(5390), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5392), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5390), - [anon_sym_COLON_QMARK] = ACTIONS(5390), - [anon_sym_COLON_DASH] = ACTIONS(5390), - [anon_sym_PERCENT] = ACTIONS(5390), - [anon_sym_DASH] = ACTIONS(5390), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2123] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2926), - [anon_sym_AMP_AMP] = ACTIONS(2926), - [anon_sym_PIPE_PIPE] = ACTIONS(2926), - [anon_sym_EQ_TILDE] = ACTIONS(2926), - [anon_sym_EQ_EQ] = ACTIONS(2926), - [anon_sym_EQ] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2926), - [anon_sym_GT] = ACTIONS(2926), - [anon_sym_BANG_EQ] = ACTIONS(2926), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2926), - }, - [2124] = { - [sym_concatenation] = STATE(2320), - [sym_string] = STATE(2319), - [sym_simple_expansion] = STATE(2319), - [sym_string_expansion] = STATE(2319), - [sym_expansion] = STATE(2319), - [sym_command_substitution] = STATE(2319), - [sym_process_substitution] = STATE(2319), + [sym_concatenation] = STATE(2318), + [sym_string] = STATE(2317), + [sym_simple_expansion] = STATE(2317), + [sym_string_expansion] = STATE(2317), + [sym_expansion] = STATE(2317), + [sym_command_substitution] = STATE(2317), + [sym_process_substitution] = STATE(2317), [anon_sym_RBRACE] = ACTIONS(5386), - [sym__special_characters] = ACTIONS(5394), + [sym__special_characters] = ACTIONS(5388), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5396), + [sym_raw_string] = ACTIONS(5390), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5396), + [sym_word] = ACTIONS(5390), + }, + [2123] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2868), + [anon_sym_AMP_AMP] = ACTIONS(2868), + [anon_sym_PIPE_PIPE] = ACTIONS(2868), + [anon_sym_EQ_TILDE] = ACTIONS(2868), + [anon_sym_EQ_EQ] = ACTIONS(2868), + [anon_sym_EQ] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2868), + [anon_sym_GT] = ACTIONS(2868), + [anon_sym_BANG_EQ] = ACTIONS(2868), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2868), + }, + [2124] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5392), }, [2125] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2969), - [anon_sym_AMP_AMP] = ACTIONS(2969), - [anon_sym_PIPE_PIPE] = ACTIONS(2969), - [anon_sym_EQ_TILDE] = ACTIONS(2969), - [anon_sym_EQ_EQ] = ACTIONS(2969), - [anon_sym_EQ] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2969), - [anon_sym_GT] = ACTIONS(2969), - [anon_sym_BANG_EQ] = ACTIONS(2969), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2969), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5394), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2126] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5398), + [sym__concat] = ACTIONS(2876), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2876), + [anon_sym_AMP_AMP] = ACTIONS(2876), + [anon_sym_PIPE_PIPE] = ACTIONS(2876), + [anon_sym_EQ_TILDE] = ACTIONS(2876), + [anon_sym_EQ_EQ] = ACTIONS(2876), + [anon_sym_EQ] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2876), + [anon_sym_GT] = ACTIONS(2876), + [anon_sym_BANG_EQ] = ACTIONS(2876), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2876), }, [2127] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5400), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(5396), }, [2128] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_RPAREN_RPAREN] = ACTIONS(2977), - [anon_sym_AMP_AMP] = ACTIONS(2977), - [anon_sym_PIPE_PIPE] = ACTIONS(2977), - [anon_sym_EQ_TILDE] = ACTIONS(2977), - [anon_sym_EQ_EQ] = ACTIONS(2977), - [anon_sym_EQ] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2977), - [anon_sym_GT] = ACTIONS(2977), - [anon_sym_BANG_EQ] = ACTIONS(2977), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(2977), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5398), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2129] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5402), + [sym_regex_without_right_brace] = ACTIONS(5400), }, [2130] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5404), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5386), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2131] = { + [sym_concatenation] = STATE(2325), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2325), + [anon_sym_RBRACE] = ACTIONS(5402), + [anon_sym_EQ] = ACTIONS(5404), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5406), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5404), + [anon_sym_COLON_QMARK] = ACTIONS(5404), + [anon_sym_COLON_DASH] = ACTIONS(5404), + [anon_sym_PERCENT] = ACTIONS(5404), + [anon_sym_DASH] = ACTIONS(5404), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5406), + [sym_word] = ACTIONS(767), }, [2132] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5386), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(2948), + [anon_sym_RPAREN_RPAREN] = ACTIONS(2948), + [anon_sym_AMP_AMP] = ACTIONS(2948), + [anon_sym_PIPE_PIPE] = ACTIONS(2948), + [anon_sym_EQ_TILDE] = ACTIONS(2948), + [anon_sym_EQ_EQ] = ACTIONS(2948), + [anon_sym_EQ] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2948), + [anon_sym_GT] = ACTIONS(2948), + [anon_sym_BANG_EQ] = ACTIONS(2948), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(2948), }, [2133] = { [sym_concatenation] = STATE(2327), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2327), [anon_sym_RBRACE] = ACTIONS(5408), [anon_sym_EQ] = ACTIONS(5410), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5412), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5410), [anon_sym_COLON_QMARK] = ACTIONS(5410), [anon_sym_COLON_DASH] = ACTIONS(5410), [anon_sym_PERCENT] = ACTIONS(5410), [anon_sym_DASH] = ACTIONS(5410), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2134] = { [sym__concat] = ACTIONS(2993), @@ -58357,32 +58378,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [2135] = { [sym_concatenation] = STATE(2329), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2329), [anon_sym_RBRACE] = ACTIONS(5414), [anon_sym_EQ] = ACTIONS(5416), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5418), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5416), [anon_sym_COLON_QMARK] = ACTIONS(5416), [anon_sym_COLON_DASH] = ACTIONS(5416), [anon_sym_PERCENT] = ACTIONS(5416), [anon_sym_DASH] = ACTIONS(5416), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2136] = { [sym__concat] = ACTIONS(3003), @@ -58543,211 +58564,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(5424), }, [2142] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [anon_sym_EQ_TILDE] = ACTIONS(4758), - [anon_sym_EQ_EQ] = ACTIONS(4758), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_BANG_EQ] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_EQ_TILDE] = ACTIONS(4722), + [anon_sym_EQ_EQ] = ACTIONS(4722), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_BANG_EQ] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [sym_test_operator] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [2143] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [anon_sym_EQ_TILDE] = ACTIONS(4766), - [anon_sym_EQ_EQ] = ACTIONS(4766), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_BANG_EQ] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_EQ_TILDE] = ACTIONS(4726), + [anon_sym_EQ_EQ] = ACTIONS(4726), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_BANG_EQ] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [sym_test_operator] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [2144] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [anon_sym_EQ_TILDE] = ACTIONS(4770), - [anon_sym_EQ_EQ] = ACTIONS(4770), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_BANG_EQ] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_EQ_TILDE] = ACTIONS(4730), + [anon_sym_EQ_EQ] = ACTIONS(4730), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_BANG_EQ] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [sym_test_operator] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [2145] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_EQ_TILDE] = ACTIONS(4774), - [anon_sym_EQ_EQ] = ACTIONS(4774), - [anon_sym_EQ] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_BANG_EQ] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5428), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2146] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5428), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_EQ_TILDE] = ACTIONS(4736), + [anon_sym_EQ_EQ] = ACTIONS(4736), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_BANG_EQ] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_test_operator] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [2147] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_EQ_TILDE] = ACTIONS(4780), - [anon_sym_EQ_EQ] = ACTIONS(4780), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_BANG_EQ] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5430), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2148] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5430), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_EQ_TILDE] = ACTIONS(4742), + [anon_sym_EQ_EQ] = ACTIONS(4742), + [anon_sym_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4742), + [anon_sym_BANG_EQ] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_test_operator] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [2149] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [anon_sym_EQ_TILDE] = ACTIONS(4786), - [anon_sym_EQ_EQ] = ACTIONS(4786), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_BANG_EQ] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5432), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2150] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5432), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_EQ_TILDE] = ACTIONS(4784), + [anon_sym_EQ_EQ] = ACTIONS(4784), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_BANG_EQ] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_test_operator] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [2151] = { [sym__concat] = ACTIONS(4790), @@ -58945,14 +58966,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [2164] = { [sym_subscript] = STATE(2355), [sym_variable_name] = ACTIONS(5460), - [anon_sym_DOLLAR] = ACTIONS(5462), - [anon_sym_POUND] = ACTIONS(5464), - [anon_sym_DASH] = ACTIONS(5462), + [anon_sym_BANG] = ACTIONS(5462), + [anon_sym_DOLLAR] = ACTIONS(5464), + [anon_sym_POUND] = ACTIONS(5462), + [anon_sym_DASH] = ACTIONS(5464), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5466), - [anon_sym_STAR] = ACTIONS(5462), - [anon_sym_AT] = ACTIONS(5462), - [anon_sym_QMARK] = ACTIONS(5462), + [anon_sym_STAR] = ACTIONS(5464), + [anon_sym_AT] = ACTIONS(5464), + [anon_sym_QMARK] = ACTIONS(5464), [anon_sym_0] = ACTIONS(5468), [anon_sym__] = ACTIONS(5468), }, @@ -59298,14 +59320,15 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [2175] = { [sym_subscript] = STATE(2378), [sym_variable_name] = ACTIONS(5486), - [anon_sym_DOLLAR] = ACTIONS(5488), - [anon_sym_POUND] = ACTIONS(5490), - [anon_sym_DASH] = ACTIONS(5488), + [anon_sym_BANG] = ACTIONS(5488), + [anon_sym_DOLLAR] = ACTIONS(5490), + [anon_sym_POUND] = ACTIONS(5488), + [anon_sym_DASH] = ACTIONS(5490), [sym_comment] = ACTIONS(179), [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5492), - [anon_sym_STAR] = ACTIONS(5488), - [anon_sym_AT] = ACTIONS(5488), - [anon_sym_QMARK] = ACTIONS(5488), + [anon_sym_STAR] = ACTIONS(5490), + [anon_sym_AT] = ACTIONS(5490), + [anon_sym_QMARK] = ACTIONS(5490), [anon_sym_0] = ACTIONS(5494), [anon_sym__] = ACTIONS(5494), }, @@ -60584,61 +60607,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(5546), }, [2211] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_in] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [anon_sym_in] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2212] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_in] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [anon_sym_in] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2213] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_in] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [anon_sym_in] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2214] = { [aux_sym_concatenation_repeat1] = STATE(2214), @@ -60680,46 +60703,46 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1650), }, [2216] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(5310), - [anon_sym_PIPE_PIPE] = ACTIONS(5310), - [anon_sym_RBRACK] = ACTIONS(5310), - [anon_sym_EQ_TILDE] = ACTIONS(5310), - [anon_sym_EQ_EQ] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_AMP_AMP] = ACTIONS(5282), + [anon_sym_PIPE_PIPE] = ACTIONS(5282), + [anon_sym_RBRACK] = ACTIONS(5282), + [anon_sym_EQ_TILDE] = ACTIONS(5282), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5310), + [sym_test_operator] = ACTIONS(5282), }, [2217] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_AMP_AMP] = ACTIONS(5314), - [anon_sym_PIPE_PIPE] = ACTIONS(5314), - [anon_sym_RBRACK] = ACTIONS(5314), - [anon_sym_EQ_TILDE] = ACTIONS(5314), - [anon_sym_EQ_EQ] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_AMP_AMP] = ACTIONS(5286), + [anon_sym_PIPE_PIPE] = ACTIONS(5286), + [anon_sym_RBRACK] = ACTIONS(5286), + [anon_sym_EQ_TILDE] = ACTIONS(5286), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5314), + [sym_test_operator] = ACTIONS(5286), }, [2218] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_AMP_AMP] = ACTIONS(5318), - [anon_sym_PIPE_PIPE] = ACTIONS(5318), - [anon_sym_RBRACK] = ACTIONS(5318), - [anon_sym_EQ_TILDE] = ACTIONS(5318), - [anon_sym_EQ_EQ] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_AMP_AMP] = ACTIONS(5290), + [anon_sym_PIPE_PIPE] = ACTIONS(5290), + [anon_sym_RBRACK] = ACTIONS(5290), + [anon_sym_EQ_TILDE] = ACTIONS(5290), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5318), + [sym_test_operator] = ACTIONS(5290), }, [2219] = { [sym_file_descriptor] = ACTIONS(2818), @@ -60790,260 +60813,260 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2224] = { - [sym_concatenation] = STATE(2425), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2425), - [anon_sym_RBRACE] = ACTIONS(5554), - [anon_sym_EQ] = ACTIONS(5556), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5558), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5556), - [anon_sym_COLON_QMARK] = ACTIONS(5556), - [anon_sym_COLON_DASH] = ACTIONS(5556), - [anon_sym_PERCENT] = ACTIONS(5556), - [anon_sym_DASH] = ACTIONS(5556), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2225] = { - [sym_file_descriptor] = ACTIONS(2926), - [sym__concat] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_RPAREN] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [anon_sym_LT] = ACTIONS(2928), - [anon_sym_GT] = ACTIONS(2928), - [anon_sym_GT_GT] = ACTIONS(2928), - [anon_sym_AMP_GT] = ACTIONS(2928), - [anon_sym_AMP_GT_GT] = ACTIONS(2928), - [anon_sym_LT_AMP] = ACTIONS(2928), - [anon_sym_GT_AMP] = ACTIONS(2928), - [anon_sym_LT_LT] = ACTIONS(2928), - [anon_sym_LT_LT_DASH] = ACTIONS(2928), - [anon_sym_LT_LT_LT] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [2226] = { - [sym_concatenation] = STATE(2428), - [sym_string] = STATE(2427), - [sym_simple_expansion] = STATE(2427), - [sym_string_expansion] = STATE(2427), - [sym_expansion] = STATE(2427), - [sym_command_substitution] = STATE(2427), - [sym_process_substitution] = STATE(2427), + [sym_concatenation] = STATE(2426), + [sym_string] = STATE(2425), + [sym_simple_expansion] = STATE(2425), + [sym_string_expansion] = STATE(2425), + [sym_expansion] = STATE(2425), + [sym_command_substitution] = STATE(2425), + [sym_process_substitution] = STATE(2425), [anon_sym_RBRACE] = ACTIONS(5552), - [sym__special_characters] = ACTIONS(5560), + [sym__special_characters] = ACTIONS(5554), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(5562), + [sym_raw_string] = ACTIONS(5556), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5562), + [sym_word] = ACTIONS(5556), + }, + [2225] = { + [sym_file_descriptor] = ACTIONS(2868), + [sym__concat] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_RPAREN] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [anon_sym_LT] = ACTIONS(2870), + [anon_sym_GT] = ACTIONS(2870), + [anon_sym_GT_GT] = ACTIONS(2870), + [anon_sym_AMP_GT] = ACTIONS(2870), + [anon_sym_AMP_GT_GT] = ACTIONS(2870), + [anon_sym_LT_AMP] = ACTIONS(2870), + [anon_sym_GT_AMP] = ACTIONS(2870), + [anon_sym_LT_LT] = ACTIONS(2870), + [anon_sym_LT_LT_DASH] = ACTIONS(2870), + [anon_sym_LT_LT_LT] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [2226] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(5558), }, [2227] = { - [sym_file_descriptor] = ACTIONS(2969), - [sym__concat] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_RPAREN] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [anon_sym_LT] = ACTIONS(2971), - [anon_sym_GT] = ACTIONS(2971), - [anon_sym_GT_GT] = ACTIONS(2971), - [anon_sym_AMP_GT] = ACTIONS(2971), - [anon_sym_AMP_GT_GT] = ACTIONS(2971), - [anon_sym_LT_AMP] = ACTIONS(2971), - [anon_sym_GT_AMP] = ACTIONS(2971), - [anon_sym_LT_LT] = ACTIONS(2971), - [anon_sym_LT_LT_DASH] = ACTIONS(2971), - [anon_sym_LT_LT_LT] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5560), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [2228] = { + [sym_file_descriptor] = ACTIONS(2876), + [sym__concat] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_RPAREN] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [anon_sym_LT] = ACTIONS(2878), + [anon_sym_GT] = ACTIONS(2878), + [anon_sym_GT_GT] = ACTIONS(2878), + [anon_sym_AMP_GT] = ACTIONS(2878), + [anon_sym_AMP_GT_GT] = ACTIONS(2878), + [anon_sym_LT_AMP] = ACTIONS(2878), + [anon_sym_GT_AMP] = ACTIONS(2878), + [anon_sym_LT_LT] = ACTIONS(2878), + [anon_sym_LT_LT_DASH] = ACTIONS(2878), + [anon_sym_LT_LT_LT] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5564), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [2229] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5566), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(5562), }, [2230] = { - [sym_file_descriptor] = ACTIONS(2977), - [sym__concat] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_RPAREN] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [anon_sym_LT] = ACTIONS(2979), - [anon_sym_GT] = ACTIONS(2979), - [anon_sym_GT_GT] = ACTIONS(2979), - [anon_sym_AMP_GT] = ACTIONS(2979), - [anon_sym_AMP_GT_GT] = ACTIONS(2979), - [anon_sym_LT_AMP] = ACTIONS(2979), - [anon_sym_GT_AMP] = ACTIONS(2979), - [anon_sym_LT_LT] = ACTIONS(2979), - [anon_sym_LT_LT_DASH] = ACTIONS(2979), - [anon_sym_LT_LT_LT] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5564), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [2231] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5568), + [sym_regex_without_right_brace] = ACTIONS(5566), }, [2232] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5570), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5552), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2233] = { + [sym_concatenation] = STATE(2433), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2433), + [anon_sym_RBRACE] = ACTIONS(5568), + [anon_sym_EQ] = ACTIONS(5570), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5572), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5570), + [anon_sym_COLON_QMARK] = ACTIONS(5570), + [anon_sym_COLON_DASH] = ACTIONS(5570), + [anon_sym_PERCENT] = ACTIONS(5570), + [anon_sym_DASH] = ACTIONS(5570), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5572), + [sym_word] = ACTIONS(767), }, [2234] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5552), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(2948), + [sym__concat] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_RPAREN] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [anon_sym_LT] = ACTIONS(2950), + [anon_sym_GT] = ACTIONS(2950), + [anon_sym_GT_GT] = ACTIONS(2950), + [anon_sym_AMP_GT] = ACTIONS(2950), + [anon_sym_AMP_GT_GT] = ACTIONS(2950), + [anon_sym_LT_AMP] = ACTIONS(2950), + [anon_sym_GT_AMP] = ACTIONS(2950), + [anon_sym_LT_LT] = ACTIONS(2950), + [anon_sym_LT_LT_DASH] = ACTIONS(2950), + [anon_sym_LT_LT_LT] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [2235] = { [sym_concatenation] = STATE(2435), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2435), [anon_sym_RBRACE] = ACTIONS(5574), [anon_sym_EQ] = ACTIONS(5576), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5578), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5576), [anon_sym_COLON_QMARK] = ACTIONS(5576), [anon_sym_COLON_DASH] = ACTIONS(5576), [anon_sym_PERCENT] = ACTIONS(5576), [anon_sym_DASH] = ACTIONS(5576), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2236] = { [sym_file_descriptor] = ACTIONS(2993), @@ -61073,32 +61096,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [2237] = { [sym_concatenation] = STATE(2437), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2437), [anon_sym_RBRACE] = ACTIONS(5580), [anon_sym_EQ] = ACTIONS(5582), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5584), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(5582), [anon_sym_COLON_QMARK] = ACTIONS(5582), [anon_sym_COLON_DASH] = ACTIONS(5582), [anon_sym_PERCENT] = ACTIONS(5582), [anon_sym_DASH] = ACTIONS(5582), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2238] = { [sym_file_descriptor] = ACTIONS(3003), @@ -61269,297 +61292,297 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(819), }, [2243] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(5310), - [anon_sym_PIPE_PIPE] = ACTIONS(5310), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5310), - [anon_sym_EQ_TILDE] = ACTIONS(5310), - [anon_sym_EQ_EQ] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5282), + [anon_sym_AMP_AMP] = ACTIONS(5282), + [anon_sym_PIPE_PIPE] = ACTIONS(5282), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5282), + [anon_sym_EQ_TILDE] = ACTIONS(5282), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5310), + [sym_test_operator] = ACTIONS(5282), }, [2244] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5314), - [anon_sym_AMP_AMP] = ACTIONS(5314), - [anon_sym_PIPE_PIPE] = ACTIONS(5314), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5314), - [anon_sym_EQ_TILDE] = ACTIONS(5314), - [anon_sym_EQ_EQ] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5286), + [anon_sym_AMP_AMP] = ACTIONS(5286), + [anon_sym_PIPE_PIPE] = ACTIONS(5286), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5286), + [anon_sym_EQ_TILDE] = ACTIONS(5286), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5314), + [sym_test_operator] = ACTIONS(5286), }, [2245] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5318), - [anon_sym_AMP_AMP] = ACTIONS(5318), - [anon_sym_PIPE_PIPE] = ACTIONS(5318), - [anon_sym_RBRACK_RBRACK] = ACTIONS(5318), - [anon_sym_EQ_TILDE] = ACTIONS(5318), - [anon_sym_EQ_EQ] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5290), + [anon_sym_AMP_AMP] = ACTIONS(5290), + [anon_sym_PIPE_PIPE] = ACTIONS(5290), + [anon_sym_RBRACK_RBRACK] = ACTIONS(5290), + [anon_sym_EQ_TILDE] = ACTIONS(5290), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5318), + [sym_test_operator] = ACTIONS(5290), }, [2246] = { - [sym__concat] = ACTIONS(5310), - [sym_variable_name] = ACTIONS(5310), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [sym_variable_name] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2247] = { - [sym__concat] = ACTIONS(5314), - [sym_variable_name] = ACTIONS(5314), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [sym_variable_name] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2248] = { - [sym__concat] = ACTIONS(5318), - [sym_variable_name] = ACTIONS(5318), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [sym_variable_name] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2249] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2250] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2251] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2252] = { - [sym_file_descriptor] = ACTIONS(5310), - [sym__concat] = ACTIONS(5310), - [sym_variable_name] = ACTIONS(5310), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5310), - [anon_sym_AMP_GT] = ACTIONS(5312), - [anon_sym_AMP_GT_GT] = ACTIONS(5310), - [anon_sym_LT_AMP] = ACTIONS(5310), - [anon_sym_GT_AMP] = ACTIONS(5310), - [sym__special_characters] = ACTIONS(5310), - [anon_sym_DQUOTE] = ACTIONS(5310), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), - [anon_sym_BQUOTE] = ACTIONS(5310), - [anon_sym_LT_LPAREN] = ACTIONS(5310), - [anon_sym_GT_LPAREN] = ACTIONS(5310), + [sym_file_descriptor] = ACTIONS(5282), + [sym__concat] = ACTIONS(5282), + [sym_variable_name] = ACTIONS(5282), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5282), + [anon_sym_AMP_GT] = ACTIONS(5284), + [anon_sym_AMP_GT_GT] = ACTIONS(5282), + [anon_sym_LT_AMP] = ACTIONS(5282), + [anon_sym_GT_AMP] = ACTIONS(5282), + [sym__special_characters] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), + [anon_sym_BQUOTE] = ACTIONS(5282), + [anon_sym_LT_LPAREN] = ACTIONS(5282), + [anon_sym_GT_LPAREN] = ACTIONS(5282), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5310), + [sym_word] = ACTIONS(5282), }, [2253] = { - [sym_file_descriptor] = ACTIONS(5314), - [sym__concat] = ACTIONS(5314), - [sym_variable_name] = ACTIONS(5314), - [anon_sym_LT] = ACTIONS(5316), - [anon_sym_GT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5314), - [anon_sym_AMP_GT] = ACTIONS(5316), - [anon_sym_AMP_GT_GT] = ACTIONS(5314), - [anon_sym_LT_AMP] = ACTIONS(5314), - [anon_sym_GT_AMP] = ACTIONS(5314), - [sym__special_characters] = ACTIONS(5314), - [anon_sym_DQUOTE] = ACTIONS(5314), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), - [anon_sym_BQUOTE] = ACTIONS(5314), - [anon_sym_LT_LPAREN] = ACTIONS(5314), - [anon_sym_GT_LPAREN] = ACTIONS(5314), + [sym_file_descriptor] = ACTIONS(5286), + [sym__concat] = ACTIONS(5286), + [sym_variable_name] = ACTIONS(5286), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5286), + [anon_sym_AMP_GT] = ACTIONS(5288), + [anon_sym_AMP_GT_GT] = ACTIONS(5286), + [anon_sym_LT_AMP] = ACTIONS(5286), + [anon_sym_GT_AMP] = ACTIONS(5286), + [sym__special_characters] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), + [anon_sym_BQUOTE] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(5286), + [anon_sym_GT_LPAREN] = ACTIONS(5286), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5314), + [sym_word] = ACTIONS(5286), }, [2254] = { - [sym_file_descriptor] = ACTIONS(5318), - [sym__concat] = ACTIONS(5318), - [sym_variable_name] = ACTIONS(5318), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5318), - [anon_sym_AMP_GT] = ACTIONS(5320), - [anon_sym_AMP_GT_GT] = ACTIONS(5318), - [anon_sym_LT_AMP] = ACTIONS(5318), - [anon_sym_GT_AMP] = ACTIONS(5318), - [sym__special_characters] = ACTIONS(5318), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), - [anon_sym_BQUOTE] = ACTIONS(5318), - [anon_sym_LT_LPAREN] = ACTIONS(5318), - [anon_sym_GT_LPAREN] = ACTIONS(5318), + [sym_file_descriptor] = ACTIONS(5290), + [sym__concat] = ACTIONS(5290), + [sym_variable_name] = ACTIONS(5290), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5290), + [anon_sym_AMP_GT] = ACTIONS(5292), + [anon_sym_AMP_GT_GT] = ACTIONS(5290), + [anon_sym_LT_AMP] = ACTIONS(5290), + [anon_sym_GT_AMP] = ACTIONS(5290), + [sym__special_characters] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), + [anon_sym_BQUOTE] = ACTIONS(5290), + [anon_sym_LT_LPAREN] = ACTIONS(5290), + [anon_sym_GT_LPAREN] = ACTIONS(5290), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5318), + [sym_word] = ACTIONS(5290), }, [2255] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym__string_content] = ACTIONS(5310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym__string_content] = ACTIONS(5282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), [sym_comment] = ACTIONS(179), }, [2256] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym__string_content] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym__string_content] = ACTIONS(5286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), [sym_comment] = ACTIONS(179), }, [2257] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym__string_content] = ACTIONS(5318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym__string_content] = ACTIONS(5290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), [sym_comment] = ACTIONS(179), }, [2258] = { @@ -61573,151 +61596,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2260] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_RBRACE] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5590), [sym_comment] = ACTIONS(53), }, [2261] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5590), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2262] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(5592), [sym_comment] = ACTIONS(53), }, - [2263] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5594), + [2262] = { + [anon_sym_RBRACE] = ACTIONS(5592), [sym_comment] = ACTIONS(53), }, - [2264] = { + [2263] = { + [sym_concatenation] = STATE(2443), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2443), [anon_sym_RBRACE] = ACTIONS(5594), + [anon_sym_EQ] = ACTIONS(5596), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5598), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5596), + [anon_sym_COLON_QMARK] = ACTIONS(5596), + [anon_sym_COLON_DASH] = ACTIONS(5596), + [anon_sym_PERCENT] = ACTIONS(5596), + [anon_sym_DASH] = ACTIONS(5596), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2264] = { + [sym__concat] = ACTIONS(3874), + [anon_sym_RBRACE] = ACTIONS(3874), [sym_comment] = ACTIONS(53), }, [2265] = { - [sym_concatenation] = STATE(2444), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2444), - [anon_sym_RBRACE] = ACTIONS(5596), - [anon_sym_EQ] = ACTIONS(5598), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5600), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5598), - [anon_sym_COLON_QMARK] = ACTIONS(5598), - [anon_sym_COLON_DASH] = ACTIONS(5598), - [anon_sym_PERCENT] = ACTIONS(5598), - [anon_sym_DASH] = ACTIONS(5598), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2445), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2445), + [anon_sym_RBRACE] = ACTIONS(5600), + [anon_sym_EQ] = ACTIONS(5602), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5604), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5602), + [anon_sym_COLON_QMARK] = ACTIONS(5602), + [anon_sym_COLON_DASH] = ACTIONS(5602), + [anon_sym_PERCENT] = ACTIONS(5602), + [anon_sym_DASH] = ACTIONS(5602), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2266] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_RBRACE] = ACTIONS(3945), + [sym__concat] = ACTIONS(3884), + [anon_sym_RBRACE] = ACTIONS(3884), [sym_comment] = ACTIONS(53), }, [2267] = { - [sym_concatenation] = STATE(2446), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2446), - [anon_sym_RBRACE] = ACTIONS(5602), - [anon_sym_EQ] = ACTIONS(5604), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5606), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5604), - [anon_sym_COLON_QMARK] = ACTIONS(5604), - [anon_sym_COLON_DASH] = ACTIONS(5604), - [anon_sym_PERCENT] = ACTIONS(5604), - [anon_sym_DASH] = ACTIONS(5604), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2447), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2447), + [anon_sym_RBRACE] = ACTIONS(5606), + [anon_sym_EQ] = ACTIONS(5608), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5610), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5608), + [anon_sym_COLON_QMARK] = ACTIONS(5608), + [anon_sym_COLON_DASH] = ACTIONS(5608), + [anon_sym_PERCENT] = ACTIONS(5608), + [anon_sym_DASH] = ACTIONS(5608), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2268] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_RBRACE] = ACTIONS(3955), + [sym__concat] = ACTIONS(3939), + [anon_sym_RBRACE] = ACTIONS(3939), [sym_comment] = ACTIONS(53), }, [2269] = { - [sym_concatenation] = STATE(2448), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2448), - [anon_sym_RBRACE] = ACTIONS(5608), - [anon_sym_EQ] = ACTIONS(5610), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5612), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5610), - [anon_sym_COLON_QMARK] = ACTIONS(5610), - [anon_sym_COLON_DASH] = ACTIONS(5610), - [anon_sym_PERCENT] = ACTIONS(5610), - [anon_sym_DASH] = ACTIONS(5610), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5612), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2270] = { [sym__concat] = ACTIONS(3965), @@ -61725,33 +61748,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2271] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5614), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2272] = { [sym__concat] = ACTIONS(3971), @@ -61759,33 +61782,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2273] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5616), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2274] = { [sym__concat] = ACTIONS(3977), @@ -61798,223 +61821,223 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2276] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), - [anon_sym_EQ] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4756), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4756), - [anon_sym_POUND] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), - [anon_sym_COLON] = ACTIONS(4758), - [anon_sym_COLON_QMARK] = ACTIONS(4758), - [anon_sym_COLON_DASH] = ACTIONS(4758), - [anon_sym_PERCENT] = ACTIONS(4758), - [anon_sym_DASH] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), - [anon_sym_BQUOTE] = ACTIONS(4756), - [anon_sym_LT_LPAREN] = ACTIONS(4756), - [anon_sym_GT_LPAREN] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4720), + [anon_sym_POUND] = ACTIONS(4720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), + [anon_sym_COLON] = ACTIONS(4722), + [anon_sym_COLON_QMARK] = ACTIONS(4722), + [anon_sym_COLON_DASH] = ACTIONS(4722), + [anon_sym_PERCENT] = ACTIONS(4722), + [anon_sym_DASH] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), + [anon_sym_BQUOTE] = ACTIONS(4720), + [anon_sym_LT_LPAREN] = ACTIONS(4720), + [anon_sym_GT_LPAREN] = ACTIONS(4720), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4758), + [sym_word] = ACTIONS(4722), }, [2277] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), - [anon_sym_EQ] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4764), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4764), - [anon_sym_POUND] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), - [anon_sym_COLON] = ACTIONS(4766), - [anon_sym_COLON_QMARK] = ACTIONS(4766), - [anon_sym_COLON_DASH] = ACTIONS(4766), - [anon_sym_PERCENT] = ACTIONS(4766), - [anon_sym_DASH] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), - [anon_sym_BQUOTE] = ACTIONS(4764), - [anon_sym_LT_LPAREN] = ACTIONS(4764), - [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4724), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4724), + [anon_sym_POUND] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), + [anon_sym_COLON] = ACTIONS(4726), + [anon_sym_COLON_QMARK] = ACTIONS(4726), + [anon_sym_COLON_DASH] = ACTIONS(4726), + [anon_sym_PERCENT] = ACTIONS(4726), + [anon_sym_DASH] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4724), + [anon_sym_BQUOTE] = ACTIONS(4724), + [anon_sym_LT_LPAREN] = ACTIONS(4724), + [anon_sym_GT_LPAREN] = ACTIONS(4724), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4766), + [sym_word] = ACTIONS(4726), }, [2278] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4768), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4768), - [anon_sym_POUND] = ACTIONS(4768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), - [anon_sym_COLON] = ACTIONS(4770), - [anon_sym_COLON_QMARK] = ACTIONS(4770), - [anon_sym_COLON_DASH] = ACTIONS(4770), - [anon_sym_PERCENT] = ACTIONS(4770), - [anon_sym_DASH] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), - [anon_sym_BQUOTE] = ACTIONS(4768), - [anon_sym_LT_LPAREN] = ACTIONS(4768), - [anon_sym_GT_LPAREN] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_POUND] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_COLON] = ACTIONS(4730), + [anon_sym_COLON_QMARK] = ACTIONS(4730), + [anon_sym_COLON_DASH] = ACTIONS(4730), + [anon_sym_PERCENT] = ACTIONS(4730), + [anon_sym_DASH] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4770), + [sym_word] = ACTIONS(4730), }, [2279] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4772), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4772), - [anon_sym_POUND] = ACTIONS(4772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), - [anon_sym_COLON] = ACTIONS(4774), - [anon_sym_COLON_QMARK] = ACTIONS(4774), - [anon_sym_COLON_DASH] = ACTIONS(4774), - [anon_sym_PERCENT] = ACTIONS(4774), - [anon_sym_DASH] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), - [anon_sym_BQUOTE] = ACTIONS(4772), - [anon_sym_LT_LPAREN] = ACTIONS(4772), - [anon_sym_GT_LPAREN] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5618), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2280] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5618), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_POUND] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_COLON] = ACTIONS(4736), + [anon_sym_COLON_QMARK] = ACTIONS(4736), + [anon_sym_COLON_DASH] = ACTIONS(4736), + [anon_sym_PERCENT] = ACTIONS(4736), + [anon_sym_DASH] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4736), }, [2281] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4778), - [anon_sym_POUND] = ACTIONS(4778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), - [anon_sym_COLON] = ACTIONS(4780), - [anon_sym_COLON_QMARK] = ACTIONS(4780), - [anon_sym_COLON_DASH] = ACTIONS(4780), - [anon_sym_PERCENT] = ACTIONS(4780), - [anon_sym_DASH] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), - [anon_sym_BQUOTE] = ACTIONS(4778), - [anon_sym_LT_LPAREN] = ACTIONS(4778), - [anon_sym_GT_LPAREN] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5620), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2282] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5620), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_RBRACE] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4740), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4740), + [anon_sym_POUND] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), + [anon_sym_COLON] = ACTIONS(4742), + [anon_sym_COLON_QMARK] = ACTIONS(4742), + [anon_sym_COLON_DASH] = ACTIONS(4742), + [anon_sym_PERCENT] = ACTIONS(4742), + [anon_sym_DASH] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), + [anon_sym_BQUOTE] = ACTIONS(4740), + [anon_sym_LT_LPAREN] = ACTIONS(4740), + [anon_sym_GT_LPAREN] = ACTIONS(4740), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4742), }, [2283] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_RBRACE] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4784), - [anon_sym_POUND] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), - [anon_sym_COLON] = ACTIONS(4786), - [anon_sym_COLON_QMARK] = ACTIONS(4786), - [anon_sym_COLON_DASH] = ACTIONS(4786), - [anon_sym_PERCENT] = ACTIONS(4786), - [anon_sym_DASH] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), - [anon_sym_BQUOTE] = ACTIONS(4784), - [anon_sym_LT_LPAREN] = ACTIONS(4784), - [anon_sym_GT_LPAREN] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5622), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2284] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5622), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4782), + [anon_sym_POUND] = ACTIONS(4782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), + [anon_sym_COLON] = ACTIONS(4784), + [anon_sym_COLON_QMARK] = ACTIONS(4784), + [anon_sym_COLON_DASH] = ACTIONS(4784), + [anon_sym_PERCENT] = ACTIONS(4784), + [anon_sym_DASH] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), + [anon_sym_BQUOTE] = ACTIONS(4782), + [anon_sym_LT_LPAREN] = ACTIONS(4782), + [anon_sym_GT_LPAREN] = ACTIONS(4782), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(4784), }, [2285] = { [sym__concat] = ACTIONS(4790), @@ -62100,133 +62123,133 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1650), }, [2289] = { - [sym__heredoc_body_middle] = ACTIONS(4756), - [sym__heredoc_body_end] = ACTIONS(4756), - [anon_sym_DOLLAR] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), + [sym__heredoc_body_middle] = ACTIONS(4720), + [sym__heredoc_body_end] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), [sym_comment] = ACTIONS(53), }, [2290] = { - [sym__heredoc_body_middle] = ACTIONS(4764), - [sym__heredoc_body_end] = ACTIONS(4764), - [anon_sym_DOLLAR] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), + [sym__heredoc_body_middle] = ACTIONS(4724), + [sym__heredoc_body_end] = ACTIONS(4724), + [anon_sym_DOLLAR] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), [sym_comment] = ACTIONS(53), }, [2291] = { - [sym__heredoc_body_middle] = ACTIONS(4768), - [sym__heredoc_body_end] = ACTIONS(4768), - [anon_sym_DOLLAR] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), + [sym__heredoc_body_middle] = ACTIONS(4728), + [sym__heredoc_body_end] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), [sym_comment] = ACTIONS(53), }, [2292] = { - [sym__heredoc_body_middle] = ACTIONS(4772), - [sym__heredoc_body_end] = ACTIONS(4772), - [anon_sym_DOLLAR] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5624), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2293] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5624), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__heredoc_body_middle] = ACTIONS(4734), + [sym__heredoc_body_end] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), }, [2294] = { - [sym__heredoc_body_middle] = ACTIONS(4778), - [sym__heredoc_body_end] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5626), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2295] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5626), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2296] = { - [sym__heredoc_body_middle] = ACTIONS(4784), - [sym__heredoc_body_end] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [sym__heredoc_body_middle] = ACTIONS(4740), + [sym__heredoc_body_end] = ACTIONS(4740), + [anon_sym_DOLLAR] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), [sym_comment] = ACTIONS(53), }, - [2297] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [2296] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5628), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [2297] = { + [sym__heredoc_body_middle] = ACTIONS(4782), + [sym__heredoc_body_end] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), }, [2298] = { [sym__heredoc_body_middle] = ACTIONS(4790), @@ -62243,181 +62266,181 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2300] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_RPAREN] = ACTIONS(4756), - [sym__special_characters] = ACTIONS(4756), - [anon_sym_DQUOTE] = ACTIONS(4756), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4756), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4756), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4756), - [anon_sym_BQUOTE] = ACTIONS(4756), - [anon_sym_LT_LPAREN] = ACTIONS(4756), - [anon_sym_GT_LPAREN] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_RPAREN] = ACTIONS(4720), + [sym__special_characters] = ACTIONS(4720), + [anon_sym_DQUOTE] = ACTIONS(4720), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4720), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4720), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4720), + [anon_sym_BQUOTE] = ACTIONS(4720), + [anon_sym_LT_LPAREN] = ACTIONS(4720), + [anon_sym_GT_LPAREN] = ACTIONS(4720), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4756), + [sym_word] = ACTIONS(4720), }, [2301] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_RPAREN] = ACTIONS(4764), - [sym__special_characters] = ACTIONS(4764), - [anon_sym_DQUOTE] = ACTIONS(4764), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4764), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4764), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4764), - [anon_sym_BQUOTE] = ACTIONS(4764), - [anon_sym_LT_LPAREN] = ACTIONS(4764), - [anon_sym_GT_LPAREN] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_RPAREN] = ACTIONS(4724), + [sym__special_characters] = ACTIONS(4724), + [anon_sym_DQUOTE] = ACTIONS(4724), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4724), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4724), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4724), + [anon_sym_BQUOTE] = ACTIONS(4724), + [anon_sym_LT_LPAREN] = ACTIONS(4724), + [anon_sym_GT_LPAREN] = ACTIONS(4724), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4764), + [sym_word] = ACTIONS(4724), }, [2302] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_RPAREN] = ACTIONS(4768), - [sym__special_characters] = ACTIONS(4768), - [anon_sym_DQUOTE] = ACTIONS(4768), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4768), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4768), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4768), - [anon_sym_BQUOTE] = ACTIONS(4768), - [anon_sym_LT_LPAREN] = ACTIONS(4768), - [anon_sym_GT_LPAREN] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_RPAREN] = ACTIONS(4728), + [sym__special_characters] = ACTIONS(4728), + [anon_sym_DQUOTE] = ACTIONS(4728), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4728), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4728), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4728), + [anon_sym_BQUOTE] = ACTIONS(4728), + [anon_sym_LT_LPAREN] = ACTIONS(4728), + [anon_sym_GT_LPAREN] = ACTIONS(4728), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4768), + [sym_word] = ACTIONS(4728), }, [2303] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_RPAREN] = ACTIONS(4772), - [sym__special_characters] = ACTIONS(4772), - [anon_sym_DQUOTE] = ACTIONS(4772), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4772), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4772), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4772), - [anon_sym_BQUOTE] = ACTIONS(4772), - [anon_sym_LT_LPAREN] = ACTIONS(4772), - [anon_sym_GT_LPAREN] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5630), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2304] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5630), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4734), + [anon_sym_RPAREN] = ACTIONS(4734), + [sym__special_characters] = ACTIONS(4734), + [anon_sym_DQUOTE] = ACTIONS(4734), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4734), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4734), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4734), + [anon_sym_BQUOTE] = ACTIONS(4734), + [anon_sym_LT_LPAREN] = ACTIONS(4734), + [anon_sym_GT_LPAREN] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4734), }, [2305] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_RPAREN] = ACTIONS(4778), - [sym__special_characters] = ACTIONS(4778), - [anon_sym_DQUOTE] = ACTIONS(4778), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4778), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4778), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4778), - [anon_sym_BQUOTE] = ACTIONS(4778), - [anon_sym_LT_LPAREN] = ACTIONS(4778), - [anon_sym_GT_LPAREN] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5632), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2306] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5632), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4740), + [anon_sym_RPAREN] = ACTIONS(4740), + [sym__special_characters] = ACTIONS(4740), + [anon_sym_DQUOTE] = ACTIONS(4740), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4740), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4740), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4740), + [anon_sym_BQUOTE] = ACTIONS(4740), + [anon_sym_LT_LPAREN] = ACTIONS(4740), + [anon_sym_GT_LPAREN] = ACTIONS(4740), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4740), }, [2307] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_RPAREN] = ACTIONS(4784), - [sym__special_characters] = ACTIONS(4784), - [anon_sym_DQUOTE] = ACTIONS(4784), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4784), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), - [anon_sym_BQUOTE] = ACTIONS(4784), - [anon_sym_LT_LPAREN] = ACTIONS(4784), - [anon_sym_GT_LPAREN] = ACTIONS(4784), - [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5634), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2308] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5634), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4782), + [anon_sym_RPAREN] = ACTIONS(4782), + [sym__special_characters] = ACTIONS(4782), + [anon_sym_DQUOTE] = ACTIONS(4782), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4782), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4782), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4782), + [anon_sym_BQUOTE] = ACTIONS(4782), + [anon_sym_LT_LPAREN] = ACTIONS(4782), + [anon_sym_GT_LPAREN] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), + [sym_word] = ACTIONS(4782), }, [2309] = { [sym__concat] = ACTIONS(4790), @@ -62450,103 +62473,103 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(4794), }, [2311] = { - [sym_file_descriptor] = ACTIONS(5310), - [sym__concat] = ACTIONS(5310), - [sym_variable_name] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5312), - [anon_sym_AMP_GT] = ACTIONS(5312), - [anon_sym_AMP_GT_GT] = ACTIONS(5312), - [anon_sym_LT_AMP] = ACTIONS(5312), - [anon_sym_GT_AMP] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym_file_descriptor] = ACTIONS(5282), + [sym__concat] = ACTIONS(5282), + [sym_variable_name] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_AMP_GT] = ACTIONS(5284), + [anon_sym_AMP_GT_GT] = ACTIONS(5284), + [anon_sym_LT_AMP] = ACTIONS(5284), + [anon_sym_GT_AMP] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2312] = { - [sym_file_descriptor] = ACTIONS(5314), - [sym__concat] = ACTIONS(5314), - [sym_variable_name] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5316), - [anon_sym_GT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5316), - [anon_sym_AMP_GT] = ACTIONS(5316), - [anon_sym_AMP_GT_GT] = ACTIONS(5316), - [anon_sym_LT_AMP] = ACTIONS(5316), - [anon_sym_GT_AMP] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym_file_descriptor] = ACTIONS(5286), + [sym__concat] = ACTIONS(5286), + [sym_variable_name] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_AMP_GT] = ACTIONS(5288), + [anon_sym_AMP_GT_GT] = ACTIONS(5288), + [anon_sym_LT_AMP] = ACTIONS(5288), + [anon_sym_GT_AMP] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2313] = { - [sym_file_descriptor] = ACTIONS(5318), - [sym__concat] = ACTIONS(5318), - [sym_variable_name] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5320), - [anon_sym_AMP_GT] = ACTIONS(5320), - [anon_sym_AMP_GT_GT] = ACTIONS(5320), - [anon_sym_LT_AMP] = ACTIONS(5320), - [anon_sym_GT_AMP] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym_file_descriptor] = ACTIONS(5290), + [sym__concat] = ACTIONS(5290), + [sym_variable_name] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_AMP_GT] = ACTIONS(5292), + [anon_sym_AMP_GT_GT] = ACTIONS(5292), + [anon_sym_LT_AMP] = ACTIONS(5292), + [anon_sym_GT_AMP] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2314] = { [sym__concat] = ACTIONS(3802), @@ -62577,178 +62600,178 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3810), }, [2316] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3909), - [anon_sym_AMP_AMP] = ACTIONS(3909), - [anon_sym_PIPE_PIPE] = ACTIONS(3909), - [anon_sym_EQ_TILDE] = ACTIONS(3909), - [anon_sym_EQ_EQ] = ACTIONS(3909), - [anon_sym_EQ] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3909), - [anon_sym_GT] = ACTIONS(3909), - [anon_sym_BANG_EQ] = ACTIONS(3909), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5636), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3909), }, [2317] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5636), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2318] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(5638), [sym_comment] = ACTIONS(53), }, - [2319] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5640), + [2318] = { + [anon_sym_RBRACE] = ACTIONS(5638), [sym_comment] = ACTIONS(53), }, + [2319] = { + [sym_concatenation] = STATE(2463), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2463), + [anon_sym_RBRACE] = ACTIONS(5640), + [anon_sym_EQ] = ACTIONS(5642), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5644), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5642), + [anon_sym_COLON_QMARK] = ACTIONS(5642), + [anon_sym_COLON_DASH] = ACTIONS(5642), + [anon_sym_PERCENT] = ACTIONS(5642), + [anon_sym_DASH] = ACTIONS(5642), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [2320] = { - [anon_sym_RBRACE] = ACTIONS(5640), + [sym__concat] = ACTIONS(3874), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3874), + [anon_sym_AMP_AMP] = ACTIONS(3874), + [anon_sym_PIPE_PIPE] = ACTIONS(3874), + [anon_sym_EQ_TILDE] = ACTIONS(3874), + [anon_sym_EQ_EQ] = ACTIONS(3874), + [anon_sym_EQ] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3874), + [anon_sym_GT] = ACTIONS(3874), + [anon_sym_BANG_EQ] = ACTIONS(3874), [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(3874), }, [2321] = { - [sym_concatenation] = STATE(2464), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2464), - [anon_sym_RBRACE] = ACTIONS(5642), - [anon_sym_EQ] = ACTIONS(5644), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5646), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5644), - [anon_sym_COLON_QMARK] = ACTIONS(5644), - [anon_sym_COLON_DASH] = ACTIONS(5644), - [anon_sym_PERCENT] = ACTIONS(5644), - [anon_sym_DASH] = ACTIONS(5644), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2465), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2465), + [anon_sym_RBRACE] = ACTIONS(5646), + [anon_sym_EQ] = ACTIONS(5648), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5650), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5648), + [anon_sym_COLON_QMARK] = ACTIONS(5648), + [anon_sym_COLON_DASH] = ACTIONS(5648), + [anon_sym_PERCENT] = ACTIONS(5648), + [anon_sym_DASH] = ACTIONS(5648), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2322] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3945), - [anon_sym_AMP_AMP] = ACTIONS(3945), - [anon_sym_PIPE_PIPE] = ACTIONS(3945), - [anon_sym_EQ_TILDE] = ACTIONS(3945), - [anon_sym_EQ_EQ] = ACTIONS(3945), - [anon_sym_EQ] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3945), - [anon_sym_GT] = ACTIONS(3945), - [anon_sym_BANG_EQ] = ACTIONS(3945), + [sym__concat] = ACTIONS(3884), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3884), + [anon_sym_AMP_AMP] = ACTIONS(3884), + [anon_sym_PIPE_PIPE] = ACTIONS(3884), + [anon_sym_EQ_TILDE] = ACTIONS(3884), + [anon_sym_EQ_EQ] = ACTIONS(3884), + [anon_sym_EQ] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3884), + [anon_sym_GT] = ACTIONS(3884), + [anon_sym_BANG_EQ] = ACTIONS(3884), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3945), + [sym_test_operator] = ACTIONS(3884), }, [2323] = { - [sym_concatenation] = STATE(2466), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2466), - [anon_sym_RBRACE] = ACTIONS(5648), - [anon_sym_EQ] = ACTIONS(5650), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5652), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5650), - [anon_sym_COLON_QMARK] = ACTIONS(5650), - [anon_sym_COLON_DASH] = ACTIONS(5650), - [anon_sym_PERCENT] = ACTIONS(5650), - [anon_sym_DASH] = ACTIONS(5650), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2467), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2467), + [anon_sym_RBRACE] = ACTIONS(5652), + [anon_sym_EQ] = ACTIONS(5654), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5656), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5654), + [anon_sym_COLON_QMARK] = ACTIONS(5654), + [anon_sym_COLON_DASH] = ACTIONS(5654), + [anon_sym_PERCENT] = ACTIONS(5654), + [anon_sym_DASH] = ACTIONS(5654), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2324] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_RPAREN_RPAREN] = ACTIONS(3955), - [anon_sym_AMP_AMP] = ACTIONS(3955), - [anon_sym_PIPE_PIPE] = ACTIONS(3955), - [anon_sym_EQ_TILDE] = ACTIONS(3955), - [anon_sym_EQ_EQ] = ACTIONS(3955), - [anon_sym_EQ] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3955), - [anon_sym_GT] = ACTIONS(3955), - [anon_sym_BANG_EQ] = ACTIONS(3955), + [sym__concat] = ACTIONS(3939), + [anon_sym_RPAREN_RPAREN] = ACTIONS(3939), + [anon_sym_AMP_AMP] = ACTIONS(3939), + [anon_sym_PIPE_PIPE] = ACTIONS(3939), + [anon_sym_EQ_TILDE] = ACTIONS(3939), + [anon_sym_EQ_EQ] = ACTIONS(3939), + [anon_sym_EQ] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3939), + [anon_sym_GT] = ACTIONS(3939), + [anon_sym_BANG_EQ] = ACTIONS(3939), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(3955), + [sym_test_operator] = ACTIONS(3939), }, [2325] = { - [sym_concatenation] = STATE(2468), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2468), - [anon_sym_RBRACE] = ACTIONS(5654), - [anon_sym_EQ] = ACTIONS(5656), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5658), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5656), - [anon_sym_COLON_QMARK] = ACTIONS(5656), - [anon_sym_COLON_DASH] = ACTIONS(5656), - [anon_sym_PERCENT] = ACTIONS(5656), - [anon_sym_DASH] = ACTIONS(5656), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5658), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2326] = { [sym__concat] = ACTIONS(3965), @@ -62765,33 +62788,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3965), }, [2327] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5660), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2328] = { [sym__concat] = ACTIONS(3971), @@ -62808,33 +62831,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(3971), }, [2329] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5662), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2330] = { [sym__concat] = ACTIONS(3977), @@ -62865,64 +62888,64 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_test_operator] = ACTIONS(4001), }, [2332] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_EQ_TILDE] = ACTIONS(5312), - [anon_sym_EQ_EQ] = ACTIONS(5312), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(5312), - [anon_sym_BANG_EQ] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [anon_sym_EQ_TILDE] = ACTIONS(5284), + [anon_sym_EQ_EQ] = ACTIONS(5284), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_BANG_EQ] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [sym_test_operator] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2333] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_EQ_TILDE] = ACTIONS(5316), - [anon_sym_EQ_EQ] = ACTIONS(5316), - [anon_sym_EQ] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5316), - [anon_sym_GT] = ACTIONS(5316), - [anon_sym_BANG_EQ] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [anon_sym_EQ_TILDE] = ACTIONS(5288), + [anon_sym_EQ_EQ] = ACTIONS(5288), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_BANG_EQ] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [sym_test_operator] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2334] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_EQ_TILDE] = ACTIONS(5320), - [anon_sym_EQ_EQ] = ACTIONS(5320), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_BANG_EQ] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [anon_sym_EQ_TILDE] = ACTIONS(5292), + [anon_sym_EQ_EQ] = ACTIONS(5292), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_BANG_EQ] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [sym_test_operator] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [sym_test_operator] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2335] = { [anon_sym_esac] = ACTIONS(5664), @@ -63287,107 +63310,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2352] = { - [sym_concatenation] = STATE(2491), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2491), - [anon_sym_RBRACE] = ACTIONS(5704), - [anon_sym_EQ] = ACTIONS(5706), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5708), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(5710), - [anon_sym_COLON] = ACTIONS(5706), - [anon_sym_COLON_QMARK] = ACTIONS(5706), - [anon_sym_COLON_DASH] = ACTIONS(5706), - [anon_sym_PERCENT] = ACTIONS(5706), + [sym_subscript] = STATE(2492), + [sym_variable_name] = ACTIONS(5704), + [anon_sym_DOLLAR] = ACTIONS(5706), [anon_sym_DASH] = ACTIONS(5706), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5708), + [anon_sym_STAR] = ACTIONS(5706), + [anon_sym_AT] = ACTIONS(5706), + [anon_sym_QMARK] = ACTIONS(5706), + [anon_sym_0] = ACTIONS(5710), + [anon_sym__] = ACTIONS(5710), }, [2353] = { - [sym_subscript] = STATE(2495), - [sym_variable_name] = ACTIONS(5712), - [anon_sym_DOLLAR] = ACTIONS(5714), + [sym_concatenation] = STATE(2495), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2495), + [anon_sym_RBRACE] = ACTIONS(5712), + [anon_sym_EQ] = ACTIONS(5714), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5716), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(5718), + [anon_sym_COLON] = ACTIONS(5714), + [anon_sym_COLON_QMARK] = ACTIONS(5714), + [anon_sym_COLON_DASH] = ACTIONS(5714), + [anon_sym_PERCENT] = ACTIONS(5714), [anon_sym_DASH] = ACTIONS(5714), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5716), - [anon_sym_STAR] = ACTIONS(5714), - [anon_sym_AT] = ACTIONS(5714), - [anon_sym_QMARK] = ACTIONS(5714), - [anon_sym_0] = ACTIONS(5718), - [anon_sym__] = ACTIONS(5718), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2354] = { [sym_concatenation] = STATE(2498), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2498), [anon_sym_RBRACE] = ACTIONS(5720), [anon_sym_EQ] = ACTIONS(5722), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5724), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(5726), [anon_sym_COLON] = ACTIONS(5722), [anon_sym_COLON_QMARK] = ACTIONS(5722), [anon_sym_COLON_DASH] = ACTIONS(5722), [anon_sym_PERCENT] = ACTIONS(5722), [anon_sym_DASH] = ACTIONS(5722), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2355] = { [sym_concatenation] = STATE(2501), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2501), [anon_sym_RBRACE] = ACTIONS(5728), [anon_sym_EQ] = ACTIONS(5730), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5732), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(5734), [anon_sym_COLON] = ACTIONS(5730), [anon_sym_COLON_QMARK] = ACTIONS(5730), [anon_sym_COLON_DASH] = ACTIONS(5730), [anon_sym_PERCENT] = ACTIONS(5730), [anon_sym_DASH] = ACTIONS(5730), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2356] = { [anon_sym_PIPE] = ACTIONS(453), @@ -63922,107 +63945,107 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2375] = { - [sym_concatenation] = STATE(2520), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2520), - [anon_sym_RBRACE] = ACTIONS(5798), - [anon_sym_EQ] = ACTIONS(5800), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5802), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(5804), - [anon_sym_COLON] = ACTIONS(5800), - [anon_sym_COLON_QMARK] = ACTIONS(5800), - [anon_sym_COLON_DASH] = ACTIONS(5800), - [anon_sym_PERCENT] = ACTIONS(5800), + [sym_subscript] = STATE(2521), + [sym_variable_name] = ACTIONS(5798), + [anon_sym_DOLLAR] = ACTIONS(5800), [anon_sym_DASH] = ACTIONS(5800), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_comment] = ACTIONS(53), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5802), + [anon_sym_STAR] = ACTIONS(5800), + [anon_sym_AT] = ACTIONS(5800), + [anon_sym_QMARK] = ACTIONS(5800), + [anon_sym_0] = ACTIONS(5804), + [anon_sym__] = ACTIONS(5804), }, [2376] = { - [sym_subscript] = STATE(2524), - [sym_variable_name] = ACTIONS(5806), - [anon_sym_DOLLAR] = ACTIONS(5808), + [sym_concatenation] = STATE(2524), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2524), + [anon_sym_RBRACE] = ACTIONS(5806), + [anon_sym_EQ] = ACTIONS(5808), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5810), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(5812), + [anon_sym_COLON] = ACTIONS(5808), + [anon_sym_COLON_QMARK] = ACTIONS(5808), + [anon_sym_COLON_DASH] = ACTIONS(5808), + [anon_sym_PERCENT] = ACTIONS(5808), [anon_sym_DASH] = ACTIONS(5808), - [sym_comment] = ACTIONS(53), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5810), - [anon_sym_STAR] = ACTIONS(5808), - [anon_sym_AT] = ACTIONS(5808), - [anon_sym_QMARK] = ACTIONS(5808), - [anon_sym_0] = ACTIONS(5812), - [anon_sym__] = ACTIONS(5812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2377] = { [sym_concatenation] = STATE(2527), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2527), [anon_sym_RBRACE] = ACTIONS(5814), [anon_sym_EQ] = ACTIONS(5816), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5818), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(5820), [anon_sym_COLON] = ACTIONS(5816), [anon_sym_COLON_QMARK] = ACTIONS(5816), [anon_sym_COLON_DASH] = ACTIONS(5816), [anon_sym_PERCENT] = ACTIONS(5816), [anon_sym_DASH] = ACTIONS(5816), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2378] = { [sym_concatenation] = STATE(2530), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2530), [anon_sym_RBRACE] = ACTIONS(5822), [anon_sym_EQ] = ACTIONS(5824), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(5826), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_SLASH] = ACTIONS(5828), [anon_sym_COLON] = ACTIONS(5824), [anon_sym_COLON_QMARK] = ACTIONS(5824), [anon_sym_COLON_DASH] = ACTIONS(5824), [anon_sym_PERCENT] = ACTIONS(5824), [anon_sym_DASH] = ACTIONS(5824), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2379] = { [anon_sym_PIPE] = ACTIONS(453), @@ -65451,214 +65474,214 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [2424] = { - [sym_file_descriptor] = ACTIONS(3909), - [sym__concat] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_RPAREN] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [anon_sym_LT] = ACTIONS(3911), - [anon_sym_GT] = ACTIONS(3911), - [anon_sym_GT_GT] = ACTIONS(3911), - [anon_sym_AMP_GT] = ACTIONS(3911), - [anon_sym_AMP_GT_GT] = ACTIONS(3911), - [anon_sym_LT_AMP] = ACTIONS(3911), - [anon_sym_GT_AMP] = ACTIONS(3911), - [anon_sym_LT_LT] = ACTIONS(3911), - [anon_sym_LT_LT_DASH] = ACTIONS(3911), - [anon_sym_LT_LT_LT] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(5919), + [sym_comment] = ACTIONS(53), }, [2425] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5919), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2426] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(5921), [sym_comment] = ACTIONS(53), }, - [2427] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(5923), + [2426] = { + [anon_sym_RBRACE] = ACTIONS(5921), [sym_comment] = ACTIONS(53), }, + [2427] = { + [sym_concatenation] = STATE(2563), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2563), + [anon_sym_RBRACE] = ACTIONS(5923), + [anon_sym_EQ] = ACTIONS(5925), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5927), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5925), + [anon_sym_COLON_QMARK] = ACTIONS(5925), + [anon_sym_COLON_DASH] = ACTIONS(5925), + [anon_sym_PERCENT] = ACTIONS(5925), + [anon_sym_DASH] = ACTIONS(5925), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [2428] = { - [anon_sym_RBRACE] = ACTIONS(5923), - [sym_comment] = ACTIONS(53), + [sym_file_descriptor] = ACTIONS(3874), + [sym__concat] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_RPAREN] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [anon_sym_LT] = ACTIONS(3876), + [anon_sym_GT] = ACTIONS(3876), + [anon_sym_GT_GT] = ACTIONS(3876), + [anon_sym_AMP_GT] = ACTIONS(3876), + [anon_sym_AMP_GT_GT] = ACTIONS(3876), + [anon_sym_LT_AMP] = ACTIONS(3876), + [anon_sym_GT_AMP] = ACTIONS(3876), + [anon_sym_LT_LT] = ACTIONS(3876), + [anon_sym_LT_LT_DASH] = ACTIONS(3876), + [anon_sym_LT_LT_LT] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [2429] = { - [sym_concatenation] = STATE(2564), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2564), - [anon_sym_RBRACE] = ACTIONS(5925), - [anon_sym_EQ] = ACTIONS(5927), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5929), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5927), - [anon_sym_COLON_QMARK] = ACTIONS(5927), - [anon_sym_COLON_DASH] = ACTIONS(5927), - [anon_sym_PERCENT] = ACTIONS(5927), - [anon_sym_DASH] = ACTIONS(5927), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2565), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2565), + [anon_sym_RBRACE] = ACTIONS(5929), + [anon_sym_EQ] = ACTIONS(5931), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5933), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5931), + [anon_sym_COLON_QMARK] = ACTIONS(5931), + [anon_sym_COLON_DASH] = ACTIONS(5931), + [anon_sym_PERCENT] = ACTIONS(5931), + [anon_sym_DASH] = ACTIONS(5931), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2430] = { - [sym_file_descriptor] = ACTIONS(3945), - [sym__concat] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_RPAREN] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [anon_sym_LT] = ACTIONS(3947), - [anon_sym_GT] = ACTIONS(3947), - [anon_sym_GT_GT] = ACTIONS(3947), - [anon_sym_AMP_GT] = ACTIONS(3947), - [anon_sym_AMP_GT_GT] = ACTIONS(3947), - [anon_sym_LT_AMP] = ACTIONS(3947), - [anon_sym_GT_AMP] = ACTIONS(3947), - [anon_sym_LT_LT] = ACTIONS(3947), - [anon_sym_LT_LT_DASH] = ACTIONS(3947), - [anon_sym_LT_LT_LT] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), + [sym_file_descriptor] = ACTIONS(3884), + [sym__concat] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_RPAREN] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [anon_sym_LT] = ACTIONS(3886), + [anon_sym_GT] = ACTIONS(3886), + [anon_sym_GT_GT] = ACTIONS(3886), + [anon_sym_AMP_GT] = ACTIONS(3886), + [anon_sym_AMP_GT_GT] = ACTIONS(3886), + [anon_sym_LT_AMP] = ACTIONS(3886), + [anon_sym_GT_AMP] = ACTIONS(3886), + [anon_sym_LT_LT] = ACTIONS(3886), + [anon_sym_LT_LT_DASH] = ACTIONS(3886), + [anon_sym_LT_LT_LT] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [2431] = { - [sym_concatenation] = STATE(2566), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2566), - [anon_sym_RBRACE] = ACTIONS(5931), - [anon_sym_EQ] = ACTIONS(5933), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5935), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5933), - [anon_sym_COLON_QMARK] = ACTIONS(5933), - [anon_sym_COLON_DASH] = ACTIONS(5933), - [anon_sym_PERCENT] = ACTIONS(5933), - [anon_sym_DASH] = ACTIONS(5933), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2567), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2567), + [anon_sym_RBRACE] = ACTIONS(5935), + [anon_sym_EQ] = ACTIONS(5937), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5939), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(5937), + [anon_sym_COLON_QMARK] = ACTIONS(5937), + [anon_sym_COLON_DASH] = ACTIONS(5937), + [anon_sym_PERCENT] = ACTIONS(5937), + [anon_sym_DASH] = ACTIONS(5937), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2432] = { - [sym_file_descriptor] = ACTIONS(3955), - [sym__concat] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_RPAREN] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [anon_sym_LT] = ACTIONS(3957), - [anon_sym_GT] = ACTIONS(3957), - [anon_sym_GT_GT] = ACTIONS(3957), - [anon_sym_AMP_GT] = ACTIONS(3957), - [anon_sym_AMP_GT_GT] = ACTIONS(3957), - [anon_sym_LT_AMP] = ACTIONS(3957), - [anon_sym_GT_AMP] = ACTIONS(3957), - [anon_sym_LT_LT] = ACTIONS(3957), - [anon_sym_LT_LT_DASH] = ACTIONS(3957), - [anon_sym_LT_LT_LT] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), + [sym_file_descriptor] = ACTIONS(3939), + [sym__concat] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_RPAREN] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [anon_sym_LT] = ACTIONS(3941), + [anon_sym_GT] = ACTIONS(3941), + [anon_sym_GT_GT] = ACTIONS(3941), + [anon_sym_AMP_GT] = ACTIONS(3941), + [anon_sym_AMP_GT_GT] = ACTIONS(3941), + [anon_sym_LT_AMP] = ACTIONS(3941), + [anon_sym_GT_AMP] = ACTIONS(3941), + [anon_sym_LT_LT] = ACTIONS(3941), + [anon_sym_LT_LT_DASH] = ACTIONS(3941), + [anon_sym_LT_LT_LT] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [2433] = { - [sym_concatenation] = STATE(2568), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2568), - [anon_sym_RBRACE] = ACTIONS(5937), - [anon_sym_EQ] = ACTIONS(5939), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(5941), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(5939), - [anon_sym_COLON_QMARK] = ACTIONS(5939), - [anon_sym_COLON_DASH] = ACTIONS(5939), - [anon_sym_PERCENT] = ACTIONS(5939), - [anon_sym_DASH] = ACTIONS(5939), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5941), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2434] = { [sym_file_descriptor] = ACTIONS(3965), @@ -65687,33 +65710,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [2435] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5943), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2436] = { [sym_file_descriptor] = ACTIONS(3971), @@ -65742,33 +65765,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [2437] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5945), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2438] = { [sym_file_descriptor] = ACTIONS(3977), @@ -65823,121 +65846,121 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4003), }, [2440] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_RBRACE] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_RBRACE] = ACTIONS(4720), [sym_comment] = ACTIONS(53), }, [2441] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_RBRACE] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_RBRACE] = ACTIONS(4724), [sym_comment] = ACTIONS(53), }, [2442] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_RBRACE] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_RBRACE] = ACTIONS(4728), [sym_comment] = ACTIONS(53), }, [2443] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_RBRACE] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5947), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2444] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5947), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4734), + [anon_sym_RBRACE] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), }, [2445] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_RBRACE] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5949), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2446] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5949), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2447] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_RBRACE] = ACTIONS(4784), + [sym__concat] = ACTIONS(4740), + [anon_sym_RBRACE] = ACTIONS(4740), [sym_comment] = ACTIONS(53), }, - [2448] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [2447] = { + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5951), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [2448] = { + [sym__concat] = ACTIONS(4782), + [anon_sym_RBRACE] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), }, [2449] = { [sym__concat] = ACTIONS(4790), @@ -65950,307 +65973,307 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2451] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_RBRACE] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5310), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5310), - [anon_sym_POUND] = ACTIONS(5310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), - [anon_sym_COLON] = ACTIONS(5312), - [anon_sym_COLON_QMARK] = ACTIONS(5312), - [anon_sym_COLON_DASH] = ACTIONS(5312), - [anon_sym_PERCENT] = ACTIONS(5312), - [anon_sym_DASH] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), - [anon_sym_BQUOTE] = ACTIONS(5310), - [anon_sym_LT_LPAREN] = ACTIONS(5310), - [anon_sym_GT_LPAREN] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5282), + [anon_sym_POUND] = ACTIONS(5282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [anon_sym_COLON] = ACTIONS(5284), + [anon_sym_COLON_QMARK] = ACTIONS(5284), + [anon_sym_COLON_DASH] = ACTIONS(5284), + [anon_sym_PERCENT] = ACTIONS(5284), + [anon_sym_DASH] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), + [anon_sym_BQUOTE] = ACTIONS(5282), + [anon_sym_LT_LPAREN] = ACTIONS(5282), + [anon_sym_GT_LPAREN] = ACTIONS(5282), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5312), + [sym_word] = ACTIONS(5284), }, [2452] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_RBRACE] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5314), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5314), - [anon_sym_POUND] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), - [anon_sym_COLON] = ACTIONS(5316), - [anon_sym_COLON_QMARK] = ACTIONS(5316), - [anon_sym_COLON_DASH] = ACTIONS(5316), - [anon_sym_PERCENT] = ACTIONS(5316), - [anon_sym_DASH] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), - [anon_sym_BQUOTE] = ACTIONS(5314), - [anon_sym_LT_LPAREN] = ACTIONS(5314), - [anon_sym_GT_LPAREN] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5286), + [anon_sym_POUND] = ACTIONS(5286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), + [anon_sym_COLON] = ACTIONS(5288), + [anon_sym_COLON_QMARK] = ACTIONS(5288), + [anon_sym_COLON_DASH] = ACTIONS(5288), + [anon_sym_PERCENT] = ACTIONS(5288), + [anon_sym_DASH] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), + [anon_sym_BQUOTE] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(5286), + [anon_sym_GT_LPAREN] = ACTIONS(5286), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5316), + [sym_word] = ACTIONS(5288), }, [2453] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_RBRACE] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5318), - [anon_sym_POUND] = ACTIONS(5318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), - [anon_sym_COLON] = ACTIONS(5320), - [anon_sym_COLON_QMARK] = ACTIONS(5320), - [anon_sym_COLON_DASH] = ACTIONS(5320), - [anon_sym_PERCENT] = ACTIONS(5320), - [anon_sym_DASH] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), - [anon_sym_BQUOTE] = ACTIONS(5318), - [anon_sym_LT_LPAREN] = ACTIONS(5318), - [anon_sym_GT_LPAREN] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5290), + [anon_sym_POUND] = ACTIONS(5290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), + [anon_sym_COLON] = ACTIONS(5292), + [anon_sym_COLON_QMARK] = ACTIONS(5292), + [anon_sym_COLON_DASH] = ACTIONS(5292), + [anon_sym_PERCENT] = ACTIONS(5292), + [anon_sym_DASH] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), + [anon_sym_BQUOTE] = ACTIONS(5290), + [anon_sym_LT_LPAREN] = ACTIONS(5290), + [anon_sym_GT_LPAREN] = ACTIONS(5290), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(5320), + [sym_word] = ACTIONS(5292), }, [2454] = { - [sym__heredoc_body_middle] = ACTIONS(5310), - [sym__heredoc_body_end] = ACTIONS(5310), - [anon_sym_DOLLAR] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), + [sym__heredoc_body_middle] = ACTIONS(5282), + [sym__heredoc_body_end] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), [sym_comment] = ACTIONS(53), }, [2455] = { - [sym__heredoc_body_middle] = ACTIONS(5314), - [sym__heredoc_body_end] = ACTIONS(5314), - [anon_sym_DOLLAR] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), + [sym__heredoc_body_middle] = ACTIONS(5286), + [sym__heredoc_body_end] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), [sym_comment] = ACTIONS(53), }, [2456] = { - [sym__heredoc_body_middle] = ACTIONS(5318), - [sym__heredoc_body_end] = ACTIONS(5318), - [anon_sym_DOLLAR] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), + [sym__heredoc_body_middle] = ACTIONS(5290), + [sym__heredoc_body_end] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), [sym_comment] = ACTIONS(53), }, [2457] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_RPAREN] = ACTIONS(5310), - [sym__special_characters] = ACTIONS(5310), - [anon_sym_DQUOTE] = ACTIONS(5310), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5310), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5310), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5310), - [anon_sym_BQUOTE] = ACTIONS(5310), - [anon_sym_LT_LPAREN] = ACTIONS(5310), - [anon_sym_GT_LPAREN] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_RPAREN] = ACTIONS(5282), + [sym__special_characters] = ACTIONS(5282), + [anon_sym_DQUOTE] = ACTIONS(5282), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5282), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5282), + [anon_sym_BQUOTE] = ACTIONS(5282), + [anon_sym_LT_LPAREN] = ACTIONS(5282), + [anon_sym_GT_LPAREN] = ACTIONS(5282), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5310), + [sym_word] = ACTIONS(5282), }, [2458] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_RPAREN] = ACTIONS(5314), - [sym__special_characters] = ACTIONS(5314), - [anon_sym_DQUOTE] = ACTIONS(5314), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5314), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5314), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5314), - [anon_sym_BQUOTE] = ACTIONS(5314), - [anon_sym_LT_LPAREN] = ACTIONS(5314), - [anon_sym_GT_LPAREN] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_RPAREN] = ACTIONS(5286), + [sym__special_characters] = ACTIONS(5286), + [anon_sym_DQUOTE] = ACTIONS(5286), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5286), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5286), + [anon_sym_BQUOTE] = ACTIONS(5286), + [anon_sym_LT_LPAREN] = ACTIONS(5286), + [anon_sym_GT_LPAREN] = ACTIONS(5286), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5314), + [sym_word] = ACTIONS(5286), }, [2459] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_RPAREN] = ACTIONS(5318), - [sym__special_characters] = ACTIONS(5318), - [anon_sym_DQUOTE] = ACTIONS(5318), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5318), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5318), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5318), - [anon_sym_BQUOTE] = ACTIONS(5318), - [anon_sym_LT_LPAREN] = ACTIONS(5318), - [anon_sym_GT_LPAREN] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_RPAREN] = ACTIONS(5290), + [sym__special_characters] = ACTIONS(5290), + [anon_sym_DQUOTE] = ACTIONS(5290), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5290), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5290), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5290), + [anon_sym_BQUOTE] = ACTIONS(5290), + [anon_sym_LT_LPAREN] = ACTIONS(5290), + [anon_sym_GT_LPAREN] = ACTIONS(5290), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(5318), + [sym_word] = ACTIONS(5290), }, [2460] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4756), - [anon_sym_AMP_AMP] = ACTIONS(4756), - [anon_sym_PIPE_PIPE] = ACTIONS(4756), - [anon_sym_EQ_TILDE] = ACTIONS(4756), - [anon_sym_EQ_EQ] = ACTIONS(4756), - [anon_sym_EQ] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4756), - [anon_sym_GT] = ACTIONS(4756), - [anon_sym_BANG_EQ] = ACTIONS(4756), + [sym__concat] = ACTIONS(4720), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4720), + [anon_sym_AMP_AMP] = ACTIONS(4720), + [anon_sym_PIPE_PIPE] = ACTIONS(4720), + [anon_sym_EQ_TILDE] = ACTIONS(4720), + [anon_sym_EQ_EQ] = ACTIONS(4720), + [anon_sym_EQ] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4720), + [anon_sym_GT] = ACTIONS(4720), + [anon_sym_BANG_EQ] = ACTIONS(4720), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4756), + [sym_test_operator] = ACTIONS(4720), }, [2461] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4764), - [anon_sym_AMP_AMP] = ACTIONS(4764), - [anon_sym_PIPE_PIPE] = ACTIONS(4764), - [anon_sym_EQ_TILDE] = ACTIONS(4764), - [anon_sym_EQ_EQ] = ACTIONS(4764), - [anon_sym_EQ] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4764), - [anon_sym_GT] = ACTIONS(4764), - [anon_sym_BANG_EQ] = ACTIONS(4764), + [sym__concat] = ACTIONS(4724), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4724), + [anon_sym_AMP_AMP] = ACTIONS(4724), + [anon_sym_PIPE_PIPE] = ACTIONS(4724), + [anon_sym_EQ_TILDE] = ACTIONS(4724), + [anon_sym_EQ_EQ] = ACTIONS(4724), + [anon_sym_EQ] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4724), + [anon_sym_GT] = ACTIONS(4724), + [anon_sym_BANG_EQ] = ACTIONS(4724), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4764), + [sym_test_operator] = ACTIONS(4724), }, [2462] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4768), - [anon_sym_AMP_AMP] = ACTIONS(4768), - [anon_sym_PIPE_PIPE] = ACTIONS(4768), - [anon_sym_EQ_TILDE] = ACTIONS(4768), - [anon_sym_EQ_EQ] = ACTIONS(4768), - [anon_sym_EQ] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4768), - [anon_sym_GT] = ACTIONS(4768), - [anon_sym_BANG_EQ] = ACTIONS(4768), + [sym__concat] = ACTIONS(4728), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4728), + [anon_sym_AMP_AMP] = ACTIONS(4728), + [anon_sym_PIPE_PIPE] = ACTIONS(4728), + [anon_sym_EQ_TILDE] = ACTIONS(4728), + [anon_sym_EQ_EQ] = ACTIONS(4728), + [anon_sym_EQ] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4728), + [anon_sym_GT] = ACTIONS(4728), + [anon_sym_BANG_EQ] = ACTIONS(4728), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4768), + [sym_test_operator] = ACTIONS(4728), }, [2463] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4772), - [anon_sym_AMP_AMP] = ACTIONS(4772), - [anon_sym_PIPE_PIPE] = ACTIONS(4772), - [anon_sym_EQ_TILDE] = ACTIONS(4772), - [anon_sym_EQ_EQ] = ACTIONS(4772), - [anon_sym_EQ] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4772), - [anon_sym_GT] = ACTIONS(4772), - [anon_sym_BANG_EQ] = ACTIONS(4772), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4772), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5953), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2464] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5953), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4734), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4734), + [anon_sym_AMP_AMP] = ACTIONS(4734), + [anon_sym_PIPE_PIPE] = ACTIONS(4734), + [anon_sym_EQ_TILDE] = ACTIONS(4734), + [anon_sym_EQ_EQ] = ACTIONS(4734), + [anon_sym_EQ] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4734), + [anon_sym_GT] = ACTIONS(4734), + [anon_sym_BANG_EQ] = ACTIONS(4734), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4734), }, [2465] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4778), - [anon_sym_AMP_AMP] = ACTIONS(4778), - [anon_sym_PIPE_PIPE] = ACTIONS(4778), - [anon_sym_EQ_TILDE] = ACTIONS(4778), - [anon_sym_EQ_EQ] = ACTIONS(4778), - [anon_sym_EQ] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4778), - [anon_sym_GT] = ACTIONS(4778), - [anon_sym_BANG_EQ] = ACTIONS(4778), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4778), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5955), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2466] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5955), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4740), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4740), + [anon_sym_AMP_AMP] = ACTIONS(4740), + [anon_sym_PIPE_PIPE] = ACTIONS(4740), + [anon_sym_EQ_TILDE] = ACTIONS(4740), + [anon_sym_EQ_EQ] = ACTIONS(4740), + [anon_sym_EQ] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4740), + [anon_sym_GT] = ACTIONS(4740), + [anon_sym_BANG_EQ] = ACTIONS(4740), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4740), }, [2467] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_RPAREN_RPAREN] = ACTIONS(4784), - [anon_sym_AMP_AMP] = ACTIONS(4784), - [anon_sym_PIPE_PIPE] = ACTIONS(4784), - [anon_sym_EQ_TILDE] = ACTIONS(4784), - [anon_sym_EQ_EQ] = ACTIONS(4784), - [anon_sym_EQ] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4784), - [anon_sym_GT] = ACTIONS(4784), - [anon_sym_BANG_EQ] = ACTIONS(4784), - [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(4784), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(5957), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), }, [2468] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5957), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym__concat] = ACTIONS(4782), + [anon_sym_RPAREN_RPAREN] = ACTIONS(4782), + [anon_sym_AMP_AMP] = ACTIONS(4782), + [anon_sym_PIPE_PIPE] = ACTIONS(4782), + [anon_sym_EQ_TILDE] = ACTIONS(4782), + [anon_sym_EQ_EQ] = ACTIONS(4782), + [anon_sym_EQ] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4782), + [anon_sym_GT] = ACTIONS(4782), + [anon_sym_BANG_EQ] = ACTIONS(4782), + [sym_comment] = ACTIONS(53), + [sym_test_operator] = ACTIONS(4782), }, [2469] = { [sym__concat] = ACTIONS(4790), @@ -66665,157 +66688,157 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(5990), }, [2489] = { - [sym__concat] = ACTIONS(1748), - [sym_variable_name] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [2490] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(5992), - }, - [2491] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(5994), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2492] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(5996), + [anon_sym_EQ] = ACTIONS(5992), [sym_comment] = ACTIONS(53), }, - [2493] = { - [sym_concatenation] = STATE(2600), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2600), - [anon_sym_RBRACE] = ACTIONS(5998), - [anon_sym_EQ] = ACTIONS(6000), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6002), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6004), - [anon_sym_COLON] = ACTIONS(6000), - [anon_sym_COLON_QMARK] = ACTIONS(6000), - [anon_sym_COLON_DASH] = ACTIONS(6000), - [anon_sym_PERCENT] = ACTIONS(6000), - [anon_sym_DASH] = ACTIONS(6000), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [2490] = { + [sym_concatenation] = STATE(2598), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2598), + [anon_sym_RBRACE] = ACTIONS(5994), + [anon_sym_EQ] = ACTIONS(5996), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(5998), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6000), + [anon_sym_COLON] = ACTIONS(5996), + [anon_sym_COLON_QMARK] = ACTIONS(5996), + [anon_sym_COLON_DASH] = ACTIONS(5996), + [anon_sym_PERCENT] = ACTIONS(5996), + [anon_sym_DASH] = ACTIONS(5996), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [2491] = { + [sym_concatenation] = STATE(2601), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2601), + [anon_sym_RBRACE] = ACTIONS(6002), + [anon_sym_EQ] = ACTIONS(6004), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6006), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6008), + [anon_sym_COLON] = ACTIONS(6004), + [anon_sym_COLON_QMARK] = ACTIONS(6004), + [anon_sym_COLON_DASH] = ACTIONS(6004), + [anon_sym_PERCENT] = ACTIONS(6004), + [anon_sym_DASH] = ACTIONS(6004), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2492] = { + [sym_concatenation] = STATE(2603), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2603), + [anon_sym_RBRACE] = ACTIONS(5986), + [anon_sym_EQ] = ACTIONS(6010), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6012), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6014), + [anon_sym_COLON] = ACTIONS(6010), + [anon_sym_COLON_QMARK] = ACTIONS(6010), + [anon_sym_COLON_DASH] = ACTIONS(6010), + [anon_sym_PERCENT] = ACTIONS(6010), + [anon_sym_DASH] = ACTIONS(6010), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2493] = { + [sym__concat] = ACTIONS(1772), + [sym_variable_name] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [2494] = { - [sym_concatenation] = STATE(2603), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2603), - [anon_sym_RBRACE] = ACTIONS(6006), - [anon_sym_EQ] = ACTIONS(6008), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6010), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6012), - [anon_sym_COLON] = ACTIONS(6008), - [anon_sym_COLON_QMARK] = ACTIONS(6008), - [anon_sym_COLON_DASH] = ACTIONS(6008), - [anon_sym_PERCENT] = ACTIONS(6008), - [anon_sym_DASH] = ACTIONS(6008), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(6016), }, [2495] = { - [sym_concatenation] = STATE(2605), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2605), - [anon_sym_RBRACE] = ACTIONS(5986), - [anon_sym_EQ] = ACTIONS(6014), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6016), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6018), - [anon_sym_COLON] = ACTIONS(6014), - [anon_sym_COLON_QMARK] = ACTIONS(6014), - [anon_sym_COLON_DASH] = ACTIONS(6014), - [anon_sym_PERCENT] = ACTIONS(6014), - [anon_sym_DASH] = ACTIONS(6014), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6018), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2496] = { [sym__concat] = ACTIONS(1816), @@ -66847,33 +66870,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(6020), }, [2498] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6022), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2499] = { [sym__concat] = ACTIONS(1824), @@ -66905,33 +66928,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(6024), }, [2501] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(5986), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2502] = { [sym__concat] = ACTIONS(1830), @@ -67336,156 +67359,156 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(6055), }, [2518] = { - [sym__concat] = ACTIONS(1748), - [anon_sym_esac] = ACTIONS(1750), - [anon_sym_PIPE] = ACTIONS(1750), - [anon_sym_SEMI_SEMI] = ACTIONS(1750), - [anon_sym_PIPE_AMP] = ACTIONS(1750), - [anon_sym_AMP_AMP] = ACTIONS(1750), - [anon_sym_PIPE_PIPE] = ACTIONS(1750), - [sym__special_characters] = ACTIONS(1750), - [anon_sym_DQUOTE] = ACTIONS(1750), - [anon_sym_DOLLAR] = ACTIONS(1750), - [sym_raw_string] = ACTIONS(1750), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(1750), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(1750), - [anon_sym_BQUOTE] = ACTIONS(1750), - [anon_sym_LT_LPAREN] = ACTIONS(1750), - [anon_sym_GT_LPAREN] = ACTIONS(1750), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1750), - [sym_word] = ACTIONS(1750), - [anon_sym_SEMI] = ACTIONS(1750), - [anon_sym_LF] = ACTIONS(1748), - [anon_sym_AMP] = ACTIONS(1750), - }, - [2519] = { - [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6057), - }, - [2520] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6059), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2521] = { [anon_sym_LBRACK] = ACTIONS(731), - [anon_sym_EQ] = ACTIONS(6061), + [anon_sym_EQ] = ACTIONS(6057), [sym_comment] = ACTIONS(53), }, - [2522] = { - [sym_concatenation] = STATE(2624), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2624), - [anon_sym_RBRACE] = ACTIONS(6063), - [anon_sym_EQ] = ACTIONS(6065), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6067), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6069), - [anon_sym_COLON] = ACTIONS(6065), - [anon_sym_COLON_QMARK] = ACTIONS(6065), - [anon_sym_COLON_DASH] = ACTIONS(6065), - [anon_sym_PERCENT] = ACTIONS(6065), - [anon_sym_DASH] = ACTIONS(6065), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [2519] = { + [sym_concatenation] = STATE(2622), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2622), + [anon_sym_RBRACE] = ACTIONS(6059), + [anon_sym_EQ] = ACTIONS(6061), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6063), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6065), + [anon_sym_COLON] = ACTIONS(6061), + [anon_sym_COLON_QMARK] = ACTIONS(6061), + [anon_sym_COLON_DASH] = ACTIONS(6061), + [anon_sym_PERCENT] = ACTIONS(6061), + [anon_sym_DASH] = ACTIONS(6061), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), + }, + [2520] = { + [sym_concatenation] = STATE(2625), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2625), + [anon_sym_RBRACE] = ACTIONS(6067), + [anon_sym_EQ] = ACTIONS(6069), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6071), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6073), + [anon_sym_COLON] = ACTIONS(6069), + [anon_sym_COLON_QMARK] = ACTIONS(6069), + [anon_sym_COLON_DASH] = ACTIONS(6069), + [anon_sym_PERCENT] = ACTIONS(6069), + [anon_sym_DASH] = ACTIONS(6069), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2521] = { + [sym_concatenation] = STATE(2627), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2627), + [anon_sym_RBRACE] = ACTIONS(6051), + [anon_sym_EQ] = ACTIONS(6075), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6077), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_SLASH] = ACTIONS(6079), + [anon_sym_COLON] = ACTIONS(6075), + [anon_sym_COLON_QMARK] = ACTIONS(6075), + [anon_sym_COLON_DASH] = ACTIONS(6075), + [anon_sym_PERCENT] = ACTIONS(6075), + [anon_sym_DASH] = ACTIONS(6075), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, + [2522] = { + [sym__concat] = ACTIONS(1772), + [anon_sym_esac] = ACTIONS(1774), + [anon_sym_PIPE] = ACTIONS(1774), + [anon_sym_SEMI_SEMI] = ACTIONS(1774), + [anon_sym_PIPE_AMP] = ACTIONS(1774), + [anon_sym_AMP_AMP] = ACTIONS(1774), + [anon_sym_PIPE_PIPE] = ACTIONS(1774), + [sym__special_characters] = ACTIONS(1774), + [anon_sym_DQUOTE] = ACTIONS(1774), + [anon_sym_DOLLAR] = ACTIONS(1774), + [sym_raw_string] = ACTIONS(1774), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(1774), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(1774), + [anon_sym_BQUOTE] = ACTIONS(1774), + [anon_sym_LT_LPAREN] = ACTIONS(1774), + [anon_sym_GT_LPAREN] = ACTIONS(1774), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(1774), + [sym_word] = ACTIONS(1774), + [anon_sym_SEMI] = ACTIONS(1774), + [anon_sym_LF] = ACTIONS(1772), + [anon_sym_AMP] = ACTIONS(1774), }, [2523] = { - [sym_concatenation] = STATE(2627), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2627), - [anon_sym_RBRACE] = ACTIONS(6071), - [anon_sym_EQ] = ACTIONS(6073), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6075), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6077), - [anon_sym_COLON] = ACTIONS(6073), - [anon_sym_COLON_QMARK] = ACTIONS(6073), - [anon_sym_COLON_DASH] = ACTIONS(6073), - [anon_sym_PERCENT] = ACTIONS(6073), - [anon_sym_DASH] = ACTIONS(6073), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(6081), }, [2524] = { - [sym_concatenation] = STATE(2629), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2629), - [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(6079), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6081), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_SLASH] = ACTIONS(6083), - [anon_sym_COLON] = ACTIONS(6079), - [anon_sym_COLON_QMARK] = ACTIONS(6079), - [anon_sym_COLON_DASH] = ACTIONS(6079), - [anon_sym_PERCENT] = ACTIONS(6079), - [anon_sym_DASH] = ACTIONS(6079), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6083), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2525] = { [sym__concat] = ACTIONS(1816), @@ -67516,33 +67539,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(6085), }, [2527] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6087), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2528] = { [sym__concat] = ACTIONS(1824), @@ -67573,33 +67596,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_regex_without_right_brace] = ACTIONS(6089), }, [2530] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6051), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2531] = { [sym__concat] = ACTIONS(1830), @@ -68493,247 +68516,247 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_word] = ACTIONS(55), }, [2560] = { - [sym_file_descriptor] = ACTIONS(4756), - [sym__concat] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_RPAREN] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [anon_sym_LT] = ACTIONS(4758), - [anon_sym_GT] = ACTIONS(4758), - [anon_sym_GT_GT] = ACTIONS(4758), - [anon_sym_AMP_GT] = ACTIONS(4758), - [anon_sym_AMP_GT_GT] = ACTIONS(4758), - [anon_sym_LT_AMP] = ACTIONS(4758), - [anon_sym_GT_AMP] = ACTIONS(4758), - [anon_sym_LT_LT] = ACTIONS(4758), - [anon_sym_LT_LT_DASH] = ACTIONS(4758), - [anon_sym_LT_LT_LT] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), + [sym_file_descriptor] = ACTIONS(4720), + [sym__concat] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_RPAREN] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [anon_sym_LT] = ACTIONS(4722), + [anon_sym_GT] = ACTIONS(4722), + [anon_sym_GT_GT] = ACTIONS(4722), + [anon_sym_AMP_GT] = ACTIONS(4722), + [anon_sym_AMP_GT_GT] = ACTIONS(4722), + [anon_sym_LT_AMP] = ACTIONS(4722), + [anon_sym_GT_AMP] = ACTIONS(4722), + [anon_sym_LT_LT] = ACTIONS(4722), + [anon_sym_LT_LT_DASH] = ACTIONS(4722), + [anon_sym_LT_LT_LT] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [2561] = { - [sym_file_descriptor] = ACTIONS(4764), - [sym__concat] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_RPAREN] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [anon_sym_LT] = ACTIONS(4766), - [anon_sym_GT] = ACTIONS(4766), - [anon_sym_GT_GT] = ACTIONS(4766), - [anon_sym_AMP_GT] = ACTIONS(4766), - [anon_sym_AMP_GT_GT] = ACTIONS(4766), - [anon_sym_LT_AMP] = ACTIONS(4766), - [anon_sym_GT_AMP] = ACTIONS(4766), - [anon_sym_LT_LT] = ACTIONS(4766), - [anon_sym_LT_LT_DASH] = ACTIONS(4766), - [anon_sym_LT_LT_LT] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), + [sym_file_descriptor] = ACTIONS(4724), + [sym__concat] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_RPAREN] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [anon_sym_LT] = ACTIONS(4726), + [anon_sym_GT] = ACTIONS(4726), + [anon_sym_GT_GT] = ACTIONS(4726), + [anon_sym_AMP_GT] = ACTIONS(4726), + [anon_sym_AMP_GT_GT] = ACTIONS(4726), + [anon_sym_LT_AMP] = ACTIONS(4726), + [anon_sym_GT_AMP] = ACTIONS(4726), + [anon_sym_LT_LT] = ACTIONS(4726), + [anon_sym_LT_LT_DASH] = ACTIONS(4726), + [anon_sym_LT_LT_LT] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [2562] = { - [sym_file_descriptor] = ACTIONS(4768), - [sym__concat] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_RPAREN] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [anon_sym_LT] = ACTIONS(4770), - [anon_sym_GT] = ACTIONS(4770), - [anon_sym_GT_GT] = ACTIONS(4770), - [anon_sym_AMP_GT] = ACTIONS(4770), - [anon_sym_AMP_GT_GT] = ACTIONS(4770), - [anon_sym_LT_AMP] = ACTIONS(4770), - [anon_sym_GT_AMP] = ACTIONS(4770), - [anon_sym_LT_LT] = ACTIONS(4770), - [anon_sym_LT_LT_DASH] = ACTIONS(4770), - [anon_sym_LT_LT_LT] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), + [sym_file_descriptor] = ACTIONS(4728), + [sym__concat] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_RPAREN] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [anon_sym_LT] = ACTIONS(4730), + [anon_sym_GT] = ACTIONS(4730), + [anon_sym_GT_GT] = ACTIONS(4730), + [anon_sym_AMP_GT] = ACTIONS(4730), + [anon_sym_AMP_GT_GT] = ACTIONS(4730), + [anon_sym_LT_AMP] = ACTIONS(4730), + [anon_sym_GT_AMP] = ACTIONS(4730), + [anon_sym_LT_LT] = ACTIONS(4730), + [anon_sym_LT_LT_DASH] = ACTIONS(4730), + [anon_sym_LT_LT_LT] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [2563] = { - [sym_file_descriptor] = ACTIONS(4772), - [sym__concat] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_RPAREN] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [anon_sym_LT] = ACTIONS(4774), - [anon_sym_GT] = ACTIONS(4774), - [anon_sym_GT_GT] = ACTIONS(4774), - [anon_sym_AMP_GT] = ACTIONS(4774), - [anon_sym_AMP_GT_GT] = ACTIONS(4774), - [anon_sym_LT_AMP] = ACTIONS(4774), - [anon_sym_GT_AMP] = ACTIONS(4774), - [anon_sym_LT_LT] = ACTIONS(4774), - [anon_sym_LT_LT_DASH] = ACTIONS(4774), - [anon_sym_LT_LT_LT] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6131), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2564] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6131), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4734), + [sym__concat] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_RPAREN] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [anon_sym_LT] = ACTIONS(4736), + [anon_sym_GT] = ACTIONS(4736), + [anon_sym_GT_GT] = ACTIONS(4736), + [anon_sym_AMP_GT] = ACTIONS(4736), + [anon_sym_AMP_GT_GT] = ACTIONS(4736), + [anon_sym_LT_AMP] = ACTIONS(4736), + [anon_sym_GT_AMP] = ACTIONS(4736), + [anon_sym_LT_LT] = ACTIONS(4736), + [anon_sym_LT_LT_DASH] = ACTIONS(4736), + [anon_sym_LT_LT_LT] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [2565] = { - [sym_file_descriptor] = ACTIONS(4778), - [sym__concat] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_RPAREN] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [anon_sym_LT] = ACTIONS(4780), - [anon_sym_GT] = ACTIONS(4780), - [anon_sym_GT_GT] = ACTIONS(4780), - [anon_sym_AMP_GT] = ACTIONS(4780), - [anon_sym_AMP_GT_GT] = ACTIONS(4780), - [anon_sym_LT_AMP] = ACTIONS(4780), - [anon_sym_GT_AMP] = ACTIONS(4780), - [anon_sym_LT_LT] = ACTIONS(4780), - [anon_sym_LT_LT_DASH] = ACTIONS(4780), - [anon_sym_LT_LT_LT] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6133), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2566] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6133), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4740), + [sym__concat] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_RPAREN] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [anon_sym_LT] = ACTIONS(4742), + [anon_sym_GT] = ACTIONS(4742), + [anon_sym_GT_GT] = ACTIONS(4742), + [anon_sym_AMP_GT] = ACTIONS(4742), + [anon_sym_AMP_GT_GT] = ACTIONS(4742), + [anon_sym_LT_AMP] = ACTIONS(4742), + [anon_sym_GT_AMP] = ACTIONS(4742), + [anon_sym_LT_LT] = ACTIONS(4742), + [anon_sym_LT_LT_DASH] = ACTIONS(4742), + [anon_sym_LT_LT_LT] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [2567] = { - [sym_file_descriptor] = ACTIONS(4784), - [sym__concat] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_RPAREN] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [anon_sym_LT] = ACTIONS(4786), - [anon_sym_GT] = ACTIONS(4786), - [anon_sym_GT_GT] = ACTIONS(4786), - [anon_sym_AMP_GT] = ACTIONS(4786), - [anon_sym_AMP_GT_GT] = ACTIONS(4786), - [anon_sym_LT_AMP] = ACTIONS(4786), - [anon_sym_GT_AMP] = ACTIONS(4786), - [anon_sym_LT_LT] = ACTIONS(4786), - [anon_sym_LT_LT_DASH] = ACTIONS(4786), - [anon_sym_LT_LT_LT] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6135), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2568] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6135), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_file_descriptor] = ACTIONS(4782), + [sym__concat] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_RPAREN] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [anon_sym_LT] = ACTIONS(4784), + [anon_sym_GT] = ACTIONS(4784), + [anon_sym_GT_GT] = ACTIONS(4784), + [anon_sym_AMP_GT] = ACTIONS(4784), + [anon_sym_AMP_GT_GT] = ACTIONS(4784), + [anon_sym_LT_AMP] = ACTIONS(4784), + [anon_sym_GT_AMP] = ACTIONS(4784), + [anon_sym_LT_LT] = ACTIONS(4784), + [anon_sym_LT_LT_DASH] = ACTIONS(4784), + [anon_sym_LT_LT_LT] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [2569] = { [sym_file_descriptor] = ACTIONS(4790), @@ -68788,61 +68811,61 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4796), }, [2571] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_RBRACE] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_RBRACE] = ACTIONS(5282), [sym_comment] = ACTIONS(53), }, [2572] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_RBRACE] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_RBRACE] = ACTIONS(5286), [sym_comment] = ACTIONS(53), }, [2573] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_RBRACE] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_RBRACE] = ACTIONS(5290), [sym_comment] = ACTIONS(53), }, [2574] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5310), - [anon_sym_AMP_AMP] = ACTIONS(5310), - [anon_sym_PIPE_PIPE] = ACTIONS(5310), - [anon_sym_EQ_TILDE] = ACTIONS(5310), - [anon_sym_EQ_EQ] = ACTIONS(5310), - [anon_sym_EQ] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5310), - [anon_sym_GT] = ACTIONS(5310), - [anon_sym_BANG_EQ] = ACTIONS(5310), + [sym__concat] = ACTIONS(5282), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5282), + [anon_sym_AMP_AMP] = ACTIONS(5282), + [anon_sym_PIPE_PIPE] = ACTIONS(5282), + [anon_sym_EQ_TILDE] = ACTIONS(5282), + [anon_sym_EQ_EQ] = ACTIONS(5282), + [anon_sym_EQ] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5282), + [anon_sym_GT] = ACTIONS(5282), + [anon_sym_BANG_EQ] = ACTIONS(5282), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5310), + [sym_test_operator] = ACTIONS(5282), }, [2575] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5314), - [anon_sym_AMP_AMP] = ACTIONS(5314), - [anon_sym_PIPE_PIPE] = ACTIONS(5314), - [anon_sym_EQ_TILDE] = ACTIONS(5314), - [anon_sym_EQ_EQ] = ACTIONS(5314), - [anon_sym_EQ] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5314), - [anon_sym_GT] = ACTIONS(5314), - [anon_sym_BANG_EQ] = ACTIONS(5314), + [sym__concat] = ACTIONS(5286), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5286), + [anon_sym_AMP_AMP] = ACTIONS(5286), + [anon_sym_PIPE_PIPE] = ACTIONS(5286), + [anon_sym_EQ_TILDE] = ACTIONS(5286), + [anon_sym_EQ_EQ] = ACTIONS(5286), + [anon_sym_EQ] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5286), + [anon_sym_GT] = ACTIONS(5286), + [anon_sym_BANG_EQ] = ACTIONS(5286), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5314), + [sym_test_operator] = ACTIONS(5286), }, [2576] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_RPAREN_RPAREN] = ACTIONS(5318), - [anon_sym_AMP_AMP] = ACTIONS(5318), - [anon_sym_PIPE_PIPE] = ACTIONS(5318), - [anon_sym_EQ_TILDE] = ACTIONS(5318), - [anon_sym_EQ_EQ] = ACTIONS(5318), - [anon_sym_EQ] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5318), - [anon_sym_GT] = ACTIONS(5318), - [anon_sym_BANG_EQ] = ACTIONS(5318), + [sym__concat] = ACTIONS(5290), + [anon_sym_RPAREN_RPAREN] = ACTIONS(5290), + [anon_sym_AMP_AMP] = ACTIONS(5290), + [anon_sym_PIPE_PIPE] = ACTIONS(5290), + [anon_sym_EQ_TILDE] = ACTIONS(5290), + [anon_sym_EQ_EQ] = ACTIONS(5290), + [anon_sym_EQ] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5290), + [anon_sym_GT] = ACTIONS(5290), + [anon_sym_BANG_EQ] = ACTIONS(5290), [sym_comment] = ACTIONS(53), - [sym_test_operator] = ACTIONS(5318), + [sym_test_operator] = ACTIONS(5290), }, [2577] = { [aux_sym_concatenation_repeat1] = STATE(2577), @@ -69206,257 +69229,257 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2595] = { - [sym_concatenation] = STATE(2660), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2660), - [anon_sym_RBRACE] = ACTIONS(6160), - [anon_sym_EQ] = ACTIONS(6162), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6164), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6162), - [anon_sym_COLON_QMARK] = ACTIONS(6162), - [anon_sym_COLON_DASH] = ACTIONS(6162), - [anon_sym_PERCENT] = ACTIONS(6162), - [anon_sym_DASH] = ACTIONS(6162), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2596] = { - [sym__concat] = ACTIONS(2926), - [sym_variable_name] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [2597] = { - [sym_concatenation] = STATE(2663), - [sym_string] = STATE(2662), - [sym_simple_expansion] = STATE(2662), - [sym_string_expansion] = STATE(2662), - [sym_expansion] = STATE(2662), - [sym_command_substitution] = STATE(2662), - [sym_process_substitution] = STATE(2662), + [sym_concatenation] = STATE(2661), + [sym_string] = STATE(2660), + [sym_simple_expansion] = STATE(2660), + [sym_string_expansion] = STATE(2660), + [sym_expansion] = STATE(2660), + [sym_command_substitution] = STATE(2660), + [sym_process_substitution] = STATE(2660), [anon_sym_RBRACE] = ACTIONS(6158), - [sym__special_characters] = ACTIONS(6166), + [sym__special_characters] = ACTIONS(6160), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(6168), + [sym_raw_string] = ACTIONS(6162), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6168), + [sym_word] = ACTIONS(6162), + }, + [2596] = { + [sym__concat] = ACTIONS(2868), + [sym_variable_name] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [2597] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6164), }, [2598] = { - [sym__concat] = ACTIONS(2969), - [sym_variable_name] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6166), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [2599] = { + [sym__concat] = ACTIONS(2876), + [sym_variable_name] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6170), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [2600] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6172), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(6168), }, [2601] = { - [sym__concat] = ACTIONS(2977), - [sym_variable_name] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6170), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [2602] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6174), + [sym_regex_without_right_brace] = ACTIONS(6172), }, [2603] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6176), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6158), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2604] = { + [sym_concatenation] = STATE(2668), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2668), + [anon_sym_RBRACE] = ACTIONS(6174), + [anon_sym_EQ] = ACTIONS(6176), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6178), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6176), + [anon_sym_COLON_QMARK] = ACTIONS(6176), + [anon_sym_COLON_DASH] = ACTIONS(6176), + [anon_sym_PERCENT] = ACTIONS(6176), + [anon_sym_DASH] = ACTIONS(6176), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6178), + [sym_word] = ACTIONS(767), }, [2605] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6158), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [sym_variable_name] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [2606] = { [sym_concatenation] = STATE(2670), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2670), [anon_sym_RBRACE] = ACTIONS(6180), [anon_sym_EQ] = ACTIONS(6182), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(6184), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(6182), [anon_sym_COLON_QMARK] = ACTIONS(6182), [anon_sym_COLON_DASH] = ACTIONS(6182), [anon_sym_PERCENT] = ACTIONS(6182), [anon_sym_DASH] = ACTIONS(6182), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2607] = { [sym__concat] = ACTIONS(2993), @@ -69485,32 +69508,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [2608] = { [sym_concatenation] = STATE(2672), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2672), [anon_sym_RBRACE] = ACTIONS(6186), [anon_sym_EQ] = ACTIONS(6188), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(6190), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(6188), [anon_sym_COLON_QMARK] = ACTIONS(6188), [anon_sym_COLON_DASH] = ACTIONS(6188), [anon_sym_PERCENT] = ACTIONS(6188), [anon_sym_DASH] = ACTIONS(6188), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2609] = { [sym__concat] = ACTIONS(3003), @@ -69743,254 +69766,254 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(53), }, [2619] = { - [sym_concatenation] = STATE(2678), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2678), - [anon_sym_RBRACE] = ACTIONS(6200), - [anon_sym_EQ] = ACTIONS(6202), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6204), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6202), - [anon_sym_COLON_QMARK] = ACTIONS(6202), - [anon_sym_COLON_DASH] = ACTIONS(6202), - [anon_sym_PERCENT] = ACTIONS(6202), - [anon_sym_DASH] = ACTIONS(6202), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2620] = { - [sym__concat] = ACTIONS(2926), - [anon_sym_esac] = ACTIONS(2928), - [anon_sym_PIPE] = ACTIONS(2928), - [anon_sym_SEMI_SEMI] = ACTIONS(2928), - [anon_sym_PIPE_AMP] = ACTIONS(2928), - [anon_sym_AMP_AMP] = ACTIONS(2928), - [anon_sym_PIPE_PIPE] = ACTIONS(2928), - [sym__special_characters] = ACTIONS(2928), - [anon_sym_DQUOTE] = ACTIONS(2928), - [anon_sym_DOLLAR] = ACTIONS(2928), - [sym_raw_string] = ACTIONS(2928), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2928), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2928), - [anon_sym_BQUOTE] = ACTIONS(2928), - [anon_sym_LT_LPAREN] = ACTIONS(2928), - [anon_sym_GT_LPAREN] = ACTIONS(2928), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2928), - [sym_word] = ACTIONS(2928), - [anon_sym_SEMI] = ACTIONS(2928), - [anon_sym_LF] = ACTIONS(2926), - [anon_sym_AMP] = ACTIONS(2928), - }, - [2621] = { - [sym_concatenation] = STATE(2681), - [sym_string] = STATE(2680), - [sym_simple_expansion] = STATE(2680), - [sym_string_expansion] = STATE(2680), - [sym_expansion] = STATE(2680), - [sym_command_substitution] = STATE(2680), - [sym_process_substitution] = STATE(2680), + [sym_concatenation] = STATE(2679), + [sym_string] = STATE(2678), + [sym_simple_expansion] = STATE(2678), + [sym_string_expansion] = STATE(2678), + [sym_expansion] = STATE(2678), + [sym_command_substitution] = STATE(2678), + [sym_process_substitution] = STATE(2678), [anon_sym_RBRACE] = ACTIONS(6198), - [sym__special_characters] = ACTIONS(6206), + [sym__special_characters] = ACTIONS(6200), [anon_sym_DQUOTE] = ACTIONS(1734), [anon_sym_DOLLAR] = ACTIONS(1736), - [sym_raw_string] = ACTIONS(6208), + [sym_raw_string] = ACTIONS(6202), [anon_sym_DOLLAR_LBRACE] = ACTIONS(1740), [anon_sym_DOLLAR_LPAREN] = ACTIONS(1742), [anon_sym_BQUOTE] = ACTIONS(1744), [anon_sym_LT_LPAREN] = ACTIONS(1746), [anon_sym_GT_LPAREN] = ACTIONS(1746), [sym_comment] = ACTIONS(53), - [sym_word] = ACTIONS(6208), + [sym_word] = ACTIONS(6202), + }, + [2620] = { + [sym__concat] = ACTIONS(2868), + [anon_sym_esac] = ACTIONS(2870), + [anon_sym_PIPE] = ACTIONS(2870), + [anon_sym_SEMI_SEMI] = ACTIONS(2870), + [anon_sym_PIPE_AMP] = ACTIONS(2870), + [anon_sym_AMP_AMP] = ACTIONS(2870), + [anon_sym_PIPE_PIPE] = ACTIONS(2870), + [sym__special_characters] = ACTIONS(2870), + [anon_sym_DQUOTE] = ACTIONS(2870), + [anon_sym_DOLLAR] = ACTIONS(2870), + [sym_raw_string] = ACTIONS(2870), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2870), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2870), + [anon_sym_BQUOTE] = ACTIONS(2870), + [anon_sym_LT_LPAREN] = ACTIONS(2870), + [anon_sym_GT_LPAREN] = ACTIONS(2870), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2870), + [sym_word] = ACTIONS(2870), + [anon_sym_SEMI] = ACTIONS(2870), + [anon_sym_LF] = ACTIONS(2868), + [anon_sym_AMP] = ACTIONS(2870), + }, + [2621] = { + [sym_comment] = ACTIONS(179), + [sym_regex_without_right_brace] = ACTIONS(6204), }, [2622] = { - [sym__concat] = ACTIONS(2969), - [anon_sym_esac] = ACTIONS(2971), - [anon_sym_PIPE] = ACTIONS(2971), - [anon_sym_SEMI_SEMI] = ACTIONS(2971), - [anon_sym_PIPE_AMP] = ACTIONS(2971), - [anon_sym_AMP_AMP] = ACTIONS(2971), - [anon_sym_PIPE_PIPE] = ACTIONS(2971), - [sym__special_characters] = ACTIONS(2971), - [anon_sym_DQUOTE] = ACTIONS(2971), - [anon_sym_DOLLAR] = ACTIONS(2971), - [sym_raw_string] = ACTIONS(2971), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2971), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2971), - [anon_sym_BQUOTE] = ACTIONS(2971), - [anon_sym_LT_LPAREN] = ACTIONS(2971), - [anon_sym_GT_LPAREN] = ACTIONS(2971), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6206), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2971), - [sym_word] = ACTIONS(2971), - [anon_sym_SEMI] = ACTIONS(2971), - [anon_sym_LF] = ACTIONS(2969), - [anon_sym_AMP] = ACTIONS(2971), + [sym_word] = ACTIONS(767), }, [2623] = { + [sym__concat] = ACTIONS(2876), + [anon_sym_esac] = ACTIONS(2878), + [anon_sym_PIPE] = ACTIONS(2878), + [anon_sym_SEMI_SEMI] = ACTIONS(2878), + [anon_sym_PIPE_AMP] = ACTIONS(2878), + [anon_sym_AMP_AMP] = ACTIONS(2878), + [anon_sym_PIPE_PIPE] = ACTIONS(2878), + [sym__special_characters] = ACTIONS(2878), + [anon_sym_DQUOTE] = ACTIONS(2878), + [anon_sym_DOLLAR] = ACTIONS(2878), + [sym_raw_string] = ACTIONS(2878), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2878), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2878), + [anon_sym_BQUOTE] = ACTIONS(2878), + [anon_sym_LT_LPAREN] = ACTIONS(2878), + [anon_sym_GT_LPAREN] = ACTIONS(2878), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6210), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2878), + [sym_word] = ACTIONS(2878), + [anon_sym_SEMI] = ACTIONS(2878), + [anon_sym_LF] = ACTIONS(2876), + [anon_sym_AMP] = ACTIONS(2878), }, [2624] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6212), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_regex_without_right_brace] = ACTIONS(6208), }, [2625] = { - [sym__concat] = ACTIONS(2977), - [anon_sym_esac] = ACTIONS(2979), - [anon_sym_PIPE] = ACTIONS(2979), - [anon_sym_SEMI_SEMI] = ACTIONS(2979), - [anon_sym_PIPE_AMP] = ACTIONS(2979), - [anon_sym_AMP_AMP] = ACTIONS(2979), - [anon_sym_PIPE_PIPE] = ACTIONS(2979), - [sym__special_characters] = ACTIONS(2979), - [anon_sym_DQUOTE] = ACTIONS(2979), - [anon_sym_DOLLAR] = ACTIONS(2979), - [sym_raw_string] = ACTIONS(2979), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(2979), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(2979), - [anon_sym_BQUOTE] = ACTIONS(2979), - [anon_sym_LT_LPAREN] = ACTIONS(2979), - [anon_sym_GT_LPAREN] = ACTIONS(2979), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6210), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2979), - [sym_word] = ACTIONS(2979), - [anon_sym_SEMI] = ACTIONS(2979), - [anon_sym_LF] = ACTIONS(2977), - [anon_sym_AMP] = ACTIONS(2979), + [sym_word] = ACTIONS(767), }, [2626] = { [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6214), + [sym_regex_without_right_brace] = ACTIONS(6212), }, [2627] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6216), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6198), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2628] = { + [sym_concatenation] = STATE(2686), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2686), + [anon_sym_RBRACE] = ACTIONS(6214), + [anon_sym_EQ] = ACTIONS(6216), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6218), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6216), + [anon_sym_COLON_QMARK] = ACTIONS(6216), + [anon_sym_COLON_DASH] = ACTIONS(6216), + [anon_sym_PERCENT] = ACTIONS(6216), + [anon_sym_DASH] = ACTIONS(6216), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_regex_without_right_brace] = ACTIONS(6218), + [sym_word] = ACTIONS(767), }, [2629] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6198), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(2948), + [anon_sym_esac] = ACTIONS(2950), + [anon_sym_PIPE] = ACTIONS(2950), + [anon_sym_SEMI_SEMI] = ACTIONS(2950), + [anon_sym_PIPE_AMP] = ACTIONS(2950), + [anon_sym_AMP_AMP] = ACTIONS(2950), + [anon_sym_PIPE_PIPE] = ACTIONS(2950), + [sym__special_characters] = ACTIONS(2950), + [anon_sym_DQUOTE] = ACTIONS(2950), + [anon_sym_DOLLAR] = ACTIONS(2950), + [sym_raw_string] = ACTIONS(2950), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(2950), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(2950), + [anon_sym_BQUOTE] = ACTIONS(2950), + [anon_sym_LT_LPAREN] = ACTIONS(2950), + [anon_sym_GT_LPAREN] = ACTIONS(2950), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(2950), + [sym_word] = ACTIONS(2950), + [anon_sym_SEMI] = ACTIONS(2950), + [anon_sym_LF] = ACTIONS(2948), + [anon_sym_AMP] = ACTIONS(2950), }, [2630] = { [sym_concatenation] = STATE(2688), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2688), [anon_sym_RBRACE] = ACTIONS(6220), [anon_sym_EQ] = ACTIONS(6222), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(6224), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(6222), [anon_sym_COLON_QMARK] = ACTIONS(6222), [anon_sym_COLON_DASH] = ACTIONS(6222), [anon_sym_PERCENT] = ACTIONS(6222), [anon_sym_DASH] = ACTIONS(6222), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2631] = { [sym__concat] = ACTIONS(2993), @@ -70018,32 +70041,32 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { }, [2632] = { [sym_concatenation] = STATE(2690), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), [aux_sym_expansion_repeat1] = STATE(2690), [anon_sym_RBRACE] = ACTIONS(6226), [anon_sym_EQ] = ACTIONS(6228), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), [anon_sym_POUND] = ACTIONS(6230), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), [anon_sym_COLON] = ACTIONS(6228), [anon_sym_COLON_QMARK] = ACTIONS(6228), [anon_sym_COLON_DASH] = ACTIONS(6228), [anon_sym_PERCENT] = ACTIONS(6228), [anon_sym_DASH] = ACTIONS(6228), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2633] = { [sym__concat] = ACTIONS(3003), @@ -70423,82 +70446,82 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(285), }, [2647] = { - [sym_file_descriptor] = ACTIONS(5310), - [sym__concat] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_RPAREN] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [anon_sym_LT] = ACTIONS(5312), - [anon_sym_GT] = ACTIONS(5312), - [anon_sym_GT_GT] = ACTIONS(5312), - [anon_sym_AMP_GT] = ACTIONS(5312), - [anon_sym_AMP_GT_GT] = ACTIONS(5312), - [anon_sym_LT_AMP] = ACTIONS(5312), - [anon_sym_GT_AMP] = ACTIONS(5312), - [anon_sym_LT_LT] = ACTIONS(5312), - [anon_sym_LT_LT_DASH] = ACTIONS(5312), - [anon_sym_LT_LT_LT] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), + [sym_file_descriptor] = ACTIONS(5282), + [sym__concat] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_RPAREN] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [anon_sym_LT] = ACTIONS(5284), + [anon_sym_GT] = ACTIONS(5284), + [anon_sym_GT_GT] = ACTIONS(5284), + [anon_sym_AMP_GT] = ACTIONS(5284), + [anon_sym_AMP_GT_GT] = ACTIONS(5284), + [anon_sym_LT_AMP] = ACTIONS(5284), + [anon_sym_GT_AMP] = ACTIONS(5284), + [anon_sym_LT_LT] = ACTIONS(5284), + [anon_sym_LT_LT_DASH] = ACTIONS(5284), + [anon_sym_LT_LT_LT] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2648] = { - [sym_file_descriptor] = ACTIONS(5314), - [sym__concat] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_RPAREN] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [anon_sym_LT] = ACTIONS(5316), - [anon_sym_GT] = ACTIONS(5316), - [anon_sym_GT_GT] = ACTIONS(5316), - [anon_sym_AMP_GT] = ACTIONS(5316), - [anon_sym_AMP_GT_GT] = ACTIONS(5316), - [anon_sym_LT_AMP] = ACTIONS(5316), - [anon_sym_GT_AMP] = ACTIONS(5316), - [anon_sym_LT_LT] = ACTIONS(5316), - [anon_sym_LT_LT_DASH] = ACTIONS(5316), - [anon_sym_LT_LT_LT] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), + [sym_file_descriptor] = ACTIONS(5286), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_RPAREN] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [anon_sym_LT] = ACTIONS(5288), + [anon_sym_GT] = ACTIONS(5288), + [anon_sym_GT_GT] = ACTIONS(5288), + [anon_sym_AMP_GT] = ACTIONS(5288), + [anon_sym_AMP_GT_GT] = ACTIONS(5288), + [anon_sym_LT_AMP] = ACTIONS(5288), + [anon_sym_GT_AMP] = ACTIONS(5288), + [anon_sym_LT_LT] = ACTIONS(5288), + [anon_sym_LT_LT_DASH] = ACTIONS(5288), + [anon_sym_LT_LT_LT] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2649] = { - [sym_file_descriptor] = ACTIONS(5318), - [sym__concat] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_RPAREN] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [anon_sym_LT] = ACTIONS(5320), - [anon_sym_GT] = ACTIONS(5320), - [anon_sym_GT_GT] = ACTIONS(5320), - [anon_sym_AMP_GT] = ACTIONS(5320), - [anon_sym_AMP_GT_GT] = ACTIONS(5320), - [anon_sym_LT_AMP] = ACTIONS(5320), - [anon_sym_GT_AMP] = ACTIONS(5320), - [anon_sym_LT_LT] = ACTIONS(5320), - [anon_sym_LT_LT_DASH] = ACTIONS(5320), - [anon_sym_LT_LT_LT] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), + [sym_file_descriptor] = ACTIONS(5290), + [sym__concat] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_RPAREN] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [anon_sym_LT] = ACTIONS(5292), + [anon_sym_GT] = ACTIONS(5292), + [anon_sym_GT_GT] = ACTIONS(5292), + [anon_sym_AMP_GT] = ACTIONS(5292), + [anon_sym_AMP_GT_GT] = ACTIONS(5292), + [anon_sym_LT_AMP] = ACTIONS(5292), + [anon_sym_GT_AMP] = ACTIONS(5292), + [anon_sym_LT_LT] = ACTIONS(5292), + [anon_sym_LT_LT_DASH] = ACTIONS(5292), + [anon_sym_LT_LT_LT] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2650] = { [aux_sym_concatenation_repeat1] = STATE(2652), @@ -70692,211 +70715,211 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [2659] = { - [sym__concat] = ACTIONS(3909), - [sym_variable_name] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6240), + [sym_comment] = ACTIONS(53), }, [2660] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6240), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2661] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(6242), [sym_comment] = ACTIONS(53), }, - [2662] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6244), + [2661] = { + [anon_sym_RBRACE] = ACTIONS(6242), [sym_comment] = ACTIONS(53), }, + [2662] = { + [sym_concatenation] = STATE(2700), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2700), + [anon_sym_RBRACE] = ACTIONS(6244), + [anon_sym_EQ] = ACTIONS(6246), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6248), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6246), + [anon_sym_COLON_QMARK] = ACTIONS(6246), + [anon_sym_COLON_DASH] = ACTIONS(6246), + [anon_sym_PERCENT] = ACTIONS(6246), + [anon_sym_DASH] = ACTIONS(6246), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [2663] = { - [anon_sym_RBRACE] = ACTIONS(6244), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [sym_variable_name] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [2664] = { - [sym_concatenation] = STATE(2701), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2701), - [anon_sym_RBRACE] = ACTIONS(6246), - [anon_sym_EQ] = ACTIONS(6248), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6250), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6248), - [anon_sym_COLON_QMARK] = ACTIONS(6248), - [anon_sym_COLON_DASH] = ACTIONS(6248), - [anon_sym_PERCENT] = ACTIONS(6248), - [anon_sym_DASH] = ACTIONS(6248), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2702), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2702), + [anon_sym_RBRACE] = ACTIONS(6250), + [anon_sym_EQ] = ACTIONS(6252), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6254), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6252), + [anon_sym_COLON_QMARK] = ACTIONS(6252), + [anon_sym_COLON_DASH] = ACTIONS(6252), + [anon_sym_PERCENT] = ACTIONS(6252), + [anon_sym_DASH] = ACTIONS(6252), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2665] = { - [sym__concat] = ACTIONS(3945), - [sym_variable_name] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [sym_variable_name] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [2666] = { - [sym_concatenation] = STATE(2703), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2703), - [anon_sym_RBRACE] = ACTIONS(6252), - [anon_sym_EQ] = ACTIONS(6254), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6256), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6254), - [anon_sym_COLON_QMARK] = ACTIONS(6254), - [anon_sym_COLON_DASH] = ACTIONS(6254), - [anon_sym_PERCENT] = ACTIONS(6254), - [anon_sym_DASH] = ACTIONS(6254), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2704), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2704), + [anon_sym_RBRACE] = ACTIONS(6256), + [anon_sym_EQ] = ACTIONS(6258), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6260), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6258), + [anon_sym_COLON_QMARK] = ACTIONS(6258), + [anon_sym_COLON_DASH] = ACTIONS(6258), + [anon_sym_PERCENT] = ACTIONS(6258), + [anon_sym_DASH] = ACTIONS(6258), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2667] = { - [sym__concat] = ACTIONS(3955), - [sym_variable_name] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [sym_variable_name] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [2668] = { - [sym_concatenation] = STATE(2705), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2705), - [anon_sym_RBRACE] = ACTIONS(6258), - [anon_sym_EQ] = ACTIONS(6260), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6262), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6260), - [anon_sym_COLON_QMARK] = ACTIONS(6260), - [anon_sym_COLON_DASH] = ACTIONS(6260), - [anon_sym_PERCENT] = ACTIONS(6260), - [anon_sym_DASH] = ACTIONS(6260), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6262), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2669] = { [sym__concat] = ACTIONS(3965), @@ -70924,33 +70947,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [2670] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6264), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2671] = { [sym__concat] = ACTIONS(3971), @@ -70978,33 +71001,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [2672] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6266), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2673] = { [sym__concat] = ACTIONS(3977), @@ -71105,208 +71128,208 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3812), }, [2677] = { - [sym__concat] = ACTIONS(3909), - [anon_sym_esac] = ACTIONS(3911), - [anon_sym_PIPE] = ACTIONS(3911), - [anon_sym_SEMI_SEMI] = ACTIONS(3911), - [anon_sym_PIPE_AMP] = ACTIONS(3911), - [anon_sym_AMP_AMP] = ACTIONS(3911), - [anon_sym_PIPE_PIPE] = ACTIONS(3911), - [sym__special_characters] = ACTIONS(3911), - [anon_sym_DQUOTE] = ACTIONS(3911), - [anon_sym_DOLLAR] = ACTIONS(3911), - [sym_raw_string] = ACTIONS(3911), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3911), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3911), - [anon_sym_BQUOTE] = ACTIONS(3911), - [anon_sym_LT_LPAREN] = ACTIONS(3911), - [anon_sym_GT_LPAREN] = ACTIONS(3911), - [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3911), - [sym_word] = ACTIONS(3911), - [anon_sym_SEMI] = ACTIONS(3911), - [anon_sym_LF] = ACTIONS(3909), - [anon_sym_AMP] = ACTIONS(3911), + [aux_sym_concatenation_repeat1] = STATE(1275), + [sym__concat] = ACTIONS(2836), + [anon_sym_RBRACE] = ACTIONS(6268), + [sym_comment] = ACTIONS(53), }, [2678] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6268), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), - [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), - }, - [2679] = { [aux_sym_concatenation_repeat1] = STATE(1275), [sym__concat] = ACTIONS(2836), [anon_sym_RBRACE] = ACTIONS(6270), [sym_comment] = ACTIONS(53), }, - [2680] = { - [aux_sym_concatenation_repeat1] = STATE(1275), - [sym__concat] = ACTIONS(2836), - [anon_sym_RBRACE] = ACTIONS(6272), + [2679] = { + [anon_sym_RBRACE] = ACTIONS(6270), [sym_comment] = ACTIONS(53), }, + [2680] = { + [sym_concatenation] = STATE(2711), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2711), + [anon_sym_RBRACE] = ACTIONS(6272), + [anon_sym_EQ] = ACTIONS(6274), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6276), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6274), + [anon_sym_COLON_QMARK] = ACTIONS(6274), + [anon_sym_COLON_DASH] = ACTIONS(6274), + [anon_sym_PERCENT] = ACTIONS(6274), + [anon_sym_DASH] = ACTIONS(6274), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), + [sym_comment] = ACTIONS(179), + [sym_word] = ACTIONS(767), + }, [2681] = { - [anon_sym_RBRACE] = ACTIONS(6272), - [sym_comment] = ACTIONS(53), + [sym__concat] = ACTIONS(3874), + [anon_sym_esac] = ACTIONS(3876), + [anon_sym_PIPE] = ACTIONS(3876), + [anon_sym_SEMI_SEMI] = ACTIONS(3876), + [anon_sym_PIPE_AMP] = ACTIONS(3876), + [anon_sym_AMP_AMP] = ACTIONS(3876), + [anon_sym_PIPE_PIPE] = ACTIONS(3876), + [sym__special_characters] = ACTIONS(3876), + [anon_sym_DQUOTE] = ACTIONS(3876), + [anon_sym_DOLLAR] = ACTIONS(3876), + [sym_raw_string] = ACTIONS(3876), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3876), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3876), + [anon_sym_BQUOTE] = ACTIONS(3876), + [anon_sym_LT_LPAREN] = ACTIONS(3876), + [anon_sym_GT_LPAREN] = ACTIONS(3876), + [sym_comment] = ACTIONS(179), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3876), + [sym_word] = ACTIONS(3876), + [anon_sym_SEMI] = ACTIONS(3876), + [anon_sym_LF] = ACTIONS(3874), + [anon_sym_AMP] = ACTIONS(3876), }, [2682] = { - [sym_concatenation] = STATE(2712), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2712), - [anon_sym_RBRACE] = ACTIONS(6274), - [anon_sym_EQ] = ACTIONS(6276), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6278), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6276), - [anon_sym_COLON_QMARK] = ACTIONS(6276), - [anon_sym_COLON_DASH] = ACTIONS(6276), - [anon_sym_PERCENT] = ACTIONS(6276), - [anon_sym_DASH] = ACTIONS(6276), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2713), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2713), + [anon_sym_RBRACE] = ACTIONS(6278), + [anon_sym_EQ] = ACTIONS(6280), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6282), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6280), + [anon_sym_COLON_QMARK] = ACTIONS(6280), + [anon_sym_COLON_DASH] = ACTIONS(6280), + [anon_sym_PERCENT] = ACTIONS(6280), + [anon_sym_DASH] = ACTIONS(6280), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2683] = { - [sym__concat] = ACTIONS(3945), - [anon_sym_esac] = ACTIONS(3947), - [anon_sym_PIPE] = ACTIONS(3947), - [anon_sym_SEMI_SEMI] = ACTIONS(3947), - [anon_sym_PIPE_AMP] = ACTIONS(3947), - [anon_sym_AMP_AMP] = ACTIONS(3947), - [anon_sym_PIPE_PIPE] = ACTIONS(3947), - [sym__special_characters] = ACTIONS(3947), - [anon_sym_DQUOTE] = ACTIONS(3947), - [anon_sym_DOLLAR] = ACTIONS(3947), - [sym_raw_string] = ACTIONS(3947), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3947), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3947), - [anon_sym_BQUOTE] = ACTIONS(3947), - [anon_sym_LT_LPAREN] = ACTIONS(3947), - [anon_sym_GT_LPAREN] = ACTIONS(3947), + [sym__concat] = ACTIONS(3884), + [anon_sym_esac] = ACTIONS(3886), + [anon_sym_PIPE] = ACTIONS(3886), + [anon_sym_SEMI_SEMI] = ACTIONS(3886), + [anon_sym_PIPE_AMP] = ACTIONS(3886), + [anon_sym_AMP_AMP] = ACTIONS(3886), + [anon_sym_PIPE_PIPE] = ACTIONS(3886), + [sym__special_characters] = ACTIONS(3886), + [anon_sym_DQUOTE] = ACTIONS(3886), + [anon_sym_DOLLAR] = ACTIONS(3886), + [sym_raw_string] = ACTIONS(3886), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3886), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3886), + [anon_sym_BQUOTE] = ACTIONS(3886), + [anon_sym_LT_LPAREN] = ACTIONS(3886), + [anon_sym_GT_LPAREN] = ACTIONS(3886), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3947), - [sym_word] = ACTIONS(3947), - [anon_sym_SEMI] = ACTIONS(3947), - [anon_sym_LF] = ACTIONS(3945), - [anon_sym_AMP] = ACTIONS(3947), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3886), + [sym_word] = ACTIONS(3886), + [anon_sym_SEMI] = ACTIONS(3886), + [anon_sym_LF] = ACTIONS(3884), + [anon_sym_AMP] = ACTIONS(3886), }, [2684] = { - [sym_concatenation] = STATE(2714), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2714), - [anon_sym_RBRACE] = ACTIONS(6280), - [anon_sym_EQ] = ACTIONS(6282), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6284), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6282), - [anon_sym_COLON_QMARK] = ACTIONS(6282), - [anon_sym_COLON_DASH] = ACTIONS(6282), - [anon_sym_PERCENT] = ACTIONS(6282), - [anon_sym_DASH] = ACTIONS(6282), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(2715), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(2715), + [anon_sym_RBRACE] = ACTIONS(6284), + [anon_sym_EQ] = ACTIONS(6286), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(6288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(6286), + [anon_sym_COLON_QMARK] = ACTIONS(6286), + [anon_sym_COLON_DASH] = ACTIONS(6286), + [anon_sym_PERCENT] = ACTIONS(6286), + [anon_sym_DASH] = ACTIONS(6286), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2685] = { - [sym__concat] = ACTIONS(3955), - [anon_sym_esac] = ACTIONS(3957), - [anon_sym_PIPE] = ACTIONS(3957), - [anon_sym_SEMI_SEMI] = ACTIONS(3957), - [anon_sym_PIPE_AMP] = ACTIONS(3957), - [anon_sym_AMP_AMP] = ACTIONS(3957), - [anon_sym_PIPE_PIPE] = ACTIONS(3957), - [sym__special_characters] = ACTIONS(3957), - [anon_sym_DQUOTE] = ACTIONS(3957), - [anon_sym_DOLLAR] = ACTIONS(3957), - [sym_raw_string] = ACTIONS(3957), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(3957), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(3957), - [anon_sym_BQUOTE] = ACTIONS(3957), - [anon_sym_LT_LPAREN] = ACTIONS(3957), - [anon_sym_GT_LPAREN] = ACTIONS(3957), + [sym__concat] = ACTIONS(3939), + [anon_sym_esac] = ACTIONS(3941), + [anon_sym_PIPE] = ACTIONS(3941), + [anon_sym_SEMI_SEMI] = ACTIONS(3941), + [anon_sym_PIPE_AMP] = ACTIONS(3941), + [anon_sym_AMP_AMP] = ACTIONS(3941), + [anon_sym_PIPE_PIPE] = ACTIONS(3941), + [sym__special_characters] = ACTIONS(3941), + [anon_sym_DQUOTE] = ACTIONS(3941), + [anon_sym_DOLLAR] = ACTIONS(3941), + [sym_raw_string] = ACTIONS(3941), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(3941), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(3941), + [anon_sym_BQUOTE] = ACTIONS(3941), + [anon_sym_LT_LPAREN] = ACTIONS(3941), + [anon_sym_GT_LPAREN] = ACTIONS(3941), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3957), - [sym_word] = ACTIONS(3957), - [anon_sym_SEMI] = ACTIONS(3957), - [anon_sym_LF] = ACTIONS(3955), - [anon_sym_AMP] = ACTIONS(3957), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(3941), + [sym_word] = ACTIONS(3941), + [anon_sym_SEMI] = ACTIONS(3941), + [anon_sym_LF] = ACTIONS(3939), + [anon_sym_AMP] = ACTIONS(3941), }, [2686] = { - [sym_concatenation] = STATE(2716), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(2716), - [anon_sym_RBRACE] = ACTIONS(6286), - [anon_sym_EQ] = ACTIONS(6288), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(6290), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(6288), - [anon_sym_COLON_QMARK] = ACTIONS(6288), - [anon_sym_COLON_DASH] = ACTIONS(6288), - [anon_sym_PERCENT] = ACTIONS(6288), - [anon_sym_DASH] = ACTIONS(6288), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6290), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2687] = { [sym__concat] = ACTIONS(3965), @@ -71333,33 +71356,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3967), }, [2688] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6292), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2689] = { [sym__concat] = ACTIONS(3971), @@ -71386,33 +71409,33 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(3973), }, [2690] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), [anon_sym_RBRACE] = ACTIONS(6294), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [sym_word] = ACTIONS(767), }, [2691] = { [sym__concat] = ACTIONS(3977), @@ -71580,241 +71603,241 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(1650), }, [2697] = { - [sym__concat] = ACTIONS(4756), - [sym_variable_name] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [sym_variable_name] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [2698] = { - [sym__concat] = ACTIONS(4764), - [sym_variable_name] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [sym_variable_name] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [2699] = { - [sym__concat] = ACTIONS(4768), - [sym_variable_name] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [sym_variable_name] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [2700] = { - [sym__concat] = ACTIONS(4772), - [sym_variable_name] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6296), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2701] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6296), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [sym_variable_name] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [2702] = { - [sym__concat] = ACTIONS(4778), - [sym_variable_name] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6298), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2703] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6298), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [sym_variable_name] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [2704] = { - [sym__concat] = ACTIONS(4784), - [sym_variable_name] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6300), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2705] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6300), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [sym_variable_name] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [2706] = { [sym__concat] = ACTIONS(4790), @@ -71867,235 +71890,235 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4796), }, [2708] = { - [sym__concat] = ACTIONS(4756), - [anon_sym_esac] = ACTIONS(4758), - [anon_sym_PIPE] = ACTIONS(4758), - [anon_sym_SEMI_SEMI] = ACTIONS(4758), - [anon_sym_PIPE_AMP] = ACTIONS(4758), - [anon_sym_AMP_AMP] = ACTIONS(4758), - [anon_sym_PIPE_PIPE] = ACTIONS(4758), - [sym__special_characters] = ACTIONS(4758), - [anon_sym_DQUOTE] = ACTIONS(4758), - [anon_sym_DOLLAR] = ACTIONS(4758), - [sym_raw_string] = ACTIONS(4758), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4758), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4758), - [anon_sym_BQUOTE] = ACTIONS(4758), - [anon_sym_LT_LPAREN] = ACTIONS(4758), - [anon_sym_GT_LPAREN] = ACTIONS(4758), + [sym__concat] = ACTIONS(4720), + [anon_sym_esac] = ACTIONS(4722), + [anon_sym_PIPE] = ACTIONS(4722), + [anon_sym_SEMI_SEMI] = ACTIONS(4722), + [anon_sym_PIPE_AMP] = ACTIONS(4722), + [anon_sym_AMP_AMP] = ACTIONS(4722), + [anon_sym_PIPE_PIPE] = ACTIONS(4722), + [sym__special_characters] = ACTIONS(4722), + [anon_sym_DQUOTE] = ACTIONS(4722), + [anon_sym_DOLLAR] = ACTIONS(4722), + [sym_raw_string] = ACTIONS(4722), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4722), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4722), + [anon_sym_BQUOTE] = ACTIONS(4722), + [anon_sym_LT_LPAREN] = ACTIONS(4722), + [anon_sym_GT_LPAREN] = ACTIONS(4722), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4758), - [sym_word] = ACTIONS(4758), - [anon_sym_SEMI] = ACTIONS(4758), - [anon_sym_LF] = ACTIONS(4756), - [anon_sym_AMP] = ACTIONS(4758), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4722), + [sym_word] = ACTIONS(4722), + [anon_sym_SEMI] = ACTIONS(4722), + [anon_sym_LF] = ACTIONS(4720), + [anon_sym_AMP] = ACTIONS(4722), }, [2709] = { - [sym__concat] = ACTIONS(4764), - [anon_sym_esac] = ACTIONS(4766), - [anon_sym_PIPE] = ACTIONS(4766), - [anon_sym_SEMI_SEMI] = ACTIONS(4766), - [anon_sym_PIPE_AMP] = ACTIONS(4766), - [anon_sym_AMP_AMP] = ACTIONS(4766), - [anon_sym_PIPE_PIPE] = ACTIONS(4766), - [sym__special_characters] = ACTIONS(4766), - [anon_sym_DQUOTE] = ACTIONS(4766), - [anon_sym_DOLLAR] = ACTIONS(4766), - [sym_raw_string] = ACTIONS(4766), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4766), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4766), - [anon_sym_BQUOTE] = ACTIONS(4766), - [anon_sym_LT_LPAREN] = ACTIONS(4766), - [anon_sym_GT_LPAREN] = ACTIONS(4766), + [sym__concat] = ACTIONS(4724), + [anon_sym_esac] = ACTIONS(4726), + [anon_sym_PIPE] = ACTIONS(4726), + [anon_sym_SEMI_SEMI] = ACTIONS(4726), + [anon_sym_PIPE_AMP] = ACTIONS(4726), + [anon_sym_AMP_AMP] = ACTIONS(4726), + [anon_sym_PIPE_PIPE] = ACTIONS(4726), + [sym__special_characters] = ACTIONS(4726), + [anon_sym_DQUOTE] = ACTIONS(4726), + [anon_sym_DOLLAR] = ACTIONS(4726), + [sym_raw_string] = ACTIONS(4726), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4726), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4726), + [anon_sym_BQUOTE] = ACTIONS(4726), + [anon_sym_LT_LPAREN] = ACTIONS(4726), + [anon_sym_GT_LPAREN] = ACTIONS(4726), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4766), - [sym_word] = ACTIONS(4766), - [anon_sym_SEMI] = ACTIONS(4766), - [anon_sym_LF] = ACTIONS(4764), - [anon_sym_AMP] = ACTIONS(4766), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4726), + [sym_word] = ACTIONS(4726), + [anon_sym_SEMI] = ACTIONS(4726), + [anon_sym_LF] = ACTIONS(4724), + [anon_sym_AMP] = ACTIONS(4726), }, [2710] = { - [sym__concat] = ACTIONS(4768), - [anon_sym_esac] = ACTIONS(4770), - [anon_sym_PIPE] = ACTIONS(4770), - [anon_sym_SEMI_SEMI] = ACTIONS(4770), - [anon_sym_PIPE_AMP] = ACTIONS(4770), - [anon_sym_AMP_AMP] = ACTIONS(4770), - [anon_sym_PIPE_PIPE] = ACTIONS(4770), - [sym__special_characters] = ACTIONS(4770), - [anon_sym_DQUOTE] = ACTIONS(4770), - [anon_sym_DOLLAR] = ACTIONS(4770), - [sym_raw_string] = ACTIONS(4770), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4770), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4770), - [anon_sym_BQUOTE] = ACTIONS(4770), - [anon_sym_LT_LPAREN] = ACTIONS(4770), - [anon_sym_GT_LPAREN] = ACTIONS(4770), + [sym__concat] = ACTIONS(4728), + [anon_sym_esac] = ACTIONS(4730), + [anon_sym_PIPE] = ACTIONS(4730), + [anon_sym_SEMI_SEMI] = ACTIONS(4730), + [anon_sym_PIPE_AMP] = ACTIONS(4730), + [anon_sym_AMP_AMP] = ACTIONS(4730), + [anon_sym_PIPE_PIPE] = ACTIONS(4730), + [sym__special_characters] = ACTIONS(4730), + [anon_sym_DQUOTE] = ACTIONS(4730), + [anon_sym_DOLLAR] = ACTIONS(4730), + [sym_raw_string] = ACTIONS(4730), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4730), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4730), + [anon_sym_BQUOTE] = ACTIONS(4730), + [anon_sym_LT_LPAREN] = ACTIONS(4730), + [anon_sym_GT_LPAREN] = ACTIONS(4730), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4770), - [sym_word] = ACTIONS(4770), - [anon_sym_SEMI] = ACTIONS(4770), - [anon_sym_LF] = ACTIONS(4768), - [anon_sym_AMP] = ACTIONS(4770), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4730), + [sym_word] = ACTIONS(4730), + [anon_sym_SEMI] = ACTIONS(4730), + [anon_sym_LF] = ACTIONS(4728), + [anon_sym_AMP] = ACTIONS(4730), }, [2711] = { - [sym__concat] = ACTIONS(4772), - [anon_sym_esac] = ACTIONS(4774), - [anon_sym_PIPE] = ACTIONS(4774), - [anon_sym_SEMI_SEMI] = ACTIONS(4774), - [anon_sym_PIPE_AMP] = ACTIONS(4774), - [anon_sym_AMP_AMP] = ACTIONS(4774), - [anon_sym_PIPE_PIPE] = ACTIONS(4774), - [sym__special_characters] = ACTIONS(4774), - [anon_sym_DQUOTE] = ACTIONS(4774), - [anon_sym_DOLLAR] = ACTIONS(4774), - [sym_raw_string] = ACTIONS(4774), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4774), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4774), - [anon_sym_BQUOTE] = ACTIONS(4774), - [anon_sym_LT_LPAREN] = ACTIONS(4774), - [anon_sym_GT_LPAREN] = ACTIONS(4774), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6302), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4774), - [sym_word] = ACTIONS(4774), - [anon_sym_SEMI] = ACTIONS(4774), - [anon_sym_LF] = ACTIONS(4772), - [anon_sym_AMP] = ACTIONS(4774), + [sym_word] = ACTIONS(767), }, [2712] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6302), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4734), + [anon_sym_esac] = ACTIONS(4736), + [anon_sym_PIPE] = ACTIONS(4736), + [anon_sym_SEMI_SEMI] = ACTIONS(4736), + [anon_sym_PIPE_AMP] = ACTIONS(4736), + [anon_sym_AMP_AMP] = ACTIONS(4736), + [anon_sym_PIPE_PIPE] = ACTIONS(4736), + [sym__special_characters] = ACTIONS(4736), + [anon_sym_DQUOTE] = ACTIONS(4736), + [anon_sym_DOLLAR] = ACTIONS(4736), + [sym_raw_string] = ACTIONS(4736), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4736), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4736), + [anon_sym_BQUOTE] = ACTIONS(4736), + [anon_sym_LT_LPAREN] = ACTIONS(4736), + [anon_sym_GT_LPAREN] = ACTIONS(4736), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4736), + [sym_word] = ACTIONS(4736), + [anon_sym_SEMI] = ACTIONS(4736), + [anon_sym_LF] = ACTIONS(4734), + [anon_sym_AMP] = ACTIONS(4736), }, [2713] = { - [sym__concat] = ACTIONS(4778), - [anon_sym_esac] = ACTIONS(4780), - [anon_sym_PIPE] = ACTIONS(4780), - [anon_sym_SEMI_SEMI] = ACTIONS(4780), - [anon_sym_PIPE_AMP] = ACTIONS(4780), - [anon_sym_AMP_AMP] = ACTIONS(4780), - [anon_sym_PIPE_PIPE] = ACTIONS(4780), - [sym__special_characters] = ACTIONS(4780), - [anon_sym_DQUOTE] = ACTIONS(4780), - [anon_sym_DOLLAR] = ACTIONS(4780), - [sym_raw_string] = ACTIONS(4780), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4780), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4780), - [anon_sym_BQUOTE] = ACTIONS(4780), - [anon_sym_LT_LPAREN] = ACTIONS(4780), - [anon_sym_GT_LPAREN] = ACTIONS(4780), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6304), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4780), - [sym_word] = ACTIONS(4780), - [anon_sym_SEMI] = ACTIONS(4780), - [anon_sym_LF] = ACTIONS(4778), - [anon_sym_AMP] = ACTIONS(4780), + [sym_word] = ACTIONS(767), }, [2714] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6304), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4740), + [anon_sym_esac] = ACTIONS(4742), + [anon_sym_PIPE] = ACTIONS(4742), + [anon_sym_SEMI_SEMI] = ACTIONS(4742), + [anon_sym_PIPE_AMP] = ACTIONS(4742), + [anon_sym_AMP_AMP] = ACTIONS(4742), + [anon_sym_PIPE_PIPE] = ACTIONS(4742), + [sym__special_characters] = ACTIONS(4742), + [anon_sym_DQUOTE] = ACTIONS(4742), + [anon_sym_DOLLAR] = ACTIONS(4742), + [sym_raw_string] = ACTIONS(4742), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4742), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4742), + [anon_sym_BQUOTE] = ACTIONS(4742), + [anon_sym_LT_LPAREN] = ACTIONS(4742), + [anon_sym_GT_LPAREN] = ACTIONS(4742), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4742), + [sym_word] = ACTIONS(4742), + [anon_sym_SEMI] = ACTIONS(4742), + [anon_sym_LF] = ACTIONS(4740), + [anon_sym_AMP] = ACTIONS(4742), }, [2715] = { - [sym__concat] = ACTIONS(4784), - [anon_sym_esac] = ACTIONS(4786), - [anon_sym_PIPE] = ACTIONS(4786), - [anon_sym_SEMI_SEMI] = ACTIONS(4786), - [anon_sym_PIPE_AMP] = ACTIONS(4786), - [anon_sym_AMP_AMP] = ACTIONS(4786), - [anon_sym_PIPE_PIPE] = ACTIONS(4786), - [sym__special_characters] = ACTIONS(4786), - [anon_sym_DQUOTE] = ACTIONS(4786), - [anon_sym_DOLLAR] = ACTIONS(4786), - [sym_raw_string] = ACTIONS(4786), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(4786), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(4786), - [anon_sym_BQUOTE] = ACTIONS(4786), - [anon_sym_LT_LPAREN] = ACTIONS(4786), - [anon_sym_GT_LPAREN] = ACTIONS(4786), + [sym_concatenation] = STATE(885), + [sym_string] = STATE(431), + [sym_simple_expansion] = STATE(431), + [sym_string_expansion] = STATE(431), + [sym_expansion] = STATE(431), + [sym_command_substitution] = STATE(431), + [sym_process_substitution] = STATE(431), + [aux_sym_expansion_repeat1] = STATE(885), + [anon_sym_RBRACE] = ACTIONS(6306), + [anon_sym_EQ] = ACTIONS(1812), + [sym__special_characters] = ACTIONS(747), + [anon_sym_DQUOTE] = ACTIONS(749), + [anon_sym_DOLLAR] = ACTIONS(751), + [sym_raw_string] = ACTIONS(753), + [anon_sym_POUND] = ACTIONS(1814), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(757), + [anon_sym_COLON] = ACTIONS(1812), + [anon_sym_COLON_QMARK] = ACTIONS(1812), + [anon_sym_COLON_DASH] = ACTIONS(1812), + [anon_sym_PERCENT] = ACTIONS(1812), + [anon_sym_DASH] = ACTIONS(1812), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(761), + [anon_sym_BQUOTE] = ACTIONS(763), + [anon_sym_LT_LPAREN] = ACTIONS(765), + [anon_sym_GT_LPAREN] = ACTIONS(765), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4786), - [sym_word] = ACTIONS(4786), - [anon_sym_SEMI] = ACTIONS(4786), - [anon_sym_LF] = ACTIONS(4784), - [anon_sym_AMP] = ACTIONS(4786), + [sym_word] = ACTIONS(767), }, [2716] = { - [sym_concatenation] = STATE(876), - [sym_string] = STATE(427), - [sym_simple_expansion] = STATE(427), - [sym_string_expansion] = STATE(427), - [sym_expansion] = STATE(427), - [sym_command_substitution] = STATE(427), - [sym_process_substitution] = STATE(427), - [aux_sym_expansion_repeat1] = STATE(876), - [anon_sym_RBRACE] = ACTIONS(6306), - [anon_sym_EQ] = ACTIONS(1788), - [sym__special_characters] = ACTIONS(739), - [anon_sym_DQUOTE] = ACTIONS(741), - [anon_sym_DOLLAR] = ACTIONS(743), - [sym_raw_string] = ACTIONS(745), - [anon_sym_POUND] = ACTIONS(1790), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(749), - [anon_sym_COLON] = ACTIONS(1788), - [anon_sym_COLON_QMARK] = ACTIONS(1788), - [anon_sym_COLON_DASH] = ACTIONS(1788), - [anon_sym_PERCENT] = ACTIONS(1788), - [anon_sym_DASH] = ACTIONS(1788), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(753), - [anon_sym_BQUOTE] = ACTIONS(755), - [anon_sym_LT_LPAREN] = ACTIONS(757), - [anon_sym_GT_LPAREN] = ACTIONS(757), + [sym__concat] = ACTIONS(4782), + [anon_sym_esac] = ACTIONS(4784), + [anon_sym_PIPE] = ACTIONS(4784), + [anon_sym_SEMI_SEMI] = ACTIONS(4784), + [anon_sym_PIPE_AMP] = ACTIONS(4784), + [anon_sym_AMP_AMP] = ACTIONS(4784), + [anon_sym_PIPE_PIPE] = ACTIONS(4784), + [sym__special_characters] = ACTIONS(4784), + [anon_sym_DQUOTE] = ACTIONS(4784), + [anon_sym_DOLLAR] = ACTIONS(4784), + [sym_raw_string] = ACTIONS(4784), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(4784), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(4784), + [anon_sym_BQUOTE] = ACTIONS(4784), + [anon_sym_LT_LPAREN] = ACTIONS(4784), + [anon_sym_GT_LPAREN] = ACTIONS(4784), [sym_comment] = ACTIONS(179), - [sym_word] = ACTIONS(759), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(4784), + [sym_word] = ACTIONS(4784), + [anon_sym_SEMI] = ACTIONS(4784), + [anon_sym_LF] = ACTIONS(4782), + [anon_sym_AMP] = ACTIONS(4784), }, [2717] = { [sym__concat] = ACTIONS(4790), @@ -72146,151 +72169,151 @@ static uint16_t ts_parse_table[STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AMP] = ACTIONS(4796), }, [2719] = { - [sym__concat] = ACTIONS(5310), - [sym_variable_name] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [sym_variable_name] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2720] = { - [sym__concat] = ACTIONS(5314), - [sym_variable_name] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [sym_variable_name] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2721] = { - [sym__concat] = ACTIONS(5318), - [sym_variable_name] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [sym_variable_name] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, [2722] = { - [sym__concat] = ACTIONS(5310), - [anon_sym_esac] = ACTIONS(5312), - [anon_sym_PIPE] = ACTIONS(5312), - [anon_sym_SEMI_SEMI] = ACTIONS(5312), - [anon_sym_PIPE_AMP] = ACTIONS(5312), - [anon_sym_AMP_AMP] = ACTIONS(5312), - [anon_sym_PIPE_PIPE] = ACTIONS(5312), - [sym__special_characters] = ACTIONS(5312), - [anon_sym_DQUOTE] = ACTIONS(5312), - [anon_sym_DOLLAR] = ACTIONS(5312), - [sym_raw_string] = ACTIONS(5312), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5312), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5312), - [anon_sym_BQUOTE] = ACTIONS(5312), - [anon_sym_LT_LPAREN] = ACTIONS(5312), - [anon_sym_GT_LPAREN] = ACTIONS(5312), + [sym__concat] = ACTIONS(5282), + [anon_sym_esac] = ACTIONS(5284), + [anon_sym_PIPE] = ACTIONS(5284), + [anon_sym_SEMI_SEMI] = ACTIONS(5284), + [anon_sym_PIPE_AMP] = ACTIONS(5284), + [anon_sym_AMP_AMP] = ACTIONS(5284), + [anon_sym_PIPE_PIPE] = ACTIONS(5284), + [sym__special_characters] = ACTIONS(5284), + [anon_sym_DQUOTE] = ACTIONS(5284), + [anon_sym_DOLLAR] = ACTIONS(5284), + [sym_raw_string] = ACTIONS(5284), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5284), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5284), + [anon_sym_BQUOTE] = ACTIONS(5284), + [anon_sym_LT_LPAREN] = ACTIONS(5284), + [anon_sym_GT_LPAREN] = ACTIONS(5284), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5312), - [sym_word] = ACTIONS(5312), - [anon_sym_SEMI] = ACTIONS(5312), - [anon_sym_LF] = ACTIONS(5310), - [anon_sym_AMP] = ACTIONS(5312), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5284), + [sym_word] = ACTIONS(5284), + [anon_sym_SEMI] = ACTIONS(5284), + [anon_sym_LF] = ACTIONS(5282), + [anon_sym_AMP] = ACTIONS(5284), }, [2723] = { - [sym__concat] = ACTIONS(5314), - [anon_sym_esac] = ACTIONS(5316), - [anon_sym_PIPE] = ACTIONS(5316), - [anon_sym_SEMI_SEMI] = ACTIONS(5316), - [anon_sym_PIPE_AMP] = ACTIONS(5316), - [anon_sym_AMP_AMP] = ACTIONS(5316), - [anon_sym_PIPE_PIPE] = ACTIONS(5316), - [sym__special_characters] = ACTIONS(5316), - [anon_sym_DQUOTE] = ACTIONS(5316), - [anon_sym_DOLLAR] = ACTIONS(5316), - [sym_raw_string] = ACTIONS(5316), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5316), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5316), - [anon_sym_BQUOTE] = ACTIONS(5316), - [anon_sym_LT_LPAREN] = ACTIONS(5316), - [anon_sym_GT_LPAREN] = ACTIONS(5316), + [sym__concat] = ACTIONS(5286), + [anon_sym_esac] = ACTIONS(5288), + [anon_sym_PIPE] = ACTIONS(5288), + [anon_sym_SEMI_SEMI] = ACTIONS(5288), + [anon_sym_PIPE_AMP] = ACTIONS(5288), + [anon_sym_AMP_AMP] = ACTIONS(5288), + [anon_sym_PIPE_PIPE] = ACTIONS(5288), + [sym__special_characters] = ACTIONS(5288), + [anon_sym_DQUOTE] = ACTIONS(5288), + [anon_sym_DOLLAR] = ACTIONS(5288), + [sym_raw_string] = ACTIONS(5288), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5288), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5288), + [anon_sym_BQUOTE] = ACTIONS(5288), + [anon_sym_LT_LPAREN] = ACTIONS(5288), + [anon_sym_GT_LPAREN] = ACTIONS(5288), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5316), - [sym_word] = ACTIONS(5316), - [anon_sym_SEMI] = ACTIONS(5316), - [anon_sym_LF] = ACTIONS(5314), - [anon_sym_AMP] = ACTIONS(5316), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5288), + [sym_word] = ACTIONS(5288), + [anon_sym_SEMI] = ACTIONS(5288), + [anon_sym_LF] = ACTIONS(5286), + [anon_sym_AMP] = ACTIONS(5288), }, [2724] = { - [sym__concat] = ACTIONS(5318), - [anon_sym_esac] = ACTIONS(5320), - [anon_sym_PIPE] = ACTIONS(5320), - [anon_sym_SEMI_SEMI] = ACTIONS(5320), - [anon_sym_PIPE_AMP] = ACTIONS(5320), - [anon_sym_AMP_AMP] = ACTIONS(5320), - [anon_sym_PIPE_PIPE] = ACTIONS(5320), - [sym__special_characters] = ACTIONS(5320), - [anon_sym_DQUOTE] = ACTIONS(5320), - [anon_sym_DOLLAR] = ACTIONS(5320), - [sym_raw_string] = ACTIONS(5320), - [anon_sym_DOLLAR_LBRACE] = ACTIONS(5320), - [anon_sym_DOLLAR_LPAREN] = ACTIONS(5320), - [anon_sym_BQUOTE] = ACTIONS(5320), - [anon_sym_LT_LPAREN] = ACTIONS(5320), - [anon_sym_GT_LPAREN] = ACTIONS(5320), + [sym__concat] = ACTIONS(5290), + [anon_sym_esac] = ACTIONS(5292), + [anon_sym_PIPE] = ACTIONS(5292), + [anon_sym_SEMI_SEMI] = ACTIONS(5292), + [anon_sym_PIPE_AMP] = ACTIONS(5292), + [anon_sym_AMP_AMP] = ACTIONS(5292), + [anon_sym_PIPE_PIPE] = ACTIONS(5292), + [sym__special_characters] = ACTIONS(5292), + [anon_sym_DQUOTE] = ACTIONS(5292), + [anon_sym_DOLLAR] = ACTIONS(5292), + [sym_raw_string] = ACTIONS(5292), + [anon_sym_DOLLAR_LBRACE] = ACTIONS(5292), + [anon_sym_DOLLAR_LPAREN] = ACTIONS(5292), + [anon_sym_BQUOTE] = ACTIONS(5292), + [anon_sym_LT_LPAREN] = ACTIONS(5292), + [anon_sym_GT_LPAREN] = ACTIONS(5292), [sym_comment] = ACTIONS(179), - [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5320), - [sym_word] = ACTIONS(5320), - [anon_sym_SEMI] = ACTIONS(5320), - [anon_sym_LF] = ACTIONS(5318), - [anon_sym_AMP] = ACTIONS(5320), + [aux_sym_SLASH_BSLASHw_PLUS_SLASH] = ACTIONS(5292), + [sym_word] = ACTIONS(5292), + [anon_sym_SEMI] = ACTIONS(5292), + [anon_sym_LF] = ACTIONS(5290), + [anon_sym_AMP] = ACTIONS(5292), }, }; @@ -72426,7 +72449,7 @@ static TSParseActionEntry ts_parse_actions[] = { [255] = {.count = 1, .reusable = true}, SHIFT(139), [257] = {.count = 1, .reusable = true}, SHIFT(140), [259] = {.count = 1, .reusable = false}, SHIFT(141), - [261] = {.count = 1, .reusable = false}, SHIFT(139), + [261] = {.count = 1, .reusable = false}, SHIFT(140), [263] = {.count = 1, .reusable = false}, SHIFT(146), [265] = {.count = 1, .reusable = false}, SHIFT(147), [267] = {.count = 1, .reusable = false}, SHIFT(148), @@ -72511,7 +72534,7 @@ static TSParseActionEntry ts_parse_actions[] = { [425] = {.count = 1, .reusable = true}, SHIFT(228), [427] = {.count = 1, .reusable = true}, SHIFT(229), [429] = {.count = 1, .reusable = false}, SHIFT(230), - [431] = {.count = 1, .reusable = false}, SHIFT(228), + [431] = {.count = 1, .reusable = false}, SHIFT(229), [433] = {.count = 1, .reusable = true}, SHIFT(241), [435] = {.count = 1, .reusable = true}, SHIFT(242), [437] = {.count = 1, .reusable = true}, SHIFT(244), @@ -72557,7 +72580,7 @@ static TSParseActionEntry ts_parse_actions[] = { [517] = {.count = 1, .reusable = true}, SHIFT(290), [519] = {.count = 1, .reusable = true}, SHIFT(291), [521] = {.count = 1, .reusable = false}, SHIFT(292), - [523] = {.count = 1, .reusable = false}, SHIFT(290), + [523] = {.count = 1, .reusable = false}, SHIFT(291), [525] = {.count = 1, .reusable = true}, SHIFT(303), [527] = {.count = 1, .reusable = true}, SHIFT(304), [529] = {.count = 1, .reusable = true}, SHIFT(305), @@ -72573,7 +72596,7 @@ static TSParseActionEntry ts_parse_actions[] = { [549] = {.count = 1, .reusable = true}, SHIFT(317), [551] = {.count = 1, .reusable = true}, SHIFT(318), [553] = {.count = 1, .reusable = false}, SHIFT(319), - [555] = {.count = 1, .reusable = false}, SHIFT(317), + [555] = {.count = 1, .reusable = false}, SHIFT(318), [557] = {.count = 1, .reusable = true}, SHIFT(330), [559] = {.count = 1, .reusable = true}, SHIFT(331), [561] = {.count = 1, .reusable = false}, SHIFT(330), @@ -72594,7 +72617,7 @@ static TSParseActionEntry ts_parse_actions[] = { [591] = {.count = 1, .reusable = true}, SHIFT(342), [593] = {.count = 1, .reusable = true}, SHIFT(343), [595] = {.count = 1, .reusable = false}, SHIFT(344), - [597] = {.count = 1, .reusable = false}, SHIFT(342), + [597] = {.count = 1, .reusable = false}, SHIFT(343), [599] = {.count = 1, .reusable = true}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), [601] = {.count = 1, .reusable = false}, REDUCE(aux_sym_declaration_command_repeat1, 1, .alias_sequence_id = 2), [603] = {.count = 1, .reusable = false}, REDUCE(sym_declaration_command, 2), @@ -72615,7 +72638,7 @@ static TSParseActionEntry ts_parse_actions[] = { [633] = {.count = 1, .reusable = true}, SHIFT(365), [635] = {.count = 1, .reusable = true}, SHIFT(366), [637] = {.count = 1, .reusable = false}, SHIFT(367), - [639] = {.count = 1, .reusable = false}, SHIFT(365), + [639] = {.count = 1, .reusable = false}, SHIFT(366), [641] = {.count = 1, .reusable = false}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), [643] = {.count = 1, .reusable = true}, REDUCE(aux_sym_unset_command_repeat1, 1, .alias_sequence_id = 2), [645] = {.count = 1, .reusable = false}, REDUCE(sym_unset_command, 2), @@ -72635,7 +72658,7 @@ static TSParseActionEntry ts_parse_actions[] = { [673] = {.count = 1, .reusable = true}, SHIFT(388), [675] = {.count = 1, .reusable = true}, SHIFT(389), [677] = {.count = 1, .reusable = false}, SHIFT(390), - [679] = {.count = 1, .reusable = false}, SHIFT(388), + [679] = {.count = 1, .reusable = false}, SHIFT(389), [681] = {.count = 1, .reusable = true}, SHIFT(401), [683] = {.count = 1, .reusable = true}, REDUCE(sym_concatenation, 2), [685] = {.count = 1, .reusable = false}, REDUCE(sym_concatenation, 2), @@ -72653,7 +72676,7 @@ static TSParseActionEntry ts_parse_actions[] = { [709] = {.count = 1, .reusable = true}, SHIFT(409), [711] = {.count = 1, .reusable = true}, SHIFT(410), [713] = {.count = 1, .reusable = false}, SHIFT(411), - [715] = {.count = 1, .reusable = false}, SHIFT(409), + [715] = {.count = 1, .reusable = false}, SHIFT(410), [717] = {.count = 1, .reusable = false}, SHIFT(419), [719] = {.count = 1, .reusable = true}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), [721] = {.count = 1, .reusable = false}, REDUCE(sym_simple_expansion, 2, .alias_sequence_id = 4), @@ -72664,22 +72687,22 @@ static TSParseActionEntry ts_parse_actions[] = { [731] = {.count = 1, .reusable = true}, SHIFT(421), [733] = {.count = 1, .reusable = true}, SHIFT(422), [735] = {.count = 1, .reusable = true}, SHIFT(423), - [737] = {.count = 1, .reusable = false}, SHIFT(433), - [739] = {.count = 1, .reusable = false}, SHIFT(424), - [741] = {.count = 1, .reusable = true}, SHIFT(425), - [743] = {.count = 1, .reusable = false}, SHIFT(426), - [745] = {.count = 1, .reusable = true}, SHIFT(427), - [747] = {.count = 1, .reusable = true}, SHIFT(433), - [749] = {.count = 1, .reusable = true}, SHIFT(428), - [751] = {.count = 1, .reusable = true}, SHIFT(429), - [753] = {.count = 1, .reusable = true}, SHIFT(430), - [755] = {.count = 1, .reusable = true}, SHIFT(431), + [737] = {.count = 1, .reusable = true}, SHIFT(424), + [739] = {.count = 1, .reusable = false}, SHIFT(425), + [741] = {.count = 1, .reusable = false}, SHIFT(424), + [743] = {.count = 1, .reusable = true}, SHIFT(427), + [745] = {.count = 1, .reusable = false}, SHIFT(437), + [747] = {.count = 1, .reusable = false}, SHIFT(428), + [749] = {.count = 1, .reusable = true}, SHIFT(429), + [751] = {.count = 1, .reusable = false}, SHIFT(430), + [753] = {.count = 1, .reusable = true}, SHIFT(431), + [755] = {.count = 1, .reusable = true}, SHIFT(437), [757] = {.count = 1, .reusable = true}, SHIFT(432), - [759] = {.count = 1, .reusable = false}, SHIFT(427), + [759] = {.count = 1, .reusable = true}, SHIFT(433), [761] = {.count = 1, .reusable = true}, SHIFT(434), [763] = {.count = 1, .reusable = true}, SHIFT(435), - [765] = {.count = 1, .reusable = false}, SHIFT(436), - [767] = {.count = 1, .reusable = false}, SHIFT(435), + [765] = {.count = 1, .reusable = true}, SHIFT(436), + [767] = {.count = 1, .reusable = false}, SHIFT(431), [769] = {.count = 1, .reusable = true}, SHIFT(438), [771] = {.count = 1, .reusable = false}, SHIFT(440), [773] = {.count = 1, .reusable = true}, SHIFT(440), @@ -72792,7 +72815,7 @@ static TSParseActionEntry ts_parse_actions[] = { [1015] = {.count = 1, .reusable = true}, SHIFT(520), [1017] = {.count = 1, .reusable = true}, SHIFT(521), [1019] = {.count = 1, .reusable = false}, SHIFT(522), - [1021] = {.count = 1, .reusable = false}, SHIFT(520), + [1021] = {.count = 1, .reusable = false}, SHIFT(521), [1023] = {.count = 1, .reusable = false}, SHIFT(533), [1025] = {.count = 1, .reusable = true}, SHIFT(533), [1027] = {.count = 1, .reusable = true}, SHIFT(198), @@ -72815,7 +72838,7 @@ static TSParseActionEntry ts_parse_actions[] = { [1061] = {.count = 1, .reusable = true}, SHIFT(546), [1063] = {.count = 1, .reusable = true}, SHIFT(547), [1065] = {.count = 1, .reusable = false}, SHIFT(548), - [1067] = {.count = 1, .reusable = false}, SHIFT(546), + [1067] = {.count = 1, .reusable = false}, SHIFT(547), [1069] = {.count = 1, .reusable = false}, SHIFT(559), [1071] = {.count = 1, .reusable = false}, SHIFT(560), [1073] = {.count = 1, .reusable = false}, SHIFT(561), @@ -72840,13 +72863,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1111] = {.count = 1, .reusable = true}, SHIFT(585), [1113] = {.count = 1, .reusable = true}, SHIFT(586), [1115] = {.count = 1, .reusable = true}, SHIFT(587), - [1117] = {.count = 1, .reusable = false}, SHIFT(589), - [1119] = {.count = 1, .reusable = true}, SHIFT(589), - [1121] = {.count = 1, .reusable = true}, SHIFT(588), - [1123] = {.count = 1, .reusable = true}, SHIFT(590), - [1125] = {.count = 1, .reusable = true}, SHIFT(591), - [1127] = {.count = 1, .reusable = false}, SHIFT(592), - [1129] = {.count = 1, .reusable = false}, SHIFT(591), + [1117] = {.count = 1, .reusable = true}, SHIFT(588), + [1119] = {.count = 1, .reusable = false}, SHIFT(589), + [1121] = {.count = 1, .reusable = false}, SHIFT(588), + [1123] = {.count = 1, .reusable = true}, SHIFT(591), + [1125] = {.count = 1, .reusable = false}, SHIFT(593), + [1127] = {.count = 1, .reusable = true}, SHIFT(593), + [1129] = {.count = 1, .reusable = true}, SHIFT(592), [1131] = {.count = 1, .reusable = true}, SHIFT(594), [1133] = {.count = 1, .reusable = false}, SHIFT(596), [1135] = {.count = 1, .reusable = true}, SHIFT(596), @@ -72903,13 +72926,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1237] = {.count = 1, .reusable = false}, SHIFT(659), [1239] = {.count = 1, .reusable = true}, SHIFT(660), [1241] = {.count = 1, .reusable = true}, SHIFT(661), - [1243] = {.count = 1, .reusable = false}, SHIFT(663), - [1245] = {.count = 1, .reusable = true}, SHIFT(663), - [1247] = {.count = 1, .reusable = true}, SHIFT(662), - [1249] = {.count = 1, .reusable = true}, SHIFT(664), - [1251] = {.count = 1, .reusable = true}, SHIFT(665), - [1253] = {.count = 1, .reusable = false}, SHIFT(666), - [1255] = {.count = 1, .reusable = false}, SHIFT(665), + [1243] = {.count = 1, .reusable = true}, SHIFT(662), + [1245] = {.count = 1, .reusable = false}, SHIFT(663), + [1247] = {.count = 1, .reusable = false}, SHIFT(662), + [1249] = {.count = 1, .reusable = true}, SHIFT(665), + [1251] = {.count = 1, .reusable = false}, SHIFT(667), + [1253] = {.count = 1, .reusable = true}, SHIFT(667), + [1255] = {.count = 1, .reusable = true}, SHIFT(666), [1257] = {.count = 1, .reusable = true}, SHIFT(668), [1259] = {.count = 1, .reusable = false}, SHIFT(670), [1261] = {.count = 1, .reusable = true}, SHIFT(670), @@ -72946,13 +72969,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1323] = {.count = 1, .reusable = false}, SHIFT(696), [1325] = {.count = 1, .reusable = true}, SHIFT(697), [1327] = {.count = 1, .reusable = true}, SHIFT(698), - [1329] = {.count = 1, .reusable = false}, SHIFT(700), - [1331] = {.count = 1, .reusable = true}, SHIFT(700), - [1333] = {.count = 1, .reusable = true}, SHIFT(699), - [1335] = {.count = 1, .reusable = true}, SHIFT(701), - [1337] = {.count = 1, .reusable = true}, SHIFT(702), - [1339] = {.count = 1, .reusable = false}, SHIFT(703), - [1341] = {.count = 1, .reusable = false}, SHIFT(702), + [1329] = {.count = 1, .reusable = true}, SHIFT(699), + [1331] = {.count = 1, .reusable = false}, SHIFT(700), + [1333] = {.count = 1, .reusable = false}, SHIFT(699), + [1335] = {.count = 1, .reusable = true}, SHIFT(702), + [1337] = {.count = 1, .reusable = false}, SHIFT(704), + [1339] = {.count = 1, .reusable = true}, SHIFT(704), + [1341] = {.count = 1, .reusable = true}, SHIFT(703), [1343] = {.count = 1, .reusable = true}, SHIFT(705), [1345] = {.count = 1, .reusable = false}, SHIFT(707), [1347] = {.count = 1, .reusable = true}, SHIFT(707), @@ -72990,13 +73013,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1411] = {.count = 1, .reusable = false}, SHIFT(731), [1413] = {.count = 1, .reusable = true}, SHIFT(732), [1415] = {.count = 1, .reusable = true}, SHIFT(733), - [1417] = {.count = 1, .reusable = false}, SHIFT(735), - [1419] = {.count = 1, .reusable = true}, SHIFT(735), - [1421] = {.count = 1, .reusable = true}, SHIFT(734), - [1423] = {.count = 1, .reusable = true}, SHIFT(736), - [1425] = {.count = 1, .reusable = true}, SHIFT(737), - [1427] = {.count = 1, .reusable = false}, SHIFT(738), - [1429] = {.count = 1, .reusable = false}, SHIFT(737), + [1417] = {.count = 1, .reusable = true}, SHIFT(734), + [1419] = {.count = 1, .reusable = false}, SHIFT(735), + [1421] = {.count = 1, .reusable = false}, SHIFT(734), + [1423] = {.count = 1, .reusable = true}, SHIFT(737), + [1425] = {.count = 1, .reusable = false}, SHIFT(739), + [1427] = {.count = 1, .reusable = true}, SHIFT(739), + [1429] = {.count = 1, .reusable = true}, SHIFT(738), [1431] = {.count = 1, .reusable = true}, SHIFT(740), [1433] = {.count = 1, .reusable = false}, SHIFT(742), [1435] = {.count = 1, .reusable = true}, SHIFT(742), @@ -73034,13 +73057,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1509] = {.count = 1, .reusable = false}, SHIFT(760), [1511] = {.count = 1, .reusable = true}, SHIFT(761), [1513] = {.count = 1, .reusable = true}, SHIFT(762), - [1515] = {.count = 1, .reusable = false}, SHIFT(764), - [1517] = {.count = 1, .reusable = true}, SHIFT(764), - [1519] = {.count = 1, .reusable = true}, SHIFT(763), - [1521] = {.count = 1, .reusable = true}, SHIFT(765), - [1523] = {.count = 1, .reusable = true}, SHIFT(766), - [1525] = {.count = 1, .reusable = false}, SHIFT(767), - [1527] = {.count = 1, .reusable = false}, SHIFT(766), + [1515] = {.count = 1, .reusable = true}, SHIFT(763), + [1517] = {.count = 1, .reusable = false}, SHIFT(764), + [1519] = {.count = 1, .reusable = false}, SHIFT(763), + [1521] = {.count = 1, .reusable = true}, SHIFT(766), + [1523] = {.count = 1, .reusable = false}, SHIFT(768), + [1525] = {.count = 1, .reusable = true}, SHIFT(768), + [1527] = {.count = 1, .reusable = true}, SHIFT(767), [1529] = {.count = 1, .reusable = true}, SHIFT(769), [1531] = {.count = 1, .reusable = false}, SHIFT(771), [1533] = {.count = 1, .reusable = true}, SHIFT(771), @@ -73073,13 +73096,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1596] = {.count = 1, .reusable = false}, SHIFT(789), [1598] = {.count = 1, .reusable = true}, SHIFT(790), [1600] = {.count = 1, .reusable = true}, SHIFT(791), - [1602] = {.count = 1, .reusable = false}, SHIFT(793), - [1604] = {.count = 1, .reusable = true}, SHIFT(793), - [1606] = {.count = 1, .reusable = true}, SHIFT(792), - [1608] = {.count = 1, .reusable = true}, SHIFT(794), - [1610] = {.count = 1, .reusable = true}, SHIFT(795), - [1612] = {.count = 1, .reusable = false}, SHIFT(796), - [1614] = {.count = 1, .reusable = false}, SHIFT(795), + [1602] = {.count = 1, .reusable = true}, SHIFT(792), + [1604] = {.count = 1, .reusable = false}, SHIFT(793), + [1606] = {.count = 1, .reusable = false}, SHIFT(792), + [1608] = {.count = 1, .reusable = true}, SHIFT(795), + [1610] = {.count = 1, .reusable = false}, SHIFT(797), + [1612] = {.count = 1, .reusable = true}, SHIFT(797), + [1614] = {.count = 1, .reusable = true}, SHIFT(796), [1616] = {.count = 1, .reusable = true}, SHIFT(798), [1618] = {.count = 1, .reusable = false}, SHIFT(800), [1620] = {.count = 1, .reusable = true}, SHIFT(800), @@ -73106,13 +73129,13 @@ static TSParseActionEntry ts_parse_actions[] = { [1663] = {.count = 1, .reusable = true}, REDUCE(aux_sym_string_repeat1, 2), [1665] = {.count = 1, .reusable = true}, SHIFT(816), [1667] = {.count = 1, .reusable = true}, SHIFT(817), - [1669] = {.count = 1, .reusable = false}, SHIFT(819), - [1671] = {.count = 1, .reusable = true}, SHIFT(819), - [1673] = {.count = 1, .reusable = true}, SHIFT(818), - [1675] = {.count = 1, .reusable = true}, SHIFT(820), - [1677] = {.count = 1, .reusable = true}, SHIFT(821), - [1679] = {.count = 1, .reusable = false}, SHIFT(822), - [1681] = {.count = 1, .reusable = false}, SHIFT(821), + [1669] = {.count = 1, .reusable = true}, SHIFT(818), + [1671] = {.count = 1, .reusable = false}, SHIFT(819), + [1673] = {.count = 1, .reusable = false}, SHIFT(818), + [1675] = {.count = 1, .reusable = true}, SHIFT(821), + [1677] = {.count = 1, .reusable = false}, SHIFT(823), + [1679] = {.count = 1, .reusable = true}, SHIFT(823), + [1681] = {.count = 1, .reusable = true}, SHIFT(822), [1683] = {.count = 1, .reusable = true}, SHIFT(824), [1685] = {.count = 1, .reusable = false}, SHIFT(826), [1687] = {.count = 1, .reusable = true}, SHIFT(826), @@ -73143,40 +73166,40 @@ static TSParseActionEntry ts_parse_actions[] = { [1742] = {.count = 1, .reusable = true}, SHIFT(848), [1744] = {.count = 1, .reusable = true}, SHIFT(849), [1746] = {.count = 1, .reusable = true}, SHIFT(850), - [1748] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1750] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), - [1752] = {.count = 1, .reusable = true}, SHIFT(852), - [1754] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1756] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), - [1758] = {.count = 1, .reusable = false}, SHIFT(854), - [1760] = {.count = 1, .reusable = false}, SHIFT(855), - [1762] = {.count = 1, .reusable = true}, SHIFT(857), - [1764] = {.count = 1, .reusable = true}, SHIFT(858), - [1766] = {.count = 1, .reusable = false}, SHIFT(859), - [1768] = {.count = 1, .reusable = false}, SHIFT(857), - [1770] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), - [1772] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), - [1774] = {.count = 1, .reusable = true}, SHIFT(860), + [1748] = {.count = 1, .reusable = true}, SHIFT(852), + [1750] = {.count = 1, .reusable = true}, SHIFT(853), + [1752] = {.count = 1, .reusable = false}, SHIFT(855), + [1754] = {.count = 1, .reusable = true}, SHIFT(855), + [1756] = {.count = 1, .reusable = true}, SHIFT(854), + [1758] = {.count = 1, .reusable = true}, SHIFT(856), + [1760] = {.count = 1, .reusable = false}, SHIFT(858), + [1762] = {.count = 1, .reusable = true}, SHIFT(858), + [1764] = {.count = 1, .reusable = true}, SHIFT(857), + [1766] = {.count = 1, .reusable = false}, SHIFT(860), + [1768] = {.count = 1, .reusable = true}, SHIFT(860), + [1770] = {.count = 1, .reusable = true}, SHIFT(859), + [1772] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), + [1774] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 4), [1776] = {.count = 1, .reusable = true}, SHIFT(861), - [1778] = {.count = 1, .reusable = true}, SHIFT(862), - [1780] = {.count = 1, .reusable = false}, SHIFT(863), - [1782] = {.count = 1, .reusable = false}, SHIFT(861), - [1784] = {.count = 1, .reusable = true}, SHIFT(865), - [1786] = {.count = 1, .reusable = true}, SHIFT(875), - [1788] = {.count = 1, .reusable = false}, SHIFT(876), - [1790] = {.count = 1, .reusable = true}, SHIFT(876), - [1792] = {.count = 1, .reusable = true}, SHIFT(877), - [1794] = {.count = 1, .reusable = true}, SHIFT(878), - [1796] = {.count = 1, .reusable = false}, SHIFT(880), - [1798] = {.count = 1, .reusable = true}, SHIFT(880), - [1800] = {.count = 1, .reusable = true}, SHIFT(879), - [1802] = {.count = 1, .reusable = true}, SHIFT(881), - [1804] = {.count = 1, .reusable = false}, SHIFT(883), - [1806] = {.count = 1, .reusable = true}, SHIFT(883), - [1808] = {.count = 1, .reusable = true}, SHIFT(882), - [1810] = {.count = 1, .reusable = false}, SHIFT(885), - [1812] = {.count = 1, .reusable = true}, SHIFT(885), - [1814] = {.count = 1, .reusable = true}, SHIFT(884), + [1778] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1780] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1, .alias_sequence_id = 1), + [1782] = {.count = 1, .reusable = false}, SHIFT(863), + [1784] = {.count = 1, .reusable = false}, SHIFT(864), + [1786] = {.count = 1, .reusable = true}, SHIFT(866), + [1788] = {.count = 1, .reusable = true}, SHIFT(867), + [1790] = {.count = 1, .reusable = false}, SHIFT(868), + [1792] = {.count = 1, .reusable = false}, SHIFT(866), + [1794] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 1), + [1796] = {.count = 1, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 1), + [1798] = {.count = 1, .reusable = true}, SHIFT(869), + [1800] = {.count = 1, .reusable = true}, SHIFT(870), + [1802] = {.count = 1, .reusable = true}, SHIFT(871), + [1804] = {.count = 1, .reusable = false}, SHIFT(872), + [1806] = {.count = 1, .reusable = false}, SHIFT(871), + [1808] = {.count = 1, .reusable = true}, SHIFT(874), + [1810] = {.count = 1, .reusable = true}, SHIFT(884), + [1812] = {.count = 1, .reusable = false}, SHIFT(885), + [1814] = {.count = 1, .reusable = true}, SHIFT(885), [1816] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), [1818] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 3, .alias_sequence_id = 5), [1820] = {.count = 1, .reusable = true}, SHIFT(886), @@ -73220,7 +73243,7 @@ static TSParseActionEntry ts_parse_actions[] = { [1896] = {.count = 1, .reusable = true}, SHIFT(914), [1898] = {.count = 1, .reusable = true}, SHIFT(915), [1900] = {.count = 1, .reusable = false}, SHIFT(916), - [1902] = {.count = 1, .reusable = false}, SHIFT(914), + [1902] = {.count = 1, .reusable = false}, SHIFT(915), [1904] = {.count = 1, .reusable = true}, SHIFT(919), [1906] = {.count = 1, .reusable = true}, SHIFT(918), [1908] = {.count = 1, .reusable = true}, SHIFT(920), @@ -73276,20 +73299,20 @@ static TSParseActionEntry ts_parse_actions[] = { [2021] = {.count = 1, .reusable = true}, SHIFT(940), [2023] = {.count = 1, .reusable = true}, SHIFT(941), [2025] = {.count = 1, .reusable = false}, SHIFT(942), - [2027] = {.count = 1, .reusable = false}, SHIFT(940), + [2027] = {.count = 1, .reusable = false}, SHIFT(941), [2029] = {.count = 1, .reusable = true}, SHIFT(953), [2031] = {.count = 1, .reusable = true}, SHIFT(955), [2033] = {.count = 1, .reusable = false}, SHIFT(957), [2035] = {.count = 1, .reusable = false}, SHIFT(958), [2037] = {.count = 1, .reusable = true}, SHIFT(959), [2039] = {.count = 1, .reusable = true}, SHIFT(960), - [2041] = {.count = 1, .reusable = false}, SHIFT(962), - [2043] = {.count = 1, .reusable = true}, SHIFT(962), - [2045] = {.count = 1, .reusable = true}, SHIFT(961), - [2047] = {.count = 1, .reusable = true}, SHIFT(963), - [2049] = {.count = 1, .reusable = true}, SHIFT(964), - [2051] = {.count = 1, .reusable = false}, SHIFT(965), - [2053] = {.count = 1, .reusable = false}, SHIFT(964), + [2041] = {.count = 1, .reusable = true}, SHIFT(961), + [2043] = {.count = 1, .reusable = false}, SHIFT(962), + [2045] = {.count = 1, .reusable = false}, SHIFT(961), + [2047] = {.count = 1, .reusable = true}, SHIFT(964), + [2049] = {.count = 1, .reusable = false}, SHIFT(966), + [2051] = {.count = 1, .reusable = true}, SHIFT(966), + [2053] = {.count = 1, .reusable = true}, SHIFT(965), [2055] = {.count = 1, .reusable = true}, SHIFT(967), [2057] = {.count = 1, .reusable = false}, SHIFT(969), [2059] = {.count = 1, .reusable = true}, SHIFT(969), @@ -73328,13 +73351,13 @@ static TSParseActionEntry ts_parse_actions[] = { [2125] = {.count = 1, .reusable = false}, SHIFT(1001), [2127] = {.count = 1, .reusable = true}, SHIFT(1002), [2129] = {.count = 1, .reusable = true}, SHIFT(1003), - [2131] = {.count = 1, .reusable = false}, SHIFT(1005), - [2133] = {.count = 1, .reusable = true}, SHIFT(1005), - [2135] = {.count = 1, .reusable = true}, SHIFT(1004), - [2137] = {.count = 1, .reusable = true}, SHIFT(1006), - [2139] = {.count = 1, .reusable = true}, SHIFT(1007), - [2141] = {.count = 1, .reusable = false}, SHIFT(1008), - [2143] = {.count = 1, .reusable = false}, SHIFT(1007), + [2131] = {.count = 1, .reusable = true}, SHIFT(1004), + [2133] = {.count = 1, .reusable = false}, SHIFT(1005), + [2135] = {.count = 1, .reusable = false}, SHIFT(1004), + [2137] = {.count = 1, .reusable = true}, SHIFT(1007), + [2139] = {.count = 1, .reusable = false}, SHIFT(1009), + [2141] = {.count = 1, .reusable = true}, SHIFT(1009), + [2143] = {.count = 1, .reusable = true}, SHIFT(1008), [2145] = {.count = 1, .reusable = true}, SHIFT(1010), [2147] = {.count = 1, .reusable = false}, SHIFT(1012), [2149] = {.count = 1, .reusable = true}, SHIFT(1012), @@ -73393,18 +73416,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2256] = {.count = 1, .reusable = true}, SHIFT(1059), [2258] = {.count = 1, .reusable = true}, SHIFT(1061), [2260] = {.count = 1, .reusable = true}, SHIFT(1062), - [2262] = {.count = 1, .reusable = true}, SHIFT(1063), + [2262] = {.count = 1, .reusable = false}, SHIFT(1064), [2264] = {.count = 1, .reusable = true}, SHIFT(1064), - [2266] = {.count = 1, .reusable = false}, SHIFT(1066), - [2268] = {.count = 1, .reusable = true}, SHIFT(1066), - [2270] = {.count = 1, .reusable = true}, SHIFT(1065), + [2266] = {.count = 1, .reusable = true}, SHIFT(1063), + [2268] = {.count = 1, .reusable = true}, SHIFT(1065), + [2270] = {.count = 1, .reusable = false}, SHIFT(1067), [2272] = {.count = 1, .reusable = true}, SHIFT(1067), - [2274] = {.count = 1, .reusable = false}, SHIFT(1069), - [2276] = {.count = 1, .reusable = true}, SHIFT(1069), - [2278] = {.count = 1, .reusable = true}, SHIFT(1068), - [2280] = {.count = 1, .reusable = false}, SHIFT(1071), - [2282] = {.count = 1, .reusable = true}, SHIFT(1071), - [2284] = {.count = 1, .reusable = true}, SHIFT(1070), + [2274] = {.count = 1, .reusable = true}, SHIFT(1066), + [2276] = {.count = 1, .reusable = false}, SHIFT(1069), + [2278] = {.count = 1, .reusable = true}, SHIFT(1069), + [2280] = {.count = 1, .reusable = true}, SHIFT(1068), + [2282] = {.count = 1, .reusable = true}, SHIFT(1070), + [2284] = {.count = 1, .reusable = true}, SHIFT(1071), [2286] = {.count = 1, .reusable = true}, SHIFT(1072), [2288] = {.count = 1, .reusable = true}, SHIFT(1073), [2290] = {.count = 1, .reusable = true}, SHIFT(1074), @@ -73464,18 +73487,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2410] = {.count = 1, .reusable = true}, SHIFT(1113), [2412] = {.count = 1, .reusable = true}, SHIFT(1115), [2414] = {.count = 1, .reusable = true}, SHIFT(1116), - [2416] = {.count = 1, .reusable = true}, SHIFT(1117), + [2416] = {.count = 1, .reusable = false}, SHIFT(1118), [2418] = {.count = 1, .reusable = true}, SHIFT(1118), - [2420] = {.count = 1, .reusable = false}, SHIFT(1120), - [2422] = {.count = 1, .reusable = true}, SHIFT(1120), - [2424] = {.count = 1, .reusable = true}, SHIFT(1119), + [2420] = {.count = 1, .reusable = true}, SHIFT(1117), + [2422] = {.count = 1, .reusable = true}, SHIFT(1119), + [2424] = {.count = 1, .reusable = false}, SHIFT(1121), [2426] = {.count = 1, .reusable = true}, SHIFT(1121), - [2428] = {.count = 1, .reusable = false}, SHIFT(1123), - [2430] = {.count = 1, .reusable = true}, SHIFT(1123), - [2432] = {.count = 1, .reusable = true}, SHIFT(1122), - [2434] = {.count = 1, .reusable = false}, SHIFT(1125), - [2436] = {.count = 1, .reusable = true}, SHIFT(1125), - [2438] = {.count = 1, .reusable = true}, SHIFT(1124), + [2428] = {.count = 1, .reusable = true}, SHIFT(1120), + [2430] = {.count = 1, .reusable = false}, SHIFT(1123), + [2432] = {.count = 1, .reusable = true}, SHIFT(1123), + [2434] = {.count = 1, .reusable = true}, SHIFT(1122), + [2436] = {.count = 1, .reusable = true}, SHIFT(1124), + [2438] = {.count = 1, .reusable = true}, SHIFT(1125), [2440] = {.count = 1, .reusable = true}, SHIFT(1126), [2442] = {.count = 1, .reusable = true}, SHIFT(1127), [2444] = {.count = 1, .reusable = true}, SHIFT(1128), @@ -73513,18 +73536,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2509] = {.count = 1, .reusable = true}, SHIFT(1152), [2511] = {.count = 1, .reusable = true}, SHIFT(1154), [2513] = {.count = 1, .reusable = true}, SHIFT(1155), - [2515] = {.count = 1, .reusable = true}, SHIFT(1156), + [2515] = {.count = 1, .reusable = false}, SHIFT(1157), [2517] = {.count = 1, .reusable = true}, SHIFT(1157), - [2519] = {.count = 1, .reusable = false}, SHIFT(1159), - [2521] = {.count = 1, .reusable = true}, SHIFT(1159), - [2523] = {.count = 1, .reusable = true}, SHIFT(1158), + [2519] = {.count = 1, .reusable = true}, SHIFT(1156), + [2521] = {.count = 1, .reusable = true}, SHIFT(1158), + [2523] = {.count = 1, .reusable = false}, SHIFT(1160), [2525] = {.count = 1, .reusable = true}, SHIFT(1160), - [2527] = {.count = 1, .reusable = false}, SHIFT(1162), - [2529] = {.count = 1, .reusable = true}, SHIFT(1162), - [2531] = {.count = 1, .reusable = true}, SHIFT(1161), - [2533] = {.count = 1, .reusable = false}, SHIFT(1164), - [2535] = {.count = 1, .reusable = true}, SHIFT(1164), - [2537] = {.count = 1, .reusable = true}, SHIFT(1163), + [2527] = {.count = 1, .reusable = true}, SHIFT(1159), + [2529] = {.count = 1, .reusable = false}, SHIFT(1162), + [2531] = {.count = 1, .reusable = true}, SHIFT(1162), + [2533] = {.count = 1, .reusable = true}, SHIFT(1161), + [2535] = {.count = 1, .reusable = true}, SHIFT(1163), + [2537] = {.count = 1, .reusable = true}, SHIFT(1164), [2539] = {.count = 1, .reusable = true}, SHIFT(1165), [2541] = {.count = 1, .reusable = true}, SHIFT(1166), [2543] = {.count = 1, .reusable = true}, SHIFT(1167), @@ -73546,18 +73569,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2576] = {.count = 1, .reusable = true}, SHIFT(1178), [2578] = {.count = 1, .reusable = true}, SHIFT(1180), [2580] = {.count = 1, .reusable = true}, SHIFT(1181), - [2582] = {.count = 1, .reusable = true}, SHIFT(1182), + [2582] = {.count = 1, .reusable = false}, SHIFT(1183), [2584] = {.count = 1, .reusable = true}, SHIFT(1183), - [2586] = {.count = 1, .reusable = false}, SHIFT(1185), - [2588] = {.count = 1, .reusable = true}, SHIFT(1185), - [2590] = {.count = 1, .reusable = true}, SHIFT(1184), + [2586] = {.count = 1, .reusable = true}, SHIFT(1182), + [2588] = {.count = 1, .reusable = true}, SHIFT(1184), + [2590] = {.count = 1, .reusable = false}, SHIFT(1186), [2592] = {.count = 1, .reusable = true}, SHIFT(1186), - [2594] = {.count = 1, .reusable = false}, SHIFT(1188), - [2596] = {.count = 1, .reusable = true}, SHIFT(1188), - [2598] = {.count = 1, .reusable = true}, SHIFT(1187), - [2600] = {.count = 1, .reusable = false}, SHIFT(1190), - [2602] = {.count = 1, .reusable = true}, SHIFT(1190), - [2604] = {.count = 1, .reusable = true}, SHIFT(1189), + [2594] = {.count = 1, .reusable = true}, SHIFT(1185), + [2596] = {.count = 1, .reusable = false}, SHIFT(1188), + [2598] = {.count = 1, .reusable = true}, SHIFT(1188), + [2600] = {.count = 1, .reusable = true}, SHIFT(1187), + [2602] = {.count = 1, .reusable = true}, SHIFT(1189), + [2604] = {.count = 1, .reusable = true}, SHIFT(1190), [2606] = {.count = 1, .reusable = true}, SHIFT(1191), [2608] = {.count = 1, .reusable = true}, SHIFT(1192), [2610] = {.count = 1, .reusable = true}, SHIFT(1193), @@ -73578,18 +73601,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2641] = {.count = 1, .reusable = true}, SHIFT(1202), [2643] = {.count = 1, .reusable = true}, SHIFT(1204), [2645] = {.count = 1, .reusable = true}, SHIFT(1205), - [2647] = {.count = 1, .reusable = true}, SHIFT(1206), + [2647] = {.count = 1, .reusable = false}, SHIFT(1207), [2649] = {.count = 1, .reusable = true}, SHIFT(1207), - [2651] = {.count = 1, .reusable = false}, SHIFT(1209), - [2653] = {.count = 1, .reusable = true}, SHIFT(1209), - [2655] = {.count = 1, .reusable = true}, SHIFT(1208), + [2651] = {.count = 1, .reusable = true}, SHIFT(1206), + [2653] = {.count = 1, .reusable = true}, SHIFT(1208), + [2655] = {.count = 1, .reusable = false}, SHIFT(1210), [2657] = {.count = 1, .reusable = true}, SHIFT(1210), - [2659] = {.count = 1, .reusable = false}, SHIFT(1212), - [2661] = {.count = 1, .reusable = true}, SHIFT(1212), - [2663] = {.count = 1, .reusable = true}, SHIFT(1211), - [2665] = {.count = 1, .reusable = false}, SHIFT(1214), - [2667] = {.count = 1, .reusable = true}, SHIFT(1214), - [2669] = {.count = 1, .reusable = true}, SHIFT(1213), + [2659] = {.count = 1, .reusable = true}, SHIFT(1209), + [2661] = {.count = 1, .reusable = false}, SHIFT(1212), + [2663] = {.count = 1, .reusable = true}, SHIFT(1212), + [2665] = {.count = 1, .reusable = true}, SHIFT(1211), + [2667] = {.count = 1, .reusable = true}, SHIFT(1213), + [2669] = {.count = 1, .reusable = true}, SHIFT(1214), [2671] = {.count = 1, .reusable = true}, SHIFT(1215), [2673] = {.count = 1, .reusable = true}, SHIFT(1216), [2675] = {.count = 1, .reusable = true}, SHIFT(1217), @@ -73610,18 +73633,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2706] = {.count = 1, .reusable = true}, SHIFT(1226), [2708] = {.count = 1, .reusable = true}, SHIFT(1228), [2710] = {.count = 1, .reusable = true}, SHIFT(1229), - [2712] = {.count = 1, .reusable = true}, SHIFT(1230), + [2712] = {.count = 1, .reusable = false}, SHIFT(1231), [2714] = {.count = 1, .reusable = true}, SHIFT(1231), - [2716] = {.count = 1, .reusable = false}, SHIFT(1233), - [2718] = {.count = 1, .reusable = true}, SHIFT(1233), - [2720] = {.count = 1, .reusable = true}, SHIFT(1232), + [2716] = {.count = 1, .reusable = true}, SHIFT(1230), + [2718] = {.count = 1, .reusable = true}, SHIFT(1232), + [2720] = {.count = 1, .reusable = false}, SHIFT(1234), [2722] = {.count = 1, .reusable = true}, SHIFT(1234), - [2724] = {.count = 1, .reusable = false}, SHIFT(1236), - [2726] = {.count = 1, .reusable = true}, SHIFT(1236), - [2728] = {.count = 1, .reusable = true}, SHIFT(1235), - [2730] = {.count = 1, .reusable = false}, SHIFT(1238), - [2732] = {.count = 1, .reusable = true}, SHIFT(1238), - [2734] = {.count = 1, .reusable = true}, SHIFT(1237), + [2724] = {.count = 1, .reusable = true}, SHIFT(1233), + [2726] = {.count = 1, .reusable = false}, SHIFT(1236), + [2728] = {.count = 1, .reusable = true}, SHIFT(1236), + [2730] = {.count = 1, .reusable = true}, SHIFT(1235), + [2732] = {.count = 1, .reusable = true}, SHIFT(1237), + [2734] = {.count = 1, .reusable = true}, SHIFT(1238), [2736] = {.count = 1, .reusable = true}, SHIFT(1239), [2738] = {.count = 1, .reusable = true}, SHIFT(1240), [2740] = {.count = 1, .reusable = true}, SHIFT(1241), @@ -73642,18 +73665,18 @@ static TSParseActionEntry ts_parse_actions[] = { [2770] = {.count = 1, .reusable = true}, SHIFT(1249), [2772] = {.count = 1, .reusable = true}, SHIFT(1251), [2774] = {.count = 1, .reusable = true}, SHIFT(1252), - [2776] = {.count = 1, .reusable = true}, SHIFT(1253), + [2776] = {.count = 1, .reusable = false}, SHIFT(1254), [2778] = {.count = 1, .reusable = true}, SHIFT(1254), - [2780] = {.count = 1, .reusable = false}, SHIFT(1256), - [2782] = {.count = 1, .reusable = true}, SHIFT(1256), - [2784] = {.count = 1, .reusable = true}, SHIFT(1255), + [2780] = {.count = 1, .reusable = true}, SHIFT(1253), + [2782] = {.count = 1, .reusable = true}, SHIFT(1255), + [2784] = {.count = 1, .reusable = false}, SHIFT(1257), [2786] = {.count = 1, .reusable = true}, SHIFT(1257), - [2788] = {.count = 1, .reusable = false}, SHIFT(1259), - [2790] = {.count = 1, .reusable = true}, SHIFT(1259), - [2792] = {.count = 1, .reusable = true}, SHIFT(1258), - [2794] = {.count = 1, .reusable = false}, SHIFT(1261), - [2796] = {.count = 1, .reusable = true}, SHIFT(1261), - [2798] = {.count = 1, .reusable = true}, SHIFT(1260), + [2788] = {.count = 1, .reusable = true}, SHIFT(1256), + [2790] = {.count = 1, .reusable = false}, SHIFT(1259), + [2792] = {.count = 1, .reusable = true}, SHIFT(1259), + [2794] = {.count = 1, .reusable = true}, SHIFT(1258), + [2796] = {.count = 1, .reusable = true}, SHIFT(1260), + [2798] = {.count = 1, .reusable = true}, SHIFT(1261), [2800] = {.count = 1, .reusable = true}, SHIFT(1262), [2802] = {.count = 1, .reusable = true}, SHIFT(1263), [2804] = {.count = 1, .reusable = true}, SHIFT(1264), @@ -73685,63 +73708,63 @@ static TSParseActionEntry ts_parse_actions[] = { [2856] = {.count = 1, .reusable = true}, SHIFT(1284), [2858] = {.count = 1, .reusable = true}, SHIFT(1285), [2860] = {.count = 1, .reusable = false}, SHIFT(1286), - [2862] = {.count = 1, .reusable = false}, SHIFT(1284), - [2864] = {.count = 1, .reusable = true}, SHIFT(1297), - [2866] = {.count = 1, .reusable = false}, SHIFT(1299), - [2868] = {.count = 1, .reusable = false}, SHIFT(1300), - [2870] = {.count = 1, .reusable = true}, SHIFT(1301), - [2872] = {.count = 1, .reusable = true}, SHIFT(1302), - [2874] = {.count = 1, .reusable = false}, SHIFT(1304), - [2876] = {.count = 1, .reusable = true}, SHIFT(1304), - [2878] = {.count = 1, .reusable = true}, SHIFT(1303), - [2880] = {.count = 1, .reusable = true}, SHIFT(1305), - [2882] = {.count = 1, .reusable = true}, SHIFT(1306), - [2884] = {.count = 1, .reusable = false}, SHIFT(1307), - [2886] = {.count = 1, .reusable = false}, SHIFT(1306), - [2888] = {.count = 1, .reusable = true}, SHIFT(1309), - [2890] = {.count = 1, .reusable = false}, SHIFT(1311), - [2892] = {.count = 1, .reusable = true}, SHIFT(1311), + [2862] = {.count = 1, .reusable = false}, SHIFT(1285), + [2864] = {.count = 1, .reusable = false}, SHIFT(1297), + [2866] = {.count = 1, .reusable = true}, SHIFT(1298), + [2868] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2870] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), + [2872] = {.count = 1, .reusable = true}, SHIFT(1300), + [2874] = {.count = 1, .reusable = true}, SHIFT(1301), + [2876] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2878] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), + [2880] = {.count = 1, .reusable = true}, SHIFT(1302), + [2882] = {.count = 1, .reusable = true}, SHIFT(1303), + [2884] = {.count = 1, .reusable = true}, SHIFT(1304), + [2886] = {.count = 1, .reusable = true}, SHIFT(1305), + [2888] = {.count = 1, .reusable = false}, SHIFT(1307), + [2890] = {.count = 1, .reusable = false}, SHIFT(1308), + [2892] = {.count = 1, .reusable = true}, SHIFT(1309), [2894] = {.count = 1, .reusable = true}, SHIFT(1310), - [2896] = {.count = 1, .reusable = true}, SHIFT(1312), - [2898] = {.count = 1, .reusable = false}, SHIFT(1314), - [2900] = {.count = 1, .reusable = true}, SHIFT(1314), - [2902] = {.count = 1, .reusable = true}, SHIFT(1313), - [2904] = {.count = 1, .reusable = true}, SHIFT(1315), - [2906] = {.count = 1, .reusable = false}, SHIFT(1316), - [2908] = {.count = 1, .reusable = true}, SHIFT(1316), - [2910] = {.count = 1, .reusable = false}, SHIFT(1317), - [2912] = {.count = 1, .reusable = false}, SHIFT(1318), - [2914] = {.count = 1, .reusable = true}, SHIFT(1318), - [2916] = {.count = 1, .reusable = false}, SHIFT(1321), - [2918] = {.count = 1, .reusable = true}, SHIFT(1321), - [2920] = {.count = 1, .reusable = false}, SHIFT(1324), - [2922] = {.count = 1, .reusable = false}, SHIFT(1325), - [2924] = {.count = 1, .reusable = true}, SHIFT(1325), - [2926] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2928] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), - [2930] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), - [2932] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(876), - [2935] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(424), - [2938] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(425), - [2941] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(426), - [2944] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(427), - [2947] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(876), - [2950] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(428), - [2953] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(430), - [2956] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), - [2959] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), - [2962] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(427), - [2965] = {.count = 1, .reusable = false}, SHIFT(1328), - [2967] = {.count = 1, .reusable = true}, SHIFT(1329), - [2969] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2971] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 7), - [2973] = {.count = 1, .reusable = true}, SHIFT(1331), - [2975] = {.count = 1, .reusable = true}, SHIFT(1332), - [2977] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2979] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 8), - [2981] = {.count = 1, .reusable = true}, SHIFT(1333), - [2983] = {.count = 1, .reusable = true}, SHIFT(1334), - [2985] = {.count = 1, .reusable = true}, SHIFT(1335), + [2896] = {.count = 1, .reusable = true}, SHIFT(1311), + [2898] = {.count = 1, .reusable = false}, SHIFT(1312), + [2900] = {.count = 1, .reusable = false}, SHIFT(1311), + [2902] = {.count = 1, .reusable = true}, SHIFT(1314), + [2904] = {.count = 1, .reusable = false}, SHIFT(1316), + [2906] = {.count = 1, .reusable = true}, SHIFT(1316), + [2908] = {.count = 1, .reusable = true}, SHIFT(1315), + [2910] = {.count = 1, .reusable = true}, SHIFT(1317), + [2912] = {.count = 1, .reusable = false}, SHIFT(1319), + [2914] = {.count = 1, .reusable = true}, SHIFT(1319), + [2916] = {.count = 1, .reusable = true}, SHIFT(1318), + [2918] = {.count = 1, .reusable = true}, SHIFT(1320), + [2920] = {.count = 1, .reusable = false}, SHIFT(1322), + [2922] = {.count = 1, .reusable = true}, SHIFT(1322), + [2924] = {.count = 1, .reusable = true}, SHIFT(1321), + [2926] = {.count = 1, .reusable = true}, SHIFT(1323), + [2928] = {.count = 1, .reusable = false}, SHIFT(1324), + [2930] = {.count = 1, .reusable = true}, SHIFT(1324), + [2932] = {.count = 1, .reusable = false}, SHIFT(1325), + [2934] = {.count = 1, .reusable = false}, SHIFT(1326), + [2936] = {.count = 1, .reusable = true}, SHIFT(1326), + [2938] = {.count = 1, .reusable = false}, SHIFT(1329), + [2940] = {.count = 1, .reusable = true}, SHIFT(1329), + [2942] = {.count = 1, .reusable = false}, SHIFT(1332), + [2944] = {.count = 1, .reusable = false}, SHIFT(1333), + [2946] = {.count = 1, .reusable = true}, SHIFT(1333), + [2948] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2950] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 4, .alias_sequence_id = 4), + [2952] = {.count = 1, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), + [2954] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(885), + [2957] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(428), + [2960] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(429), + [2963] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(430), + [2966] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), + [2969] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(885), + [2972] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(432), + [2975] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(434), + [2978] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(435), + [2981] = {.count = 2, .reusable = true}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(436), + [2984] = {.count = 2, .reusable = false}, REDUCE(aux_sym_expansion_repeat1, 2), SHIFT_REPEAT(431), [2987] = {.count = 1, .reusable = true}, SHIFT(1336), [2989] = {.count = 1, .reusable = false}, SHIFT(1337), [2991] = {.count = 1, .reusable = true}, SHIFT(1337), @@ -73769,13 +73792,13 @@ static TSParseActionEntry ts_parse_actions[] = { [3038] = {.count = 1, .reusable = true}, SHIFT(1354), [3040] = {.count = 1, .reusable = true}, SHIFT(1356), [3042] = {.count = 1, .reusable = true}, SHIFT(1357), - [3044] = {.count = 1, .reusable = false}, SHIFT(1359), - [3046] = {.count = 1, .reusable = true}, SHIFT(1359), - [3048] = {.count = 1, .reusable = true}, SHIFT(1358), - [3050] = {.count = 1, .reusable = true}, SHIFT(1360), - [3052] = {.count = 1, .reusable = true}, SHIFT(1361), - [3054] = {.count = 1, .reusable = false}, SHIFT(1362), - [3056] = {.count = 1, .reusable = false}, SHIFT(1361), + [3044] = {.count = 1, .reusable = true}, SHIFT(1358), + [3046] = {.count = 1, .reusable = false}, SHIFT(1359), + [3048] = {.count = 1, .reusable = false}, SHIFT(1358), + [3050] = {.count = 1, .reusable = true}, SHIFT(1361), + [3052] = {.count = 1, .reusable = false}, SHIFT(1363), + [3054] = {.count = 1, .reusable = true}, SHIFT(1363), + [3056] = {.count = 1, .reusable = true}, SHIFT(1362), [3058] = {.count = 1, .reusable = true}, SHIFT(1364), [3060] = {.count = 1, .reusable = false}, SHIFT(1366), [3062] = {.count = 1, .reusable = true}, SHIFT(1366), @@ -73801,13 +73824,13 @@ static TSParseActionEntry ts_parse_actions[] = { [3105] = {.count = 1, .reusable = false}, SHIFT(1377), [3107] = {.count = 1, .reusable = true}, SHIFT(1378), [3109] = {.count = 1, .reusable = true}, SHIFT(1379), - [3111] = {.count = 1, .reusable = false}, SHIFT(1381), - [3113] = {.count = 1, .reusable = true}, SHIFT(1381), - [3115] = {.count = 1, .reusable = true}, SHIFT(1380), - [3117] = {.count = 1, .reusable = true}, SHIFT(1382), - [3119] = {.count = 1, .reusable = true}, SHIFT(1383), - [3121] = {.count = 1, .reusable = false}, SHIFT(1384), - [3123] = {.count = 1, .reusable = false}, SHIFT(1383), + [3111] = {.count = 1, .reusable = true}, SHIFT(1380), + [3113] = {.count = 1, .reusable = false}, SHIFT(1381), + [3115] = {.count = 1, .reusable = false}, SHIFT(1380), + [3117] = {.count = 1, .reusable = true}, SHIFT(1383), + [3119] = {.count = 1, .reusable = false}, SHIFT(1385), + [3121] = {.count = 1, .reusable = true}, SHIFT(1385), + [3123] = {.count = 1, .reusable = true}, SHIFT(1384), [3125] = {.count = 1, .reusable = true}, SHIFT(1386), [3127] = {.count = 1, .reusable = false}, SHIFT(1388), [3129] = {.count = 1, .reusable = true}, SHIFT(1388), @@ -73842,18 +73865,18 @@ static TSParseActionEntry ts_parse_actions[] = { [3196] = {.count = 1, .reusable = true}, SHIFT(1406), [3198] = {.count = 1, .reusable = true}, SHIFT(1408), [3200] = {.count = 1, .reusable = true}, SHIFT(1409), - [3202] = {.count = 1, .reusable = true}, SHIFT(1410), + [3202] = {.count = 1, .reusable = false}, SHIFT(1411), [3204] = {.count = 1, .reusable = true}, SHIFT(1411), - [3206] = {.count = 1, .reusable = false}, SHIFT(1413), - [3208] = {.count = 1, .reusable = true}, SHIFT(1413), - [3210] = {.count = 1, .reusable = true}, SHIFT(1412), + [3206] = {.count = 1, .reusable = true}, SHIFT(1410), + [3208] = {.count = 1, .reusable = true}, SHIFT(1412), + [3210] = {.count = 1, .reusable = false}, SHIFT(1414), [3212] = {.count = 1, .reusable = true}, SHIFT(1414), - [3214] = {.count = 1, .reusable = false}, SHIFT(1416), - [3216] = {.count = 1, .reusable = true}, SHIFT(1416), - [3218] = {.count = 1, .reusable = true}, SHIFT(1415), - [3220] = {.count = 1, .reusable = false}, SHIFT(1418), - [3222] = {.count = 1, .reusable = true}, SHIFT(1418), - [3224] = {.count = 1, .reusable = true}, SHIFT(1417), + [3214] = {.count = 1, .reusable = true}, SHIFT(1413), + [3216] = {.count = 1, .reusable = false}, SHIFT(1416), + [3218] = {.count = 1, .reusable = true}, SHIFT(1416), + [3220] = {.count = 1, .reusable = true}, SHIFT(1415), + [3222] = {.count = 1, .reusable = true}, SHIFT(1417), + [3224] = {.count = 1, .reusable = true}, SHIFT(1418), [3226] = {.count = 1, .reusable = true}, SHIFT(1419), [3228] = {.count = 1, .reusable = true}, SHIFT(1420), [3230] = {.count = 1, .reusable = true}, SHIFT(1421), @@ -73879,7 +73902,7 @@ static TSParseActionEntry ts_parse_actions[] = { [3270] = {.count = 1, .reusable = true}, SHIFT(1440), [3272] = {.count = 1, .reusable = true}, SHIFT(1441), [3274] = {.count = 1, .reusable = false}, SHIFT(1442), - [3276] = {.count = 1, .reusable = false}, SHIFT(1440), + [3276] = {.count = 1, .reusable = false}, SHIFT(1441), [3278] = {.count = 1, .reusable = true}, SHIFT(1453), [3280] = {.count = 1, .reusable = true}, SHIFT(1454), [3282] = {.count = 1, .reusable = true}, SHIFT(1455), @@ -73891,18 +73914,18 @@ static TSParseActionEntry ts_parse_actions[] = { [3295] = {.count = 1, .reusable = true}, SHIFT(1460), [3297] = {.count = 1, .reusable = true}, SHIFT(1462), [3299] = {.count = 1, .reusable = true}, SHIFT(1463), - [3301] = {.count = 1, .reusable = true}, SHIFT(1464), + [3301] = {.count = 1, .reusable = false}, SHIFT(1465), [3303] = {.count = 1, .reusable = true}, SHIFT(1465), - [3305] = {.count = 1, .reusable = false}, SHIFT(1467), - [3307] = {.count = 1, .reusable = true}, SHIFT(1467), - [3309] = {.count = 1, .reusable = true}, SHIFT(1466), + [3305] = {.count = 1, .reusable = true}, SHIFT(1464), + [3307] = {.count = 1, .reusable = true}, SHIFT(1466), + [3309] = {.count = 1, .reusable = false}, SHIFT(1468), [3311] = {.count = 1, .reusable = true}, SHIFT(1468), - [3313] = {.count = 1, .reusable = false}, SHIFT(1470), - [3315] = {.count = 1, .reusable = true}, SHIFT(1470), - [3317] = {.count = 1, .reusable = true}, SHIFT(1469), - [3319] = {.count = 1, .reusable = false}, SHIFT(1472), - [3321] = {.count = 1, .reusable = true}, SHIFT(1472), - [3323] = {.count = 1, .reusable = true}, SHIFT(1471), + [3313] = {.count = 1, .reusable = true}, SHIFT(1467), + [3315] = {.count = 1, .reusable = false}, SHIFT(1470), + [3317] = {.count = 1, .reusable = true}, SHIFT(1470), + [3319] = {.count = 1, .reusable = true}, SHIFT(1469), + [3321] = {.count = 1, .reusable = true}, SHIFT(1471), + [3323] = {.count = 1, .reusable = true}, SHIFT(1472), [3325] = {.count = 1, .reusable = true}, SHIFT(1473), [3327] = {.count = 1, .reusable = true}, SHIFT(1474), [3329] = {.count = 1, .reusable = true}, SHIFT(1475), @@ -73953,15 +73976,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3428] = {.count = 1, .reusable = false}, SHIFT(1502), [3430] = {.count = 1, .reusable = true}, SHIFT(1504), [3432] = {.count = 1, .reusable = true}, SHIFT(1505), - [3434] = {.count = 1, .reusable = true}, SHIFT(1506), - [3436] = {.count = 1, .reusable = false}, SHIFT(1507), - [3438] = {.count = 1, .reusable = true}, SHIFT(1507), - [3440] = {.count = 1, .reusable = false}, SHIFT(1508), - [3442] = {.count = 1, .reusable = true}, SHIFT(1509), - [3444] = {.count = 1, .reusable = true}, SHIFT(1511), - [3446] = {.count = 1, .reusable = true}, SHIFT(1512), - [3448] = {.count = 1, .reusable = true}, SHIFT(1513), - [3450] = {.count = 1, .reusable = true}, SHIFT(1514), + [3434] = {.count = 1, .reusable = false}, SHIFT(1506), + [3436] = {.count = 1, .reusable = true}, SHIFT(1507), + [3438] = {.count = 1, .reusable = true}, SHIFT(1509), + [3440] = {.count = 1, .reusable = true}, SHIFT(1510), + [3442] = {.count = 1, .reusable = true}, SHIFT(1511), + [3444] = {.count = 1, .reusable = true}, SHIFT(1512), + [3446] = {.count = 1, .reusable = true}, SHIFT(1513), + [3448] = {.count = 1, .reusable = true}, SHIFT(1514), + [3450] = {.count = 1, .reusable = false}, SHIFT(1515), [3452] = {.count = 1, .reusable = true}, SHIFT(1515), [3454] = {.count = 1, .reusable = true}, SHIFT(1516), [3456] = {.count = 1, .reusable = false}, SHIFT(1517), @@ -73992,15 +74015,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3506] = {.count = 1, .reusable = true}, SHIFT(1539), [3508] = {.count = 1, .reusable = true}, SHIFT(1540), [3510] = {.count = 1, .reusable = true}, SHIFT(1541), - [3512] = {.count = 1, .reusable = true}, SHIFT(1542), - [3514] = {.count = 1, .reusable = false}, SHIFT(1543), - [3516] = {.count = 1, .reusable = true}, SHIFT(1543), - [3518] = {.count = 1, .reusable = false}, SHIFT(1544), - [3520] = {.count = 1, .reusable = true}, SHIFT(1545), - [3522] = {.count = 1, .reusable = true}, SHIFT(1547), - [3524] = {.count = 1, .reusable = true}, SHIFT(1548), - [3526] = {.count = 1, .reusable = true}, SHIFT(1549), - [3528] = {.count = 1, .reusable = true}, SHIFT(1550), + [3512] = {.count = 1, .reusable = false}, SHIFT(1542), + [3514] = {.count = 1, .reusable = true}, SHIFT(1543), + [3516] = {.count = 1, .reusable = true}, SHIFT(1545), + [3518] = {.count = 1, .reusable = true}, SHIFT(1546), + [3520] = {.count = 1, .reusable = true}, SHIFT(1547), + [3522] = {.count = 1, .reusable = true}, SHIFT(1548), + [3524] = {.count = 1, .reusable = true}, SHIFT(1549), + [3526] = {.count = 1, .reusable = true}, SHIFT(1550), + [3528] = {.count = 1, .reusable = false}, SHIFT(1551), [3530] = {.count = 1, .reusable = true}, SHIFT(1551), [3532] = {.count = 1, .reusable = true}, SHIFT(1552), [3534] = {.count = 1, .reusable = false}, SHIFT(1553), @@ -74023,22 +74046,22 @@ static TSParseActionEntry ts_parse_actions[] = { [3568] = {.count = 1, .reusable = true}, SHIFT(1570), [3570] = {.count = 1, .reusable = true}, SHIFT(1571), [3572] = {.count = 1, .reusable = false}, SHIFT(1572), - [3574] = {.count = 1, .reusable = false}, SHIFT(1570), + [3574] = {.count = 1, .reusable = false}, SHIFT(1571), [3576] = {.count = 2, .reusable = true}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(686), [3579] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(687), [3582] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(688), [3585] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(689), [3588] = {.count = 1, .reusable = true}, SHIFT(1583), [3590] = {.count = 1, .reusable = true}, SHIFT(1584), - [3592] = {.count = 1, .reusable = true}, SHIFT(1585), - [3594] = {.count = 1, .reusable = false}, SHIFT(1586), - [3596] = {.count = 1, .reusable = true}, SHIFT(1586), - [3598] = {.count = 1, .reusable = false}, SHIFT(1587), - [3600] = {.count = 1, .reusable = true}, SHIFT(1588), - [3602] = {.count = 1, .reusable = true}, SHIFT(1590), - [3604] = {.count = 1, .reusable = true}, SHIFT(1591), - [3606] = {.count = 1, .reusable = true}, SHIFT(1592), - [3608] = {.count = 1, .reusable = true}, SHIFT(1593), + [3592] = {.count = 1, .reusable = false}, SHIFT(1585), + [3594] = {.count = 1, .reusable = true}, SHIFT(1586), + [3596] = {.count = 1, .reusable = true}, SHIFT(1588), + [3598] = {.count = 1, .reusable = true}, SHIFT(1589), + [3600] = {.count = 1, .reusable = true}, SHIFT(1590), + [3602] = {.count = 1, .reusable = true}, SHIFT(1591), + [3604] = {.count = 1, .reusable = true}, SHIFT(1592), + [3606] = {.count = 1, .reusable = true}, SHIFT(1593), + [3608] = {.count = 1, .reusable = false}, SHIFT(1594), [3610] = {.count = 1, .reusable = true}, SHIFT(1594), [3612] = {.count = 1, .reusable = true}, SHIFT(1595), [3614] = {.count = 1, .reusable = false}, SHIFT(1596), @@ -74051,15 +74074,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3628] = {.count = 1, .reusable = true}, SHIFT(1601), [3630] = {.count = 1, .reusable = true}, SHIFT(1602), [3632] = {.count = 1, .reusable = true}, SHIFT(1603), - [3634] = {.count = 1, .reusable = true}, SHIFT(1604), - [3636] = {.count = 1, .reusable = false}, SHIFT(1605), - [3638] = {.count = 1, .reusable = true}, SHIFT(1605), - [3640] = {.count = 1, .reusable = false}, SHIFT(1606), - [3642] = {.count = 1, .reusable = true}, SHIFT(1607), - [3644] = {.count = 1, .reusable = true}, SHIFT(1609), - [3646] = {.count = 1, .reusable = true}, SHIFT(1610), - [3648] = {.count = 1, .reusable = true}, SHIFT(1611), - [3650] = {.count = 1, .reusable = true}, SHIFT(1612), + [3634] = {.count = 1, .reusable = false}, SHIFT(1604), + [3636] = {.count = 1, .reusable = true}, SHIFT(1605), + [3638] = {.count = 1, .reusable = true}, SHIFT(1607), + [3640] = {.count = 1, .reusable = true}, SHIFT(1608), + [3642] = {.count = 1, .reusable = true}, SHIFT(1609), + [3644] = {.count = 1, .reusable = true}, SHIFT(1610), + [3646] = {.count = 1, .reusable = true}, SHIFT(1611), + [3648] = {.count = 1, .reusable = true}, SHIFT(1612), + [3650] = {.count = 1, .reusable = false}, SHIFT(1613), [3652] = {.count = 1, .reusable = true}, SHIFT(1613), [3654] = {.count = 1, .reusable = true}, SHIFT(1614), [3656] = {.count = 1, .reusable = false}, SHIFT(1615), @@ -74071,15 +74094,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3668] = {.count = 1, .reusable = true}, SHIFT(1619), [3670] = {.count = 1, .reusable = true}, SHIFT(1620), [3672] = {.count = 1, .reusable = true}, SHIFT(1621), - [3674] = {.count = 1, .reusable = true}, SHIFT(1622), - [3676] = {.count = 1, .reusable = false}, SHIFT(1623), - [3678] = {.count = 1, .reusable = true}, SHIFT(1623), - [3680] = {.count = 1, .reusable = false}, SHIFT(1624), - [3682] = {.count = 1, .reusable = true}, SHIFT(1625), - [3684] = {.count = 1, .reusable = true}, SHIFT(1627), - [3686] = {.count = 1, .reusable = true}, SHIFT(1628), - [3688] = {.count = 1, .reusable = true}, SHIFT(1629), - [3690] = {.count = 1, .reusable = true}, SHIFT(1630), + [3674] = {.count = 1, .reusable = false}, SHIFT(1622), + [3676] = {.count = 1, .reusable = true}, SHIFT(1623), + [3678] = {.count = 1, .reusable = true}, SHIFT(1625), + [3680] = {.count = 1, .reusable = true}, SHIFT(1626), + [3682] = {.count = 1, .reusable = true}, SHIFT(1627), + [3684] = {.count = 1, .reusable = true}, SHIFT(1628), + [3686] = {.count = 1, .reusable = true}, SHIFT(1629), + [3688] = {.count = 1, .reusable = true}, SHIFT(1630), + [3690] = {.count = 1, .reusable = false}, SHIFT(1631), [3692] = {.count = 1, .reusable = true}, SHIFT(1631), [3694] = {.count = 1, .reusable = true}, SHIFT(1632), [3696] = {.count = 1, .reusable = false}, SHIFT(1633), @@ -74091,15 +74114,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3708] = {.count = 1, .reusable = true}, SHIFT(1637), [3710] = {.count = 1, .reusable = true}, SHIFT(1638), [3712] = {.count = 1, .reusable = true}, SHIFT(1639), - [3714] = {.count = 1, .reusable = true}, SHIFT(1640), - [3716] = {.count = 1, .reusable = false}, SHIFT(1641), - [3718] = {.count = 1, .reusable = true}, SHIFT(1641), - [3720] = {.count = 1, .reusable = false}, SHIFT(1642), - [3722] = {.count = 1, .reusable = true}, SHIFT(1643), - [3724] = {.count = 1, .reusable = true}, SHIFT(1645), - [3726] = {.count = 1, .reusable = true}, SHIFT(1646), - [3728] = {.count = 1, .reusable = true}, SHIFT(1647), - [3730] = {.count = 1, .reusable = true}, SHIFT(1648), + [3714] = {.count = 1, .reusable = false}, SHIFT(1640), + [3716] = {.count = 1, .reusable = true}, SHIFT(1641), + [3718] = {.count = 1, .reusable = true}, SHIFT(1643), + [3720] = {.count = 1, .reusable = true}, SHIFT(1644), + [3722] = {.count = 1, .reusable = true}, SHIFT(1645), + [3724] = {.count = 1, .reusable = true}, SHIFT(1646), + [3726] = {.count = 1, .reusable = true}, SHIFT(1647), + [3728] = {.count = 1, .reusable = true}, SHIFT(1648), + [3730] = {.count = 1, .reusable = false}, SHIFT(1649), [3732] = {.count = 1, .reusable = true}, SHIFT(1649), [3734] = {.count = 1, .reusable = true}, SHIFT(1650), [3736] = {.count = 1, .reusable = false}, SHIFT(1651), @@ -74111,15 +74134,15 @@ static TSParseActionEntry ts_parse_actions[] = { [3748] = {.count = 1, .reusable = true}, SHIFT(1655), [3750] = {.count = 1, .reusable = true}, SHIFT(1656), [3752] = {.count = 1, .reusable = true}, SHIFT(1657), - [3754] = {.count = 1, .reusable = true}, SHIFT(1658), - [3756] = {.count = 1, .reusable = false}, SHIFT(1659), - [3758] = {.count = 1, .reusable = true}, SHIFT(1659), - [3760] = {.count = 1, .reusable = false}, SHIFT(1660), - [3762] = {.count = 1, .reusable = true}, SHIFT(1661), - [3764] = {.count = 1, .reusable = true}, SHIFT(1663), - [3766] = {.count = 1, .reusable = true}, SHIFT(1664), - [3768] = {.count = 1, .reusable = true}, SHIFT(1665), - [3770] = {.count = 1, .reusable = true}, SHIFT(1666), + [3754] = {.count = 1, .reusable = false}, SHIFT(1658), + [3756] = {.count = 1, .reusable = true}, SHIFT(1659), + [3758] = {.count = 1, .reusable = true}, SHIFT(1661), + [3760] = {.count = 1, .reusable = true}, SHIFT(1662), + [3762] = {.count = 1, .reusable = true}, SHIFT(1663), + [3764] = {.count = 1, .reusable = true}, SHIFT(1664), + [3766] = {.count = 1, .reusable = true}, SHIFT(1665), + [3768] = {.count = 1, .reusable = true}, SHIFT(1666), + [3770] = {.count = 1, .reusable = false}, SHIFT(1667), [3772] = {.count = 1, .reusable = true}, SHIFT(1667), [3774] = {.count = 1, .reusable = true}, SHIFT(1668), [3776] = {.count = 1, .reusable = false}, SHIFT(1669), @@ -74143,13 +74166,13 @@ static TSParseActionEntry ts_parse_actions[] = { [3812] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5), [3814] = {.count = 1, .reusable = true}, SHIFT(1681), [3816] = {.count = 1, .reusable = true}, SHIFT(1682), - [3818] = {.count = 1, .reusable = false}, SHIFT(1684), - [3820] = {.count = 1, .reusable = true}, SHIFT(1684), - [3822] = {.count = 1, .reusable = true}, SHIFT(1683), - [3824] = {.count = 1, .reusable = true}, SHIFT(1685), - [3826] = {.count = 1, .reusable = true}, SHIFT(1686), - [3828] = {.count = 1, .reusable = false}, SHIFT(1687), - [3830] = {.count = 1, .reusable = false}, SHIFT(1686), + [3818] = {.count = 1, .reusable = true}, SHIFT(1683), + [3820] = {.count = 1, .reusable = false}, SHIFT(1684), + [3822] = {.count = 1, .reusable = false}, SHIFT(1683), + [3824] = {.count = 1, .reusable = true}, SHIFT(1686), + [3826] = {.count = 1, .reusable = false}, SHIFT(1688), + [3828] = {.count = 1, .reusable = true}, SHIFT(1688), + [3830] = {.count = 1, .reusable = true}, SHIFT(1687), [3832] = {.count = 1, .reusable = true}, SHIFT(1689), [3834] = {.count = 1, .reusable = false}, SHIFT(1691), [3836] = {.count = 1, .reusable = true}, SHIFT(1691), @@ -74166,54 +74189,54 @@ static TSParseActionEntry ts_parse_actions[] = { [3858] = {.count = 1, .reusable = false}, SHIFT(1702), [3860] = {.count = 1, .reusable = false}, SHIFT(1703), [3862] = {.count = 1, .reusable = true}, SHIFT(1703), - [3864] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(852), - [3867] = {.count = 1, .reusable = false}, SHIFT(1706), - [3869] = {.count = 1, .reusable = true}, SHIFT(1707), - [3871] = {.count = 1, .reusable = false}, SHIFT(1708), - [3873] = {.count = 1, .reusable = true}, SHIFT(1709), - [3875] = {.count = 1, .reusable = true}, SHIFT(1711), - [3877] = {.count = 1, .reusable = true}, SHIFT(1712), - [3879] = {.count = 1, .reusable = true}, SHIFT(1713), - [3881] = {.count = 1, .reusable = true}, SHIFT(1714), - [3883] = {.count = 1, .reusable = false}, SHIFT(1716), - [3885] = {.count = 1, .reusable = true}, SHIFT(1716), - [3887] = {.count = 1, .reusable = true}, SHIFT(1715), - [3889] = {.count = 1, .reusable = true}, SHIFT(1717), - [3891] = {.count = 1, .reusable = false}, SHIFT(1719), - [3893] = {.count = 1, .reusable = true}, SHIFT(1719), - [3895] = {.count = 1, .reusable = true}, SHIFT(1718), - [3897] = {.count = 1, .reusable = false}, SHIFT(1721), - [3899] = {.count = 1, .reusable = true}, SHIFT(1721), - [3901] = {.count = 1, .reusable = true}, SHIFT(1720), - [3903] = {.count = 1, .reusable = true}, SHIFT(1722), - [3905] = {.count = 1, .reusable = true}, SHIFT(1723), - [3907] = {.count = 1, .reusable = true}, SHIFT(1724), - [3909] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [3911] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), - [3913] = {.count = 1, .reusable = true}, SHIFT(1725), - [3915] = {.count = 1, .reusable = true}, SHIFT(1726), - [3917] = {.count = 1, .reusable = false}, SHIFT(1726), - [3919] = {.count = 1, .reusable = false}, SHIFT(1727), - [3921] = {.count = 1, .reusable = true}, SHIFT(1727), - [3923] = {.count = 1, .reusable = false}, SHIFT(1728), - [3925] = {.count = 1, .reusable = true}, SHIFT(1728), - [3927] = {.count = 1, .reusable = true}, SHIFT(1729), - [3929] = {.count = 1, .reusable = false}, SHIFT(1729), - [3931] = {.count = 1, .reusable = false}, SHIFT(1730), + [3864] = {.count = 1, .reusable = true}, SHIFT(1706), + [3866] = {.count = 1, .reusable = true}, SHIFT(1707), + [3868] = {.count = 1, .reusable = true}, SHIFT(1708), + [3870] = {.count = 1, .reusable = false}, SHIFT(1709), + [3872] = {.count = 1, .reusable = true}, SHIFT(1709), + [3874] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3876] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), + [3878] = {.count = 1, .reusable = true}, SHIFT(1710), + [3880] = {.count = 1, .reusable = false}, SHIFT(1711), + [3882] = {.count = 1, .reusable = true}, SHIFT(1711), + [3884] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3886] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), + [3888] = {.count = 1, .reusable = true}, SHIFT(1712), + [3890] = {.count = 1, .reusable = false}, SHIFT(1713), + [3892] = {.count = 1, .reusable = true}, SHIFT(1713), + [3894] = {.count = 2, .reusable = true}, REDUCE(aux_sym_concatenation_repeat1, 2), SHIFT_REPEAT(861), + [3897] = {.count = 1, .reusable = false}, SHIFT(1714), + [3899] = {.count = 1, .reusable = true}, SHIFT(1715), + [3901] = {.count = 1, .reusable = false}, SHIFT(1716), + [3903] = {.count = 1, .reusable = true}, SHIFT(1717), + [3905] = {.count = 1, .reusable = true}, SHIFT(1719), + [3907] = {.count = 1, .reusable = true}, SHIFT(1720), + [3909] = {.count = 1, .reusable = false}, SHIFT(1722), + [3911] = {.count = 1, .reusable = true}, SHIFT(1722), + [3913] = {.count = 1, .reusable = true}, SHIFT(1721), + [3915] = {.count = 1, .reusable = true}, SHIFT(1723), + [3917] = {.count = 1, .reusable = false}, SHIFT(1725), + [3919] = {.count = 1, .reusable = true}, SHIFT(1725), + [3921] = {.count = 1, .reusable = true}, SHIFT(1724), + [3923] = {.count = 1, .reusable = false}, SHIFT(1727), + [3925] = {.count = 1, .reusable = true}, SHIFT(1727), + [3927] = {.count = 1, .reusable = true}, SHIFT(1726), + [3929] = {.count = 1, .reusable = true}, SHIFT(1728), + [3931] = {.count = 1, .reusable = true}, SHIFT(1729), [3933] = {.count = 1, .reusable = true}, SHIFT(1730), [3935] = {.count = 1, .reusable = true}, SHIFT(1731), [3937] = {.count = 1, .reusable = true}, SHIFT(1732), - [3939] = {.count = 1, .reusable = true}, SHIFT(1733), - [3941] = {.count = 1, .reusable = false}, SHIFT(1734), - [3943] = {.count = 1, .reusable = true}, SHIFT(1734), - [3945] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [3947] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 7), - [3949] = {.count = 1, .reusable = true}, SHIFT(1735), - [3951] = {.count = 1, .reusable = false}, SHIFT(1736), - [3953] = {.count = 1, .reusable = true}, SHIFT(1736), - [3955] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [3957] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 8), - [3959] = {.count = 1, .reusable = true}, SHIFT(1737), + [3939] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3941] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 5, .alias_sequence_id = 10), + [3943] = {.count = 1, .reusable = true}, SHIFT(1733), + [3945] = {.count = 1, .reusable = true}, SHIFT(1734), + [3947] = {.count = 1, .reusable = false}, SHIFT(1734), + [3949] = {.count = 1, .reusable = false}, SHIFT(1735), + [3951] = {.count = 1, .reusable = true}, SHIFT(1735), + [3953] = {.count = 1, .reusable = false}, SHIFT(1736), + [3955] = {.count = 1, .reusable = true}, SHIFT(1736), + [3957] = {.count = 1, .reusable = true}, SHIFT(1737), + [3959] = {.count = 1, .reusable = false}, SHIFT(1737), [3961] = {.count = 1, .reusable = false}, SHIFT(1738), [3963] = {.count = 1, .reusable = true}, SHIFT(1738), [3965] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 5, .alias_sequence_id = 11), @@ -74241,18 +74264,18 @@ static TSParseActionEntry ts_parse_actions[] = { [4009] = {.count = 1, .reusable = true}, SHIFT(1754), [4011] = {.count = 1, .reusable = true}, SHIFT(1756), [4013] = {.count = 1, .reusable = true}, SHIFT(1757), - [4015] = {.count = 1, .reusable = true}, SHIFT(1758), + [4015] = {.count = 1, .reusable = false}, SHIFT(1759), [4017] = {.count = 1, .reusable = true}, SHIFT(1759), - [4019] = {.count = 1, .reusable = false}, SHIFT(1761), - [4021] = {.count = 1, .reusable = true}, SHIFT(1761), - [4023] = {.count = 1, .reusable = true}, SHIFT(1760), + [4019] = {.count = 1, .reusable = true}, SHIFT(1758), + [4021] = {.count = 1, .reusable = true}, SHIFT(1760), + [4023] = {.count = 1, .reusable = false}, SHIFT(1762), [4025] = {.count = 1, .reusable = true}, SHIFT(1762), - [4027] = {.count = 1, .reusable = false}, SHIFT(1764), - [4029] = {.count = 1, .reusable = true}, SHIFT(1764), - [4031] = {.count = 1, .reusable = true}, SHIFT(1763), - [4033] = {.count = 1, .reusable = false}, SHIFT(1766), - [4035] = {.count = 1, .reusable = true}, SHIFT(1766), - [4037] = {.count = 1, .reusable = true}, SHIFT(1765), + [4027] = {.count = 1, .reusable = true}, SHIFT(1761), + [4029] = {.count = 1, .reusable = false}, SHIFT(1764), + [4031] = {.count = 1, .reusable = true}, SHIFT(1764), + [4033] = {.count = 1, .reusable = true}, SHIFT(1763), + [4035] = {.count = 1, .reusable = true}, SHIFT(1765), + [4037] = {.count = 1, .reusable = true}, SHIFT(1766), [4039] = {.count = 1, .reusable = true}, SHIFT(1767), [4041] = {.count = 1, .reusable = true}, SHIFT(1768), [4043] = {.count = 1, .reusable = true}, SHIFT(1769), @@ -74267,18 +74290,18 @@ static TSParseActionEntry ts_parse_actions[] = { [4062] = {.count = 1, .reusable = true}, SHIFT(1773), [4064] = {.count = 1, .reusable = true}, SHIFT(1775), [4066] = {.count = 1, .reusable = true}, SHIFT(1776), - [4068] = {.count = 1, .reusable = true}, SHIFT(1777), + [4068] = {.count = 1, .reusable = false}, SHIFT(1778), [4070] = {.count = 1, .reusable = true}, SHIFT(1778), - [4072] = {.count = 1, .reusable = false}, SHIFT(1780), - [4074] = {.count = 1, .reusable = true}, SHIFT(1780), - [4076] = {.count = 1, .reusable = true}, SHIFT(1779), + [4072] = {.count = 1, .reusable = true}, SHIFT(1777), + [4074] = {.count = 1, .reusable = true}, SHIFT(1779), + [4076] = {.count = 1, .reusable = false}, SHIFT(1781), [4078] = {.count = 1, .reusable = true}, SHIFT(1781), - [4080] = {.count = 1, .reusable = false}, SHIFT(1783), - [4082] = {.count = 1, .reusable = true}, SHIFT(1783), - [4084] = {.count = 1, .reusable = true}, SHIFT(1782), - [4086] = {.count = 1, .reusable = false}, SHIFT(1785), - [4088] = {.count = 1, .reusable = true}, SHIFT(1785), - [4090] = {.count = 1, .reusable = true}, SHIFT(1784), + [4080] = {.count = 1, .reusable = true}, SHIFT(1780), + [4082] = {.count = 1, .reusable = false}, SHIFT(1783), + [4084] = {.count = 1, .reusable = true}, SHIFT(1783), + [4086] = {.count = 1, .reusable = true}, SHIFT(1782), + [4088] = {.count = 1, .reusable = true}, SHIFT(1784), + [4090] = {.count = 1, .reusable = true}, SHIFT(1785), [4092] = {.count = 1, .reusable = true}, SHIFT(1786), [4094] = {.count = 1, .reusable = true}, SHIFT(1787), [4096] = {.count = 1, .reusable = true}, SHIFT(1788), @@ -74294,15 +74317,15 @@ static TSParseActionEntry ts_parse_actions[] = { [4116] = {.count = 1, .reusable = true}, SHIFT(1793), [4118] = {.count = 1, .reusable = true}, SHIFT(1794), [4120] = {.count = 1, .reusable = true}, SHIFT(1795), - [4122] = {.count = 1, .reusable = true}, SHIFT(1796), - [4124] = {.count = 1, .reusable = false}, SHIFT(1797), - [4126] = {.count = 1, .reusable = true}, SHIFT(1797), - [4128] = {.count = 1, .reusable = false}, SHIFT(1798), - [4130] = {.count = 1, .reusable = true}, SHIFT(1799), - [4132] = {.count = 1, .reusable = true}, SHIFT(1801), - [4134] = {.count = 1, .reusable = true}, SHIFT(1802), - [4136] = {.count = 1, .reusable = true}, SHIFT(1803), - [4138] = {.count = 1, .reusable = true}, SHIFT(1804), + [4122] = {.count = 1, .reusable = false}, SHIFT(1796), + [4124] = {.count = 1, .reusable = true}, SHIFT(1797), + [4126] = {.count = 1, .reusable = true}, SHIFT(1799), + [4128] = {.count = 1, .reusable = true}, SHIFT(1800), + [4130] = {.count = 1, .reusable = true}, SHIFT(1801), + [4132] = {.count = 1, .reusable = true}, SHIFT(1802), + [4134] = {.count = 1, .reusable = true}, SHIFT(1803), + [4136] = {.count = 1, .reusable = true}, SHIFT(1804), + [4138] = {.count = 1, .reusable = false}, SHIFT(1805), [4140] = {.count = 1, .reusable = true}, SHIFT(1805), [4142] = {.count = 1, .reusable = true}, SHIFT(1806), [4144] = {.count = 1, .reusable = false}, SHIFT(1807), @@ -74321,13 +74344,13 @@ static TSParseActionEntry ts_parse_actions[] = { [4170] = {.count = 1, .reusable = false}, SHIFT(1818), [4172] = {.count = 1, .reusable = true}, SHIFT(1819), [4174] = {.count = 1, .reusable = true}, SHIFT(1820), - [4176] = {.count = 1, .reusable = false}, SHIFT(1822), - [4178] = {.count = 1, .reusable = true}, SHIFT(1822), - [4180] = {.count = 1, .reusable = true}, SHIFT(1821), - [4182] = {.count = 1, .reusable = true}, SHIFT(1823), - [4184] = {.count = 1, .reusable = true}, SHIFT(1824), - [4186] = {.count = 1, .reusable = false}, SHIFT(1825), - [4188] = {.count = 1, .reusable = false}, SHIFT(1824), + [4176] = {.count = 1, .reusable = true}, SHIFT(1821), + [4178] = {.count = 1, .reusable = false}, SHIFT(1822), + [4180] = {.count = 1, .reusable = false}, SHIFT(1821), + [4182] = {.count = 1, .reusable = true}, SHIFT(1824), + [4184] = {.count = 1, .reusable = false}, SHIFT(1826), + [4186] = {.count = 1, .reusable = true}, SHIFT(1826), + [4188] = {.count = 1, .reusable = true}, SHIFT(1825), [4190] = {.count = 1, .reusable = true}, SHIFT(1827), [4192] = {.count = 1, .reusable = false}, SHIFT(1829), [4194] = {.count = 1, .reusable = true}, SHIFT(1829), @@ -74355,15 +74378,15 @@ static TSParseActionEntry ts_parse_actions[] = { [4238] = {.count = 1, .reusable = true}, SHIFT(1847), [4240] = {.count = 1, .reusable = true}, SHIFT(1848), [4242] = {.count = 1, .reusable = true}, SHIFT(1849), - [4244] = {.count = 1, .reusable = true}, SHIFT(1850), - [4246] = {.count = 1, .reusable = false}, SHIFT(1851), - [4248] = {.count = 1, .reusable = true}, SHIFT(1851), - [4250] = {.count = 1, .reusable = false}, SHIFT(1852), - [4252] = {.count = 1, .reusable = true}, SHIFT(1853), - [4254] = {.count = 1, .reusable = true}, SHIFT(1855), - [4256] = {.count = 1, .reusable = true}, SHIFT(1856), - [4258] = {.count = 1, .reusable = true}, SHIFT(1857), - [4260] = {.count = 1, .reusable = true}, SHIFT(1858), + [4244] = {.count = 1, .reusable = false}, SHIFT(1850), + [4246] = {.count = 1, .reusable = true}, SHIFT(1851), + [4248] = {.count = 1, .reusable = true}, SHIFT(1853), + [4250] = {.count = 1, .reusable = true}, SHIFT(1854), + [4252] = {.count = 1, .reusable = true}, SHIFT(1855), + [4254] = {.count = 1, .reusable = true}, SHIFT(1856), + [4256] = {.count = 1, .reusable = true}, SHIFT(1857), + [4258] = {.count = 1, .reusable = true}, SHIFT(1858), + [4260] = {.count = 1, .reusable = false}, SHIFT(1859), [4262] = {.count = 1, .reusable = true}, SHIFT(1859), [4264] = {.count = 1, .reusable = true}, SHIFT(1860), [4266] = {.count = 1, .reusable = false}, SHIFT(1861), @@ -74419,14 +74442,14 @@ static TSParseActionEntry ts_parse_actions[] = { [4374] = {.count = 1, .reusable = true}, SHIFT(1905), [4376] = {.count = 1, .reusable = true}, SHIFT(1906), [4378] = {.count = 1, .reusable = true}, SHIFT(1907), - [4380] = {.count = 1, .reusable = true}, SHIFT(1908), - [4382] = {.count = 1, .reusable = false}, SHIFT(1909), + [4380] = {.count = 1, .reusable = false}, SHIFT(1908), + [4382] = {.count = 1, .reusable = true}, SHIFT(1908), [4384] = {.count = 1, .reusable = true}, SHIFT(1909), - [4386] = {.count = 1, .reusable = true}, SHIFT(1910), - [4388] = {.count = 1, .reusable = false}, SHIFT(1911), + [4386] = {.count = 1, .reusable = false}, SHIFT(1910), + [4388] = {.count = 1, .reusable = true}, SHIFT(1910), [4390] = {.count = 1, .reusable = true}, SHIFT(1911), - [4392] = {.count = 1, .reusable = true}, SHIFT(1912), - [4394] = {.count = 1, .reusable = false}, SHIFT(1913), + [4392] = {.count = 1, .reusable = false}, SHIFT(1912), + [4394] = {.count = 1, .reusable = true}, SHIFT(1912), [4396] = {.count = 1, .reusable = true}, SHIFT(1913), [4398] = {.count = 1, .reusable = true}, SHIFT(1914), [4400] = {.count = 1, .reusable = true}, SHIFT(1915), @@ -74442,14 +74465,14 @@ static TSParseActionEntry ts_parse_actions[] = { [4423] = {.count = 1, .reusable = true}, SHIFT(1923), [4425] = {.count = 1, .reusable = true}, SHIFT(1924), [4427] = {.count = 1, .reusable = true}, SHIFT(1925), - [4429] = {.count = 1, .reusable = true}, SHIFT(1926), - [4431] = {.count = 1, .reusable = false}, SHIFT(1927), + [4429] = {.count = 1, .reusable = false}, SHIFT(1926), + [4431] = {.count = 1, .reusable = true}, SHIFT(1926), [4433] = {.count = 1, .reusable = true}, SHIFT(1927), - [4435] = {.count = 1, .reusable = true}, SHIFT(1928), - [4437] = {.count = 1, .reusable = false}, SHIFT(1929), + [4435] = {.count = 1, .reusable = false}, SHIFT(1928), + [4437] = {.count = 1, .reusable = true}, SHIFT(1928), [4439] = {.count = 1, .reusable = true}, SHIFT(1929), - [4441] = {.count = 1, .reusable = true}, SHIFT(1930), - [4443] = {.count = 1, .reusable = false}, SHIFT(1931), + [4441] = {.count = 1, .reusable = false}, SHIFT(1930), + [4443] = {.count = 1, .reusable = true}, SHIFT(1930), [4445] = {.count = 1, .reusable = true}, SHIFT(1931), [4447] = {.count = 1, .reusable = true}, SHIFT(1932), [4449] = {.count = 1, .reusable = true}, SHIFT(1933), @@ -74458,13 +74481,13 @@ static TSParseActionEntry ts_parse_actions[] = { [4455] = {.count = 1, .reusable = false}, SHIFT(1937), [4457] = {.count = 1, .reusable = true}, SHIFT(1938), [4459] = {.count = 1, .reusable = true}, SHIFT(1939), - [4461] = {.count = 1, .reusable = false}, SHIFT(1941), - [4463] = {.count = 1, .reusable = true}, SHIFT(1941), - [4465] = {.count = 1, .reusable = true}, SHIFT(1940), - [4467] = {.count = 1, .reusable = true}, SHIFT(1942), - [4469] = {.count = 1, .reusable = true}, SHIFT(1943), - [4471] = {.count = 1, .reusable = false}, SHIFT(1944), - [4473] = {.count = 1, .reusable = false}, SHIFT(1943), + [4461] = {.count = 1, .reusable = true}, SHIFT(1940), + [4463] = {.count = 1, .reusable = false}, SHIFT(1941), + [4465] = {.count = 1, .reusable = false}, SHIFT(1940), + [4467] = {.count = 1, .reusable = true}, SHIFT(1943), + [4469] = {.count = 1, .reusable = false}, SHIFT(1945), + [4471] = {.count = 1, .reusable = true}, SHIFT(1945), + [4473] = {.count = 1, .reusable = true}, SHIFT(1944), [4475] = {.count = 1, .reusable = true}, SHIFT(1946), [4477] = {.count = 1, .reusable = false}, SHIFT(1948), [4479] = {.count = 1, .reusable = true}, SHIFT(1948), @@ -74484,70 +74507,70 @@ static TSParseActionEntry ts_parse_actions[] = { [4507] = {.count = 1, .reusable = true}, SHIFT(1963), [4509] = {.count = 1, .reusable = true}, SHIFT(1964), [4511] = {.count = 1, .reusable = true}, SHIFT(1965), - [4513] = {.count = 1, .reusable = true}, SHIFT(1966), - [4515] = {.count = 1, .reusable = false}, SHIFT(1967), + [4513] = {.count = 1, .reusable = false}, SHIFT(1966), + [4515] = {.count = 1, .reusable = true}, SHIFT(1966), [4517] = {.count = 1, .reusable = true}, SHIFT(1967), - [4519] = {.count = 1, .reusable = true}, SHIFT(1968), - [4521] = {.count = 1, .reusable = false}, SHIFT(1969), + [4519] = {.count = 1, .reusable = false}, SHIFT(1968), + [4521] = {.count = 1, .reusable = true}, SHIFT(1968), [4523] = {.count = 1, .reusable = true}, SHIFT(1969), - [4525] = {.count = 1, .reusable = true}, SHIFT(1970), - [4527] = {.count = 1, .reusable = false}, SHIFT(1971), + [4525] = {.count = 1, .reusable = false}, SHIFT(1970), + [4527] = {.count = 1, .reusable = true}, SHIFT(1970), [4529] = {.count = 1, .reusable = true}, SHIFT(1971), [4531] = {.count = 1, .reusable = true}, SHIFT(1972), [4533] = {.count = 1, .reusable = true}, SHIFT(1973), [4535] = {.count = 1, .reusable = true}, SHIFT(1974), [4537] = {.count = 1, .reusable = true}, SHIFT(1975), [4539] = {.count = 1, .reusable = true}, SHIFT(1976), - [4541] = {.count = 1, .reusable = true}, SHIFT(1977), - [4543] = {.count = 1, .reusable = false}, SHIFT(1978), + [4541] = {.count = 1, .reusable = false}, SHIFT(1977), + [4543] = {.count = 1, .reusable = true}, SHIFT(1977), [4545] = {.count = 1, .reusable = true}, SHIFT(1978), - [4547] = {.count = 1, .reusable = true}, SHIFT(1979), - [4549] = {.count = 1, .reusable = false}, SHIFT(1980), + [4547] = {.count = 1, .reusable = false}, SHIFT(1979), + [4549] = {.count = 1, .reusable = true}, SHIFT(1979), [4551] = {.count = 1, .reusable = true}, SHIFT(1980), - [4553] = {.count = 1, .reusable = true}, SHIFT(1981), - [4555] = {.count = 1, .reusable = false}, SHIFT(1982), + [4553] = {.count = 1, .reusable = false}, SHIFT(1981), + [4555] = {.count = 1, .reusable = true}, SHIFT(1981), [4557] = {.count = 1, .reusable = true}, SHIFT(1982), [4559] = {.count = 1, .reusable = true}, SHIFT(1983), [4561] = {.count = 1, .reusable = true}, SHIFT(1984), [4563] = {.count = 1, .reusable = true}, SHIFT(1985), [4565] = {.count = 1, .reusable = true}, SHIFT(1986), [4567] = {.count = 1, .reusable = true}, SHIFT(1987), - [4569] = {.count = 1, .reusable = true}, SHIFT(1988), - [4571] = {.count = 1, .reusable = false}, SHIFT(1989), + [4569] = {.count = 1, .reusable = false}, SHIFT(1988), + [4571] = {.count = 1, .reusable = true}, SHIFT(1988), [4573] = {.count = 1, .reusable = true}, SHIFT(1989), - [4575] = {.count = 1, .reusable = true}, SHIFT(1990), - [4577] = {.count = 1, .reusable = false}, SHIFT(1991), + [4575] = {.count = 1, .reusable = false}, SHIFT(1990), + [4577] = {.count = 1, .reusable = true}, SHIFT(1990), [4579] = {.count = 1, .reusable = true}, SHIFT(1991), - [4581] = {.count = 1, .reusable = true}, SHIFT(1992), - [4583] = {.count = 1, .reusable = false}, SHIFT(1993), + [4581] = {.count = 1, .reusable = false}, SHIFT(1992), + [4583] = {.count = 1, .reusable = true}, SHIFT(1992), [4585] = {.count = 1, .reusable = true}, SHIFT(1993), [4587] = {.count = 1, .reusable = true}, SHIFT(1994), [4589] = {.count = 1, .reusable = true}, SHIFT(1995), [4591] = {.count = 1, .reusable = true}, SHIFT(1996), [4593] = {.count = 1, .reusable = true}, SHIFT(1997), [4595] = {.count = 1, .reusable = true}, SHIFT(1998), - [4597] = {.count = 1, .reusable = true}, SHIFT(1999), - [4599] = {.count = 1, .reusable = false}, SHIFT(2000), + [4597] = {.count = 1, .reusable = false}, SHIFT(1999), + [4599] = {.count = 1, .reusable = true}, SHIFT(1999), [4601] = {.count = 1, .reusable = true}, SHIFT(2000), - [4603] = {.count = 1, .reusable = true}, SHIFT(2001), - [4605] = {.count = 1, .reusable = false}, SHIFT(2002), + [4603] = {.count = 1, .reusable = false}, SHIFT(2001), + [4605] = {.count = 1, .reusable = true}, SHIFT(2001), [4607] = {.count = 1, .reusable = true}, SHIFT(2002), - [4609] = {.count = 1, .reusable = true}, SHIFT(2003), - [4611] = {.count = 1, .reusable = false}, SHIFT(2004), + [4609] = {.count = 1, .reusable = false}, SHIFT(2003), + [4611] = {.count = 1, .reusable = true}, SHIFT(2003), [4613] = {.count = 1, .reusable = true}, SHIFT(2004), [4615] = {.count = 1, .reusable = true}, SHIFT(2005), [4617] = {.count = 1, .reusable = true}, SHIFT(2006), [4619] = {.count = 1, .reusable = true}, SHIFT(2007), [4621] = {.count = 1, .reusable = true}, SHIFT(2008), [4623] = {.count = 1, .reusable = true}, SHIFT(2009), - [4625] = {.count = 1, .reusable = true}, SHIFT(2010), - [4627] = {.count = 1, .reusable = false}, SHIFT(2011), + [4625] = {.count = 1, .reusable = false}, SHIFT(2010), + [4627] = {.count = 1, .reusable = true}, SHIFT(2010), [4629] = {.count = 1, .reusable = true}, SHIFT(2011), - [4631] = {.count = 1, .reusable = true}, SHIFT(2012), - [4633] = {.count = 1, .reusable = false}, SHIFT(2013), + [4631] = {.count = 1, .reusable = false}, SHIFT(2012), + [4633] = {.count = 1, .reusable = true}, SHIFT(2012), [4635] = {.count = 1, .reusable = true}, SHIFT(2013), - [4637] = {.count = 1, .reusable = true}, SHIFT(2014), - [4639] = {.count = 1, .reusable = false}, SHIFT(2015), + [4637] = {.count = 1, .reusable = false}, SHIFT(2014), + [4639] = {.count = 1, .reusable = true}, SHIFT(2014), [4641] = {.count = 1, .reusable = true}, SHIFT(2015), [4643] = {.count = 1, .reusable = true}, SHIFT(2016), [4645] = {.count = 1, .reusable = true}, SHIFT(2017), @@ -74562,18 +74585,18 @@ static TSParseActionEntry ts_parse_actions[] = { [4664] = {.count = 1, .reusable = true}, SHIFT(2023), [4666] = {.count = 1, .reusable = true}, SHIFT(2025), [4668] = {.count = 1, .reusable = true}, SHIFT(2026), - [4670] = {.count = 1, .reusable = true}, SHIFT(2027), + [4670] = {.count = 1, .reusable = false}, SHIFT(2028), [4672] = {.count = 1, .reusable = true}, SHIFT(2028), - [4674] = {.count = 1, .reusable = false}, SHIFT(2030), - [4676] = {.count = 1, .reusable = true}, SHIFT(2030), - [4678] = {.count = 1, .reusable = true}, SHIFT(2029), + [4674] = {.count = 1, .reusable = true}, SHIFT(2027), + [4676] = {.count = 1, .reusable = true}, SHIFT(2029), + [4678] = {.count = 1, .reusable = false}, SHIFT(2031), [4680] = {.count = 1, .reusable = true}, SHIFT(2031), - [4682] = {.count = 1, .reusable = false}, SHIFT(2033), - [4684] = {.count = 1, .reusable = true}, SHIFT(2033), - [4686] = {.count = 1, .reusable = true}, SHIFT(2032), - [4688] = {.count = 1, .reusable = false}, SHIFT(2035), - [4690] = {.count = 1, .reusable = true}, SHIFT(2035), - [4692] = {.count = 1, .reusable = true}, SHIFT(2034), + [4682] = {.count = 1, .reusable = true}, SHIFT(2030), + [4684] = {.count = 1, .reusable = false}, SHIFT(2033), + [4686] = {.count = 1, .reusable = true}, SHIFT(2033), + [4688] = {.count = 1, .reusable = true}, SHIFT(2032), + [4690] = {.count = 1, .reusable = true}, SHIFT(2034), + [4692] = {.count = 1, .reusable = true}, SHIFT(2035), [4694] = {.count = 1, .reusable = true}, SHIFT(2036), [4696] = {.count = 1, .reusable = true}, SHIFT(2037), [4698] = {.count = 1, .reusable = true}, SHIFT(2038), @@ -74587,40 +74610,40 @@ static TSParseActionEntry ts_parse_actions[] = { [4714] = {.count = 1, .reusable = false}, SHIFT(2042), [4716] = {.count = 1, .reusable = false}, SHIFT(2043), [4718] = {.count = 1, .reusable = true}, SHIFT(2043), - [4720] = {.count = 1, .reusable = true}, SHIFT(2044), - [4722] = {.count = 1, .reusable = true}, SHIFT(2045), - [4724] = {.count = 1, .reusable = true}, SHIFT(2046), - [4726] = {.count = 1, .reusable = false}, SHIFT(2047), - [4728] = {.count = 1, .reusable = true}, SHIFT(2047), - [4730] = {.count = 1, .reusable = false}, SHIFT(2048), - [4732] = {.count = 1, .reusable = true}, SHIFT(2049), - [4734] = {.count = 1, .reusable = true}, SHIFT(2051), - [4736] = {.count = 1, .reusable = true}, SHIFT(2052), - [4738] = {.count = 1, .reusable = true}, SHIFT(2053), - [4740] = {.count = 1, .reusable = true}, SHIFT(2054), - [4742] = {.count = 1, .reusable = true}, SHIFT(2055), - [4744] = {.count = 1, .reusable = true}, SHIFT(2056), - [4746] = {.count = 1, .reusable = false}, SHIFT(2057), - [4748] = {.count = 1, .reusable = true}, SHIFT(2057), - [4750] = {.count = 1, .reusable = true}, SHIFT(2058), - [4752] = {.count = 1, .reusable = false}, SHIFT(2059), - [4754] = {.count = 1, .reusable = true}, SHIFT(2059), - [4756] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4758] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), - [4760] = {.count = 1, .reusable = true}, SHIFT(2060), - [4762] = {.count = 1, .reusable = true}, SHIFT(2061), - [4764] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4766] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), - [4768] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), - [4770] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), - [4772] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4774] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), - [4776] = {.count = 1, .reusable = true}, SHIFT(2062), - [4778] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4780] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), - [4782] = {.count = 1, .reusable = true}, SHIFT(2063), - [4784] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), - [4786] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4720] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4722] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 15), + [4724] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6), + [4726] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6), + [4728] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4730] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 16), + [4732] = {.count = 1, .reusable = true}, SHIFT(2044), + [4734] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4736] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 17), + [4738] = {.count = 1, .reusable = true}, SHIFT(2045), + [4740] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4742] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 18), + [4744] = {.count = 1, .reusable = true}, SHIFT(2046), + [4746] = {.count = 1, .reusable = true}, SHIFT(2047), + [4748] = {.count = 1, .reusable = true}, SHIFT(2048), + [4750] = {.count = 1, .reusable = false}, SHIFT(2049), + [4752] = {.count = 1, .reusable = true}, SHIFT(2050), + [4754] = {.count = 1, .reusable = true}, SHIFT(2052), + [4756] = {.count = 1, .reusable = true}, SHIFT(2053), + [4758] = {.count = 1, .reusable = true}, SHIFT(2054), + [4760] = {.count = 1, .reusable = true}, SHIFT(2055), + [4762] = {.count = 1, .reusable = true}, SHIFT(2056), + [4764] = {.count = 1, .reusable = true}, SHIFT(2057), + [4766] = {.count = 1, .reusable = false}, SHIFT(2058), + [4768] = {.count = 1, .reusable = true}, SHIFT(2058), + [4770] = {.count = 1, .reusable = true}, SHIFT(2059), + [4772] = {.count = 1, .reusable = false}, SHIFT(2060), + [4774] = {.count = 1, .reusable = true}, SHIFT(2060), + [4776] = {.count = 1, .reusable = true}, SHIFT(2061), + [4778] = {.count = 1, .reusable = false}, SHIFT(2062), + [4780] = {.count = 1, .reusable = true}, SHIFT(2062), + [4782] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4784] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 10), + [4786] = {.count = 1, .reusable = true}, SHIFT(2063), [4788] = {.count = 1, .reusable = true}, SHIFT(2064), [4790] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), [4792] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 6, .alias_sequence_id = 11), @@ -74635,15 +74658,15 @@ static TSParseActionEntry ts_parse_actions[] = { [4812] = {.count = 2, .reusable = false}, REDUCE(aux_sym_while_statement_repeat1, 2), SHIFT_REPEAT(1347), [4815] = {.count = 1, .reusable = true}, SHIFT(2071), [4817] = {.count = 1, .reusable = true}, SHIFT(2072), - [4819] = {.count = 1, .reusable = true}, SHIFT(2073), - [4821] = {.count = 1, .reusable = false}, SHIFT(2074), - [4823] = {.count = 1, .reusable = true}, SHIFT(2074), - [4825] = {.count = 1, .reusable = false}, SHIFT(2075), - [4827] = {.count = 1, .reusable = true}, SHIFT(2076), - [4829] = {.count = 1, .reusable = true}, SHIFT(2078), - [4831] = {.count = 1, .reusable = true}, SHIFT(2079), - [4833] = {.count = 1, .reusable = true}, SHIFT(2080), - [4835] = {.count = 1, .reusable = true}, SHIFT(2081), + [4819] = {.count = 1, .reusable = false}, SHIFT(2073), + [4821] = {.count = 1, .reusable = true}, SHIFT(2074), + [4823] = {.count = 1, .reusable = true}, SHIFT(2076), + [4825] = {.count = 1, .reusable = true}, SHIFT(2077), + [4827] = {.count = 1, .reusable = true}, SHIFT(2078), + [4829] = {.count = 1, .reusable = true}, SHIFT(2079), + [4831] = {.count = 1, .reusable = true}, SHIFT(2080), + [4833] = {.count = 1, .reusable = true}, SHIFT(2081), + [4835] = {.count = 1, .reusable = false}, SHIFT(2082), [4837] = {.count = 1, .reusable = true}, SHIFT(2082), [4839] = {.count = 1, .reusable = true}, SHIFT(2083), [4841] = {.count = 1, .reusable = false}, SHIFT(2084), @@ -74653,15 +74676,15 @@ static TSParseActionEntry ts_parse_actions[] = { [4849] = {.count = 1, .reusable = true}, SHIFT(2086), [4851] = {.count = 1, .reusable = true}, SHIFT(2087), [4853] = {.count = 1, .reusable = true}, SHIFT(2088), - [4855] = {.count = 1, .reusable = true}, SHIFT(2089), - [4857] = {.count = 1, .reusable = false}, SHIFT(2090), - [4859] = {.count = 1, .reusable = true}, SHIFT(2090), - [4861] = {.count = 1, .reusable = false}, SHIFT(2091), - [4863] = {.count = 1, .reusable = true}, SHIFT(2092), - [4865] = {.count = 1, .reusable = true}, SHIFT(2094), - [4867] = {.count = 1, .reusable = true}, SHIFT(2095), - [4869] = {.count = 1, .reusable = true}, SHIFT(2096), - [4871] = {.count = 1, .reusable = true}, SHIFT(2097), + [4855] = {.count = 1, .reusable = false}, SHIFT(2089), + [4857] = {.count = 1, .reusable = true}, SHIFT(2090), + [4859] = {.count = 1, .reusable = true}, SHIFT(2092), + [4861] = {.count = 1, .reusable = true}, SHIFT(2093), + [4863] = {.count = 1, .reusable = true}, SHIFT(2094), + [4865] = {.count = 1, .reusable = true}, SHIFT(2095), + [4867] = {.count = 1, .reusable = true}, SHIFT(2096), + [4869] = {.count = 1, .reusable = true}, SHIFT(2097), + [4871] = {.count = 1, .reusable = false}, SHIFT(2098), [4873] = {.count = 1, .reusable = true}, SHIFT(2098), [4875] = {.count = 1, .reusable = true}, SHIFT(2099), [4877] = {.count = 1, .reusable = false}, SHIFT(2100), @@ -74674,14 +74697,14 @@ static TSParseActionEntry ts_parse_actions[] = { [4891] = {.count = 1, .reusable = true}, SHIFT(2105), [4893] = {.count = 1, .reusable = true}, SHIFT(2106), [4895] = {.count = 1, .reusable = true}, SHIFT(2107), - [4897] = {.count = 1, .reusable = true}, SHIFT(2108), - [4899] = {.count = 1, .reusable = false}, SHIFT(2109), + [4897] = {.count = 1, .reusable = false}, SHIFT(2108), + [4899] = {.count = 1, .reusable = true}, SHIFT(2108), [4901] = {.count = 1, .reusable = true}, SHIFT(2109), - [4903] = {.count = 1, .reusable = true}, SHIFT(2110), - [4905] = {.count = 1, .reusable = false}, SHIFT(2111), + [4903] = {.count = 1, .reusable = false}, SHIFT(2110), + [4905] = {.count = 1, .reusable = true}, SHIFT(2110), [4907] = {.count = 1, .reusable = true}, SHIFT(2111), - [4909] = {.count = 1, .reusable = true}, SHIFT(2112), - [4911] = {.count = 1, .reusable = false}, SHIFT(2113), + [4909] = {.count = 1, .reusable = false}, SHIFT(2112), + [4911] = {.count = 1, .reusable = true}, SHIFT(2112), [4913] = {.count = 1, .reusable = true}, SHIFT(2113), [4915] = {.count = 1, .reusable = true}, SHIFT(2114), [4917] = {.count = 1, .reusable = true}, SHIFT(2115), @@ -74693,18 +74716,18 @@ static TSParseActionEntry ts_parse_actions[] = { [4930] = {.count = 1, .reusable = true}, SHIFT(2120), [4932] = {.count = 1, .reusable = true}, SHIFT(2122), [4934] = {.count = 1, .reusable = true}, SHIFT(2123), - [4936] = {.count = 1, .reusable = true}, SHIFT(2124), + [4936] = {.count = 1, .reusable = false}, SHIFT(2125), [4938] = {.count = 1, .reusable = true}, SHIFT(2125), - [4940] = {.count = 1, .reusable = false}, SHIFT(2127), - [4942] = {.count = 1, .reusable = true}, SHIFT(2127), - [4944] = {.count = 1, .reusable = true}, SHIFT(2126), + [4940] = {.count = 1, .reusable = true}, SHIFT(2124), + [4942] = {.count = 1, .reusable = true}, SHIFT(2126), + [4944] = {.count = 1, .reusable = false}, SHIFT(2128), [4946] = {.count = 1, .reusable = true}, SHIFT(2128), - [4948] = {.count = 1, .reusable = false}, SHIFT(2130), - [4950] = {.count = 1, .reusable = true}, SHIFT(2130), - [4952] = {.count = 1, .reusable = true}, SHIFT(2129), - [4954] = {.count = 1, .reusable = false}, SHIFT(2132), - [4956] = {.count = 1, .reusable = true}, SHIFT(2132), - [4958] = {.count = 1, .reusable = true}, SHIFT(2131), + [4948] = {.count = 1, .reusable = true}, SHIFT(2127), + [4950] = {.count = 1, .reusable = false}, SHIFT(2130), + [4952] = {.count = 1, .reusable = true}, SHIFT(2130), + [4954] = {.count = 1, .reusable = true}, SHIFT(2129), + [4956] = {.count = 1, .reusable = true}, SHIFT(2131), + [4958] = {.count = 1, .reusable = true}, SHIFT(2132), [4960] = {.count = 1, .reusable = true}, SHIFT(2133), [4962] = {.count = 1, .reusable = true}, SHIFT(2134), [4964] = {.count = 1, .reusable = true}, SHIFT(2135), @@ -74723,14 +74746,14 @@ static TSParseActionEntry ts_parse_actions[] = { [4990] = {.count = 1, .reusable = true}, SHIFT(2142), [4992] = {.count = 1, .reusable = true}, SHIFT(2143), [4994] = {.count = 1, .reusable = true}, SHIFT(2144), - [4996] = {.count = 1, .reusable = true}, SHIFT(2145), - [4998] = {.count = 1, .reusable = false}, SHIFT(2146), + [4996] = {.count = 1, .reusable = false}, SHIFT(2145), + [4998] = {.count = 1, .reusable = true}, SHIFT(2145), [5000] = {.count = 1, .reusable = true}, SHIFT(2146), - [5002] = {.count = 1, .reusable = true}, SHIFT(2147), - [5004] = {.count = 1, .reusable = false}, SHIFT(2148), + [5002] = {.count = 1, .reusable = false}, SHIFT(2147), + [5004] = {.count = 1, .reusable = true}, SHIFT(2147), [5006] = {.count = 1, .reusable = true}, SHIFT(2148), - [5008] = {.count = 1, .reusable = true}, SHIFT(2149), - [5010] = {.count = 1, .reusable = false}, SHIFT(2150), + [5008] = {.count = 1, .reusable = false}, SHIFT(2149), + [5010] = {.count = 1, .reusable = true}, SHIFT(2149), [5012] = {.count = 1, .reusable = true}, SHIFT(2150), [5014] = {.count = 1, .reusable = true}, SHIFT(2151), [5016] = {.count = 1, .reusable = true}, SHIFT(2152), @@ -74803,18 +74826,18 @@ static TSParseActionEntry ts_parse_actions[] = { [5152] = {.count = 1, .reusable = true}, SHIFT(2222), [5154] = {.count = 1, .reusable = true}, SHIFT(2224), [5156] = {.count = 1, .reusable = true}, SHIFT(2225), - [5158] = {.count = 1, .reusable = true}, SHIFT(2226), + [5158] = {.count = 1, .reusable = false}, SHIFT(2227), [5160] = {.count = 1, .reusable = true}, SHIFT(2227), - [5162] = {.count = 1, .reusable = false}, SHIFT(2229), - [5164] = {.count = 1, .reusable = true}, SHIFT(2229), - [5166] = {.count = 1, .reusable = true}, SHIFT(2228), + [5162] = {.count = 1, .reusable = true}, SHIFT(2226), + [5164] = {.count = 1, .reusable = true}, SHIFT(2228), + [5166] = {.count = 1, .reusable = false}, SHIFT(2230), [5168] = {.count = 1, .reusable = true}, SHIFT(2230), - [5170] = {.count = 1, .reusable = false}, SHIFT(2232), - [5172] = {.count = 1, .reusable = true}, SHIFT(2232), - [5174] = {.count = 1, .reusable = true}, SHIFT(2231), - [5176] = {.count = 1, .reusable = false}, SHIFT(2234), - [5178] = {.count = 1, .reusable = true}, SHIFT(2234), - [5180] = {.count = 1, .reusable = true}, SHIFT(2233), + [5170] = {.count = 1, .reusable = true}, SHIFT(2229), + [5172] = {.count = 1, .reusable = false}, SHIFT(2232), + [5174] = {.count = 1, .reusable = true}, SHIFT(2232), + [5176] = {.count = 1, .reusable = true}, SHIFT(2231), + [5178] = {.count = 1, .reusable = true}, SHIFT(2233), + [5180] = {.count = 1, .reusable = true}, SHIFT(2234), [5182] = {.count = 1, .reusable = true}, SHIFT(2235), [5184] = {.count = 1, .reusable = true}, SHIFT(2236), [5186] = {.count = 1, .reusable = true}, SHIFT(2237), @@ -74847,15 +74870,15 @@ static TSParseActionEntry ts_parse_actions[] = { [5240] = {.count = 1, .reusable = false}, REDUCE(sym_subscript, 6), [5242] = {.count = 1, .reusable = true}, SHIFT(2258), [5244] = {.count = 1, .reusable = true}, SHIFT(2259), - [5246] = {.count = 1, .reusable = true}, SHIFT(2260), - [5248] = {.count = 1, .reusable = false}, SHIFT(2261), - [5250] = {.count = 1, .reusable = true}, SHIFT(2261), - [5252] = {.count = 1, .reusable = false}, SHIFT(2262), - [5254] = {.count = 1, .reusable = true}, SHIFT(2263), - [5256] = {.count = 1, .reusable = true}, SHIFT(2265), - [5258] = {.count = 1, .reusable = true}, SHIFT(2266), - [5260] = {.count = 1, .reusable = true}, SHIFT(2267), - [5262] = {.count = 1, .reusable = true}, SHIFT(2268), + [5246] = {.count = 1, .reusable = false}, SHIFT(2260), + [5248] = {.count = 1, .reusable = true}, SHIFT(2261), + [5250] = {.count = 1, .reusable = true}, SHIFT(2263), + [5252] = {.count = 1, .reusable = true}, SHIFT(2264), + [5254] = {.count = 1, .reusable = true}, SHIFT(2265), + [5256] = {.count = 1, .reusable = true}, SHIFT(2266), + [5258] = {.count = 1, .reusable = true}, SHIFT(2267), + [5260] = {.count = 1, .reusable = true}, SHIFT(2268), + [5262] = {.count = 1, .reusable = false}, SHIFT(2269), [5264] = {.count = 1, .reusable = true}, SHIFT(2269), [5266] = {.count = 1, .reusable = true}, SHIFT(2270), [5268] = {.count = 1, .reusable = false}, SHIFT(2271), @@ -74865,51 +74888,51 @@ static TSParseActionEntry ts_parse_actions[] = { [5276] = {.count = 1, .reusable = true}, SHIFT(2273), [5278] = {.count = 1, .reusable = true}, SHIFT(2274), [5280] = {.count = 1, .reusable = true}, SHIFT(2275), - [5282] = {.count = 1, .reusable = true}, SHIFT(2276), - [5284] = {.count = 1, .reusable = true}, SHIFT(2277), - [5286] = {.count = 1, .reusable = true}, SHIFT(2278), - [5288] = {.count = 1, .reusable = true}, SHIFT(2279), - [5290] = {.count = 1, .reusable = false}, SHIFT(2280), - [5292] = {.count = 1, .reusable = true}, SHIFT(2280), - [5294] = {.count = 1, .reusable = true}, SHIFT(2281), - [5296] = {.count = 1, .reusable = false}, SHIFT(2282), - [5298] = {.count = 1, .reusable = true}, SHIFT(2282), - [5300] = {.count = 1, .reusable = true}, SHIFT(2283), - [5302] = {.count = 1, .reusable = false}, SHIFT(2284), - [5304] = {.count = 1, .reusable = true}, SHIFT(2284), - [5306] = {.count = 1, .reusable = true}, SHIFT(2285), - [5308] = {.count = 1, .reusable = true}, SHIFT(2286), - [5310] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5312] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), - [5314] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5316] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), - [5318] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), - [5320] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5282] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5284] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 16), + [5286] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5288] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 17), + [5290] = {.count = 1, .reusable = true}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5292] = {.count = 1, .reusable = false}, REDUCE(sym_expansion, 7, .alias_sequence_id = 18), + [5294] = {.count = 1, .reusable = true}, SHIFT(2276), + [5296] = {.count = 1, .reusable = true}, SHIFT(2277), + [5298] = {.count = 1, .reusable = true}, SHIFT(2278), + [5300] = {.count = 1, .reusable = false}, SHIFT(2279), + [5302] = {.count = 1, .reusable = true}, SHIFT(2279), + [5304] = {.count = 1, .reusable = true}, SHIFT(2280), + [5306] = {.count = 1, .reusable = false}, SHIFT(2281), + [5308] = {.count = 1, .reusable = true}, SHIFT(2281), + [5310] = {.count = 1, .reusable = true}, SHIFT(2282), + [5312] = {.count = 1, .reusable = false}, SHIFT(2283), + [5314] = {.count = 1, .reusable = true}, SHIFT(2283), + [5316] = {.count = 1, .reusable = true}, SHIFT(2284), + [5318] = {.count = 1, .reusable = true}, SHIFT(2285), + [5320] = {.count = 1, .reusable = true}, SHIFT(2286), [5322] = {.count = 1, .reusable = true}, SHIFT(2289), [5324] = {.count = 1, .reusable = true}, SHIFT(2290), [5326] = {.count = 1, .reusable = true}, SHIFT(2291), - [5328] = {.count = 1, .reusable = true}, SHIFT(2292), - [5330] = {.count = 1, .reusable = false}, SHIFT(2293), + [5328] = {.count = 1, .reusable = false}, SHIFT(2292), + [5330] = {.count = 1, .reusable = true}, SHIFT(2292), [5332] = {.count = 1, .reusable = true}, SHIFT(2293), - [5334] = {.count = 1, .reusable = true}, SHIFT(2294), - [5336] = {.count = 1, .reusable = false}, SHIFT(2295), + [5334] = {.count = 1, .reusable = false}, SHIFT(2294), + [5336] = {.count = 1, .reusable = true}, SHIFT(2294), [5338] = {.count = 1, .reusable = true}, SHIFT(2295), - [5340] = {.count = 1, .reusable = true}, SHIFT(2296), - [5342] = {.count = 1, .reusable = false}, SHIFT(2297), + [5340] = {.count = 1, .reusable = false}, SHIFT(2296), + [5342] = {.count = 1, .reusable = true}, SHIFT(2296), [5344] = {.count = 1, .reusable = true}, SHIFT(2297), [5346] = {.count = 1, .reusable = true}, SHIFT(2298), [5348] = {.count = 1, .reusable = true}, SHIFT(2299), [5350] = {.count = 1, .reusable = true}, SHIFT(2300), [5352] = {.count = 1, .reusable = true}, SHIFT(2301), [5354] = {.count = 1, .reusable = true}, SHIFT(2302), - [5356] = {.count = 1, .reusable = true}, SHIFT(2303), - [5358] = {.count = 1, .reusable = false}, SHIFT(2304), + [5356] = {.count = 1, .reusable = false}, SHIFT(2303), + [5358] = {.count = 1, .reusable = true}, SHIFT(2303), [5360] = {.count = 1, .reusable = true}, SHIFT(2304), - [5362] = {.count = 1, .reusable = true}, SHIFT(2305), - [5364] = {.count = 1, .reusable = false}, SHIFT(2306), + [5362] = {.count = 1, .reusable = false}, SHIFT(2305), + [5364] = {.count = 1, .reusable = true}, SHIFT(2305), [5366] = {.count = 1, .reusable = true}, SHIFT(2306), - [5368] = {.count = 1, .reusable = true}, SHIFT(2307), - [5370] = {.count = 1, .reusable = false}, SHIFT(2308), + [5368] = {.count = 1, .reusable = false}, SHIFT(2307), + [5370] = {.count = 1, .reusable = true}, SHIFT(2307), [5372] = {.count = 1, .reusable = true}, SHIFT(2308), [5374] = {.count = 1, .reusable = true}, SHIFT(2309), [5376] = {.count = 1, .reusable = true}, SHIFT(2310), @@ -74918,15 +74941,15 @@ static TSParseActionEntry ts_parse_actions[] = { [5382] = {.count = 1, .reusable = true}, SHIFT(2313), [5384] = {.count = 1, .reusable = true}, SHIFT(2314), [5386] = {.count = 1, .reusable = true}, SHIFT(2315), - [5388] = {.count = 1, .reusable = true}, SHIFT(2316), - [5390] = {.count = 1, .reusable = false}, SHIFT(2317), - [5392] = {.count = 1, .reusable = true}, SHIFT(2317), - [5394] = {.count = 1, .reusable = false}, SHIFT(2318), - [5396] = {.count = 1, .reusable = true}, SHIFT(2319), - [5398] = {.count = 1, .reusable = true}, SHIFT(2321), - [5400] = {.count = 1, .reusable = true}, SHIFT(2322), - [5402] = {.count = 1, .reusable = true}, SHIFT(2323), - [5404] = {.count = 1, .reusable = true}, SHIFT(2324), + [5388] = {.count = 1, .reusable = false}, SHIFT(2316), + [5390] = {.count = 1, .reusable = true}, SHIFT(2317), + [5392] = {.count = 1, .reusable = true}, SHIFT(2319), + [5394] = {.count = 1, .reusable = true}, SHIFT(2320), + [5396] = {.count = 1, .reusable = true}, SHIFT(2321), + [5398] = {.count = 1, .reusable = true}, SHIFT(2322), + [5400] = {.count = 1, .reusable = true}, SHIFT(2323), + [5402] = {.count = 1, .reusable = true}, SHIFT(2324), + [5404] = {.count = 1, .reusable = false}, SHIFT(2325), [5406] = {.count = 1, .reusable = true}, SHIFT(2325), [5408] = {.count = 1, .reusable = true}, SHIFT(2326), [5410] = {.count = 1, .reusable = false}, SHIFT(2327), @@ -74958,7 +74981,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5462] = {.count = 1, .reusable = true}, SHIFT(2352), [5464] = {.count = 1, .reusable = true}, SHIFT(2353), [5466] = {.count = 1, .reusable = false}, SHIFT(2354), - [5468] = {.count = 1, .reusable = false}, SHIFT(2352), + [5468] = {.count = 1, .reusable = false}, SHIFT(2353), [5470] = {.count = 1, .reusable = true}, SHIFT(2366), [5472] = {.count = 1, .reusable = false}, SHIFT(2368), [5474] = {.count = 1, .reusable = false}, SHIFT(2369), @@ -74971,7 +74994,7 @@ static TSParseActionEntry ts_parse_actions[] = { [5488] = {.count = 1, .reusable = true}, SHIFT(2375), [5490] = {.count = 1, .reusable = true}, SHIFT(2376), [5492] = {.count = 1, .reusable = false}, SHIFT(2377), - [5494] = {.count = 1, .reusable = false}, SHIFT(2375), + [5494] = {.count = 1, .reusable = false}, SHIFT(2376), [5496] = {.count = 1, .reusable = true}, SHIFT(2390), [5498] = {.count = 1, .reusable = false}, REDUCE(sym_last_case_item, 4, .alias_sequence_id = 1), [5500] = {.count = 1, .reusable = false}, REDUCE(sym_case_item, 4, .alias_sequence_id = 1), @@ -75001,15 +75024,15 @@ static TSParseActionEntry ts_parse_actions[] = { [5548] = {.count = 1, .reusable = true}, REDUCE(sym_case_statement, 8, .alias_sequence_id = 22), [5550] = {.count = 1, .reusable = true}, SHIFT(2422), [5552] = {.count = 1, .reusable = true}, SHIFT(2423), - [5554] = {.count = 1, .reusable = true}, SHIFT(2424), - [5556] = {.count = 1, .reusable = false}, SHIFT(2425), - [5558] = {.count = 1, .reusable = true}, SHIFT(2425), - [5560] = {.count = 1, .reusable = false}, SHIFT(2426), - [5562] = {.count = 1, .reusable = true}, SHIFT(2427), - [5564] = {.count = 1, .reusable = true}, SHIFT(2429), - [5566] = {.count = 1, .reusable = true}, SHIFT(2430), - [5568] = {.count = 1, .reusable = true}, SHIFT(2431), - [5570] = {.count = 1, .reusable = true}, SHIFT(2432), + [5554] = {.count = 1, .reusable = false}, SHIFT(2424), + [5556] = {.count = 1, .reusable = true}, SHIFT(2425), + [5558] = {.count = 1, .reusable = true}, SHIFT(2427), + [5560] = {.count = 1, .reusable = true}, SHIFT(2428), + [5562] = {.count = 1, .reusable = true}, SHIFT(2429), + [5564] = {.count = 1, .reusable = true}, SHIFT(2430), + [5566] = {.count = 1, .reusable = true}, SHIFT(2431), + [5568] = {.count = 1, .reusable = true}, SHIFT(2432), + [5570] = {.count = 1, .reusable = false}, SHIFT(2433), [5572] = {.count = 1, .reusable = true}, SHIFT(2433), [5574] = {.count = 1, .reusable = true}, SHIFT(2434), [5576] = {.count = 1, .reusable = false}, SHIFT(2435), @@ -75022,14 +75045,14 @@ static TSParseActionEntry ts_parse_actions[] = { [5590] = {.count = 1, .reusable = true}, SHIFT(2440), [5592] = {.count = 1, .reusable = true}, SHIFT(2441), [5594] = {.count = 1, .reusable = true}, SHIFT(2442), - [5596] = {.count = 1, .reusable = true}, SHIFT(2443), - [5598] = {.count = 1, .reusable = false}, SHIFT(2444), + [5596] = {.count = 1, .reusable = false}, SHIFT(2443), + [5598] = {.count = 1, .reusable = true}, SHIFT(2443), [5600] = {.count = 1, .reusable = true}, SHIFT(2444), - [5602] = {.count = 1, .reusable = true}, SHIFT(2445), - [5604] = {.count = 1, .reusable = false}, SHIFT(2446), + [5602] = {.count = 1, .reusable = false}, SHIFT(2445), + [5604] = {.count = 1, .reusable = true}, SHIFT(2445), [5606] = {.count = 1, .reusable = true}, SHIFT(2446), - [5608] = {.count = 1, .reusable = true}, SHIFT(2447), - [5610] = {.count = 1, .reusable = false}, SHIFT(2448), + [5608] = {.count = 1, .reusable = false}, SHIFT(2447), + [5610] = {.count = 1, .reusable = true}, SHIFT(2447), [5612] = {.count = 1, .reusable = true}, SHIFT(2448), [5614] = {.count = 1, .reusable = true}, SHIFT(2449), [5616] = {.count = 1, .reusable = true}, SHIFT(2450), @@ -75045,14 +75068,14 @@ static TSParseActionEntry ts_parse_actions[] = { [5636] = {.count = 1, .reusable = true}, SHIFT(2460), [5638] = {.count = 1, .reusable = true}, SHIFT(2461), [5640] = {.count = 1, .reusable = true}, SHIFT(2462), - [5642] = {.count = 1, .reusable = true}, SHIFT(2463), - [5644] = {.count = 1, .reusable = false}, SHIFT(2464), + [5642] = {.count = 1, .reusable = false}, SHIFT(2463), + [5644] = {.count = 1, .reusable = true}, SHIFT(2463), [5646] = {.count = 1, .reusable = true}, SHIFT(2464), - [5648] = {.count = 1, .reusable = true}, SHIFT(2465), - [5650] = {.count = 1, .reusable = false}, SHIFT(2466), + [5648] = {.count = 1, .reusable = false}, SHIFT(2465), + [5650] = {.count = 1, .reusable = true}, SHIFT(2465), [5652] = {.count = 1, .reusable = true}, SHIFT(2466), - [5654] = {.count = 1, .reusable = true}, SHIFT(2467), - [5656] = {.count = 1, .reusable = false}, SHIFT(2468), + [5654] = {.count = 1, .reusable = false}, SHIFT(2467), + [5656] = {.count = 1, .reusable = true}, SHIFT(2467), [5658] = {.count = 1, .reusable = true}, SHIFT(2468), [5660] = {.count = 1, .reusable = true}, SHIFT(2469), [5662] = {.count = 1, .reusable = true}, SHIFT(2470), @@ -75077,13 +75100,13 @@ static TSParseActionEntry ts_parse_actions[] = { [5700] = {.count = 1, .reusable = false}, SHIFT(2487), [5702] = {.count = 1, .reusable = true}, SHIFT(2488), [5704] = {.count = 1, .reusable = true}, SHIFT(2489), - [5706] = {.count = 1, .reusable = false}, SHIFT(2491), - [5708] = {.count = 1, .reusable = true}, SHIFT(2491), - [5710] = {.count = 1, .reusable = true}, SHIFT(2490), - [5712] = {.count = 1, .reusable = true}, SHIFT(2492), - [5714] = {.count = 1, .reusable = true}, SHIFT(2493), - [5716] = {.count = 1, .reusable = false}, SHIFT(2494), - [5718] = {.count = 1, .reusable = false}, SHIFT(2493), + [5706] = {.count = 1, .reusable = true}, SHIFT(2490), + [5708] = {.count = 1, .reusable = false}, SHIFT(2491), + [5710] = {.count = 1, .reusable = false}, SHIFT(2490), + [5712] = {.count = 1, .reusable = true}, SHIFT(2493), + [5714] = {.count = 1, .reusable = false}, SHIFT(2495), + [5716] = {.count = 1, .reusable = true}, SHIFT(2495), + [5718] = {.count = 1, .reusable = true}, SHIFT(2494), [5720] = {.count = 1, .reusable = true}, SHIFT(2496), [5722] = {.count = 1, .reusable = false}, SHIFT(2498), [5724] = {.count = 1, .reusable = true}, SHIFT(2498), @@ -75119,13 +75142,13 @@ static TSParseActionEntry ts_parse_actions[] = { [5794] = {.count = 1, .reusable = false}, SHIFT(2516), [5796] = {.count = 1, .reusable = true}, SHIFT(2517), [5798] = {.count = 1, .reusable = true}, SHIFT(2518), - [5800] = {.count = 1, .reusable = false}, SHIFT(2520), - [5802] = {.count = 1, .reusable = true}, SHIFT(2520), - [5804] = {.count = 1, .reusable = true}, SHIFT(2519), - [5806] = {.count = 1, .reusable = true}, SHIFT(2521), - [5808] = {.count = 1, .reusable = true}, SHIFT(2522), - [5810] = {.count = 1, .reusable = false}, SHIFT(2523), - [5812] = {.count = 1, .reusable = false}, SHIFT(2522), + [5800] = {.count = 1, .reusable = true}, SHIFT(2519), + [5802] = {.count = 1, .reusable = false}, SHIFT(2520), + [5804] = {.count = 1, .reusable = false}, SHIFT(2519), + [5806] = {.count = 1, .reusable = true}, SHIFT(2522), + [5808] = {.count = 1, .reusable = false}, SHIFT(2524), + [5810] = {.count = 1, .reusable = true}, SHIFT(2524), + [5812] = {.count = 1, .reusable = true}, SHIFT(2523), [5814] = {.count = 1, .reusable = true}, SHIFT(2525), [5816] = {.count = 1, .reusable = false}, SHIFT(2527), [5818] = {.count = 1, .reusable = true}, SHIFT(2527), @@ -75174,14 +75197,14 @@ static TSParseActionEntry ts_parse_actions[] = { [5919] = {.count = 1, .reusable = true}, SHIFT(2560), [5921] = {.count = 1, .reusable = true}, SHIFT(2561), [5923] = {.count = 1, .reusable = true}, SHIFT(2562), - [5925] = {.count = 1, .reusable = true}, SHIFT(2563), - [5927] = {.count = 1, .reusable = false}, SHIFT(2564), + [5925] = {.count = 1, .reusable = false}, SHIFT(2563), + [5927] = {.count = 1, .reusable = true}, SHIFT(2563), [5929] = {.count = 1, .reusable = true}, SHIFT(2564), - [5931] = {.count = 1, .reusable = true}, SHIFT(2565), - [5933] = {.count = 1, .reusable = false}, SHIFT(2566), + [5931] = {.count = 1, .reusable = false}, SHIFT(2565), + [5933] = {.count = 1, .reusable = true}, SHIFT(2565), [5935] = {.count = 1, .reusable = true}, SHIFT(2566), - [5937] = {.count = 1, .reusable = true}, SHIFT(2567), - [5939] = {.count = 1, .reusable = false}, SHIFT(2568), + [5937] = {.count = 1, .reusable = false}, SHIFT(2567), + [5939] = {.count = 1, .reusable = true}, SHIFT(2567), [5941] = {.count = 1, .reusable = true}, SHIFT(2568), [5943] = {.count = 1, .reusable = true}, SHIFT(2569), [5945] = {.count = 1, .reusable = true}, SHIFT(2570), @@ -75209,18 +75232,18 @@ static TSParseActionEntry ts_parse_actions[] = { [5990] = {.count = 1, .reusable = true}, SHIFT(2593), [5992] = {.count = 1, .reusable = true}, SHIFT(2595), [5994] = {.count = 1, .reusable = true}, SHIFT(2596), - [5996] = {.count = 1, .reusable = true}, SHIFT(2597), + [5996] = {.count = 1, .reusable = false}, SHIFT(2598), [5998] = {.count = 1, .reusable = true}, SHIFT(2598), - [6000] = {.count = 1, .reusable = false}, SHIFT(2600), - [6002] = {.count = 1, .reusable = true}, SHIFT(2600), - [6004] = {.count = 1, .reusable = true}, SHIFT(2599), + [6000] = {.count = 1, .reusable = true}, SHIFT(2597), + [6002] = {.count = 1, .reusable = true}, SHIFT(2599), + [6004] = {.count = 1, .reusable = false}, SHIFT(2601), [6006] = {.count = 1, .reusable = true}, SHIFT(2601), - [6008] = {.count = 1, .reusable = false}, SHIFT(2603), - [6010] = {.count = 1, .reusable = true}, SHIFT(2603), - [6012] = {.count = 1, .reusable = true}, SHIFT(2602), - [6014] = {.count = 1, .reusable = false}, SHIFT(2605), - [6016] = {.count = 1, .reusable = true}, SHIFT(2605), - [6018] = {.count = 1, .reusable = true}, SHIFT(2604), + [6008] = {.count = 1, .reusable = true}, SHIFT(2600), + [6010] = {.count = 1, .reusable = false}, SHIFT(2603), + [6012] = {.count = 1, .reusable = true}, SHIFT(2603), + [6014] = {.count = 1, .reusable = true}, SHIFT(2602), + [6016] = {.count = 1, .reusable = true}, SHIFT(2604), + [6018] = {.count = 1, .reusable = true}, SHIFT(2605), [6020] = {.count = 1, .reusable = true}, SHIFT(2606), [6022] = {.count = 1, .reusable = true}, SHIFT(2607), [6024] = {.count = 1, .reusable = true}, SHIFT(2608), @@ -75241,18 +75264,18 @@ static TSParseActionEntry ts_parse_actions[] = { [6055] = {.count = 1, .reusable = true}, SHIFT(2617), [6057] = {.count = 1, .reusable = true}, SHIFT(2619), [6059] = {.count = 1, .reusable = true}, SHIFT(2620), - [6061] = {.count = 1, .reusable = true}, SHIFT(2621), + [6061] = {.count = 1, .reusable = false}, SHIFT(2622), [6063] = {.count = 1, .reusable = true}, SHIFT(2622), - [6065] = {.count = 1, .reusable = false}, SHIFT(2624), - [6067] = {.count = 1, .reusable = true}, SHIFT(2624), - [6069] = {.count = 1, .reusable = true}, SHIFT(2623), + [6065] = {.count = 1, .reusable = true}, SHIFT(2621), + [6067] = {.count = 1, .reusable = true}, SHIFT(2623), + [6069] = {.count = 1, .reusable = false}, SHIFT(2625), [6071] = {.count = 1, .reusable = true}, SHIFT(2625), - [6073] = {.count = 1, .reusable = false}, SHIFT(2627), - [6075] = {.count = 1, .reusable = true}, SHIFT(2627), - [6077] = {.count = 1, .reusable = true}, SHIFT(2626), - [6079] = {.count = 1, .reusable = false}, SHIFT(2629), - [6081] = {.count = 1, .reusable = true}, SHIFT(2629), - [6083] = {.count = 1, .reusable = true}, SHIFT(2628), + [6073] = {.count = 1, .reusable = true}, SHIFT(2624), + [6075] = {.count = 1, .reusable = false}, SHIFT(2627), + [6077] = {.count = 1, .reusable = true}, SHIFT(2627), + [6079] = {.count = 1, .reusable = true}, SHIFT(2626), + [6081] = {.count = 1, .reusable = true}, SHIFT(2628), + [6083] = {.count = 1, .reusable = true}, SHIFT(2629), [6085] = {.count = 1, .reusable = true}, SHIFT(2630), [6087] = {.count = 1, .reusable = true}, SHIFT(2631), [6089] = {.count = 1, .reusable = true}, SHIFT(2632), @@ -75289,15 +75312,15 @@ static TSParseActionEntry ts_parse_actions[] = { [6154] = {.count = 1, .reusable = true}, SHIFT(2656), [6156] = {.count = 1, .reusable = true}, SHIFT(2657), [6158] = {.count = 1, .reusable = true}, SHIFT(2658), - [6160] = {.count = 1, .reusable = true}, SHIFT(2659), - [6162] = {.count = 1, .reusable = false}, SHIFT(2660), - [6164] = {.count = 1, .reusable = true}, SHIFT(2660), - [6166] = {.count = 1, .reusable = false}, SHIFT(2661), - [6168] = {.count = 1, .reusable = true}, SHIFT(2662), - [6170] = {.count = 1, .reusable = true}, SHIFT(2664), - [6172] = {.count = 1, .reusable = true}, SHIFT(2665), - [6174] = {.count = 1, .reusable = true}, SHIFT(2666), - [6176] = {.count = 1, .reusable = true}, SHIFT(2667), + [6160] = {.count = 1, .reusable = false}, SHIFT(2659), + [6162] = {.count = 1, .reusable = true}, SHIFT(2660), + [6164] = {.count = 1, .reusable = true}, SHIFT(2662), + [6166] = {.count = 1, .reusable = true}, SHIFT(2663), + [6168] = {.count = 1, .reusable = true}, SHIFT(2664), + [6170] = {.count = 1, .reusable = true}, SHIFT(2665), + [6172] = {.count = 1, .reusable = true}, SHIFT(2666), + [6174] = {.count = 1, .reusable = true}, SHIFT(2667), + [6176] = {.count = 1, .reusable = false}, SHIFT(2668), [6178] = {.count = 1, .reusable = true}, SHIFT(2668), [6180] = {.count = 1, .reusable = true}, SHIFT(2669), [6182] = {.count = 1, .reusable = false}, SHIFT(2670), @@ -75309,15 +75332,15 @@ static TSParseActionEntry ts_parse_actions[] = { [6194] = {.count = 1, .reusable = true}, SHIFT(2674), [6196] = {.count = 1, .reusable = true}, SHIFT(2675), [6198] = {.count = 1, .reusable = true}, SHIFT(2676), - [6200] = {.count = 1, .reusable = true}, SHIFT(2677), - [6202] = {.count = 1, .reusable = false}, SHIFT(2678), - [6204] = {.count = 1, .reusable = true}, SHIFT(2678), - [6206] = {.count = 1, .reusable = false}, SHIFT(2679), - [6208] = {.count = 1, .reusable = true}, SHIFT(2680), - [6210] = {.count = 1, .reusable = true}, SHIFT(2682), - [6212] = {.count = 1, .reusable = true}, SHIFT(2683), - [6214] = {.count = 1, .reusable = true}, SHIFT(2684), - [6216] = {.count = 1, .reusable = true}, SHIFT(2685), + [6200] = {.count = 1, .reusable = false}, SHIFT(2677), + [6202] = {.count = 1, .reusable = true}, SHIFT(2678), + [6204] = {.count = 1, .reusable = true}, SHIFT(2680), + [6206] = {.count = 1, .reusable = true}, SHIFT(2681), + [6208] = {.count = 1, .reusable = true}, SHIFT(2682), + [6210] = {.count = 1, .reusable = true}, SHIFT(2683), + [6212] = {.count = 1, .reusable = true}, SHIFT(2684), + [6214] = {.count = 1, .reusable = true}, SHIFT(2685), + [6216] = {.count = 1, .reusable = false}, SHIFT(2686), [6218] = {.count = 1, .reusable = true}, SHIFT(2686), [6220] = {.count = 1, .reusable = true}, SHIFT(2687), [6222] = {.count = 1, .reusable = false}, SHIFT(2688), @@ -75332,28 +75355,28 @@ static TSParseActionEntry ts_parse_actions[] = { [6240] = {.count = 1, .reusable = true}, SHIFT(2697), [6242] = {.count = 1, .reusable = true}, SHIFT(2698), [6244] = {.count = 1, .reusable = true}, SHIFT(2699), - [6246] = {.count = 1, .reusable = true}, SHIFT(2700), - [6248] = {.count = 1, .reusable = false}, SHIFT(2701), + [6246] = {.count = 1, .reusable = false}, SHIFT(2700), + [6248] = {.count = 1, .reusable = true}, SHIFT(2700), [6250] = {.count = 1, .reusable = true}, SHIFT(2701), - [6252] = {.count = 1, .reusable = true}, SHIFT(2702), - [6254] = {.count = 1, .reusable = false}, SHIFT(2703), + [6252] = {.count = 1, .reusable = false}, SHIFT(2702), + [6254] = {.count = 1, .reusable = true}, SHIFT(2702), [6256] = {.count = 1, .reusable = true}, SHIFT(2703), - [6258] = {.count = 1, .reusable = true}, SHIFT(2704), - [6260] = {.count = 1, .reusable = false}, SHIFT(2705), + [6258] = {.count = 1, .reusable = false}, SHIFT(2704), + [6260] = {.count = 1, .reusable = true}, SHIFT(2704), [6262] = {.count = 1, .reusable = true}, SHIFT(2705), [6264] = {.count = 1, .reusable = true}, SHIFT(2706), [6266] = {.count = 1, .reusable = true}, SHIFT(2707), [6268] = {.count = 1, .reusable = true}, SHIFT(2708), [6270] = {.count = 1, .reusable = true}, SHIFT(2709), [6272] = {.count = 1, .reusable = true}, SHIFT(2710), - [6274] = {.count = 1, .reusable = true}, SHIFT(2711), - [6276] = {.count = 1, .reusable = false}, SHIFT(2712), + [6274] = {.count = 1, .reusable = false}, SHIFT(2711), + [6276] = {.count = 1, .reusable = true}, SHIFT(2711), [6278] = {.count = 1, .reusable = true}, SHIFT(2712), - [6280] = {.count = 1, .reusable = true}, SHIFT(2713), - [6282] = {.count = 1, .reusable = false}, SHIFT(2714), + [6280] = {.count = 1, .reusable = false}, SHIFT(2713), + [6282] = {.count = 1, .reusable = true}, SHIFT(2713), [6284] = {.count = 1, .reusable = true}, SHIFT(2714), - [6286] = {.count = 1, .reusable = true}, SHIFT(2715), - [6288] = {.count = 1, .reusable = false}, SHIFT(2716), + [6286] = {.count = 1, .reusable = false}, SHIFT(2715), + [6288] = {.count = 1, .reusable = true}, SHIFT(2715), [6290] = {.count = 1, .reusable = true}, SHIFT(2716), [6292] = {.count = 1, .reusable = true}, SHIFT(2717), [6294] = {.count = 1, .reusable = true}, SHIFT(2718),