diff --git a/grammar.js b/grammar.js index 8b80e44..a324d60 100644 --- a/grammar.js +++ b/grammar.js @@ -196,7 +196,7 @@ module.exports = grammar({ ), expansion: $ => seq( - '$', + token.immediate('$'), choice( $.variable, seq('{', alias(/[^\}]+/, $.variable), '}'), @@ -304,8 +304,8 @@ module.exports = grammar({ ), shell_fragment: $ => repeat1(choice( - /[^\\\[\n#\s][^\\\[\n]*/, // non-escape or newline character - /\\[^\n]/, // non-line-continuation escape + /[^\\\[\n#\s][^\\\[\n]*/, + /\\[^\n]/, )), line_continuation: $ => '\\\n', diff --git a/src/grammar.json b/src/grammar.json index 6dde255..b4180da 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -811,8 +811,11 @@ "type": "SEQ", "members": [ { - "type": "STRING", - "value": "$" + "type": "IMMEDIATE_TOKEN", + "content": { + "type": "STRING", + "value": "$" + } }, { "type": "CHOICE", diff --git a/src/parser.c b/src/parser.c index 433dd98..5938dd1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -966,384 +966,387 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(149); - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(211); - if (lookahead == '-') ADVANCE(55); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '@') ADVANCE(201); - if (lookahead == '[') ADVANCE(210); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '}') ADVANCE(186); + if (eof) ADVANCE(148); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == ',') ADVANCE(210); + if (lookahead == '-') ADVANCE(54); + if (lookahead == ':') ADVANCE(163); + if (lookahead == '=') ADVANCE(169); + if (lookahead == '@') ADVANCE(200); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == ']') ADVANCE(211); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '}') ADVANCE(185); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(148) - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(187); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(165); - if (lookahead != 0) ADVANCE(177); + lookahead == ' ') SKIP(147) + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(164); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(215); + if (lookahead == '\n') ADVANCE(214); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(215); - if (lookahead == ' ') ADVANCE(235); + if (lookahead == '\n') ADVANCE(214); + if (lookahead == ' ') ADVANCE(234); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(215); - if (lookahead == 'U') ADVANCE(144); - if (lookahead == 'u') ADVANCE(140); - if (lookahead == 'x') ADVANCE(138); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(238); - if (lookahead != 0) ADVANCE(236); + if (lookahead == '\n') ADVANCE(214); + if (lookahead == 'U') ADVANCE(143); + if (lookahead == 'u') ADVANCE(139); + if (lookahead == 'x') ADVANCE(137); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + if (lookahead != 0) ADVANCE(235); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(215); - if (lookahead != 0) ADVANCE(214); + if (lookahead == '\n') ADVANCE(214); + if (lookahead != 0) ADVANCE(213); END_STATE(); case 5: - if (lookahead == '\n') SKIP(28) - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(230); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') SKIP(26) + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(229); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(229); - if (lookahead != 0) ADVANCE(230); + lookahead == ' ') ADVANCE(228); + if (lookahead != 0) ADVANCE(229); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '/') ADVANCE(64); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); - END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '/') ADVANCE(64); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(7) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); - END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(202); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (('0' <= lookahead && lookahead <= ':') || - ('B' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(203); - END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(125); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '/') ADVANCE(63); + if (lookahead == ':') ADVANCE(163); + if (lookahead == '=') ADVANCE(169); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(10) - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(165); END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + case 7: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(201); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (('0' <= lookahead && lookahead <= ':') || + ('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(202); + END_STATE(); + case 8: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(11) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + lookahead == ' ') SKIP(16) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); + END_STATE(); + case 9: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(17) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(172); + END_STATE(); + case 10: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '/') ADVANCE(63); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(10) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); + END_STATE(); + case 11: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); + if (lookahead == ':') ADVANCE(163); + if (lookahead == '@') ADVANCE(200); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(124); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(124); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(12) END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(13) if (lookahead == '-' || + lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(173); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '@') ADVANCE(201); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(125); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(16) + lookahead == ' ') SKIP(15) END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(125); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(16) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(17) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(172); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(18) - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); - END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(217); + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(19) + lookahead == ' ') SKIP(18) if (lookahead != 0 && - lookahead != '[') ADVANCE(213); + lookahead != '[') ADVANCE(212); END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(218); - if (lookahead == '$') ADVANCE(181); + case 19: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(217); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(10) + lookahead == ' ') SKIP(13) if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(233); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); if (lookahead != 0 && - lookahead != '"') ADVANCE(234); + lookahead != '"') ADVANCE(233); END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(218); - if (lookahead == '$') ADVANCE(181); + case 20: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(217); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(11) + lookahead == ' ') SKIP(14) if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); if (lookahead != 0 && - lookahead != '"') ADVANCE(234); + lookahead != '"') ADVANCE(233); END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(219); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ':') ADVANCE(164); - if (lookahead == '@') ADVANCE(201); - if (lookahead == '\\') ADVANCE(194); + case 21: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(218); + if (lookahead == '$') ADVANCE(180); + if (lookahead == ':') ADVANCE(163); + if (lookahead == '@') ADVANCE(200); + if (lookahead == '\\') ADVANCE(193); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(196); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(197); - END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(220); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '@') ADVANCE(201); - if (lookahead == '\\') ADVANCE(198); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(199); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (lookahead != 0) ADVANCE(200); - END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(150); - if (lookahead == '#') ADVANCE(221); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(179); + lookahead == 'a') ADVANCE(195); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (lookahead != 0) ADVANCE(180); + if (lookahead != 0) ADVANCE(196); + END_STATE(); + case 22: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(219); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '@') ADVANCE(200); + if (lookahead == '\\') ADVANCE(197); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(198); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (lookahead != 0) ADVANCE(199); + END_STATE(); + case 23: + if (lookahead == '\n') ADVANCE(149); + if (lookahead == '#') ADVANCE(220); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(178); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(15) + if (lookahead != 0) ADVANCE(179); + END_STATE(); + case 24: + if (lookahead == '\n') ADVANCE(150); + if (lookahead == '\r') SKIP(24) + if (lookahead == '#') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(238); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(151); - if (lookahead == '\r') SKIP(25) - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\n') ADVANCE(150); + if (lookahead == '\r') SKIP(24) + if (lookahead == '#') ADVANCE(220); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(178); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(239); + lookahead == ' ') ADVANCE(238); + if (lookahead != 0) ADVANCE(179); END_STATE(); case 26: - if (lookahead == '\n') ADVANCE(151); - if (lookahead == '\r') SKIP(25) - if (lookahead == '#') ADVANCE(221); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(179); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(239); - if (lookahead != 0) ADVANCE(180); - END_STATE(); - case 27: - if (lookahead == '\n') ADVANCE(151); - if (lookahead == '\r') SKIP(27) - if (lookahead == '#') ADVANCE(217); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(239); - END_STATE(); - case 28: - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(28) + lookahead == ' ') SKIP(26) END_STATE(); - case 29: - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(218); - if (lookahead == '$') ADVANCE(181); + case 27: + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(217); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(234); + lookahead == ' ') SKIP(26) + if (lookahead != 0) ADVANCE(233); + END_STATE(); + case 28: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '-') ADVANCE(54); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(33) + if (lookahead != 0) ADVANCE(176); + END_STATE(); + case 29: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (lookahead != 0 && + lookahead != '-') ADVANCE(176); END_STATE(); case 30: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '-') ADVANCE(55); - if (lookahead == '\\') ADVANCE(178); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (lookahead != 0) ADVANCE(177); + lookahead == ' ') SKIP(41) + if (('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 31: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '-') ADVANCE(55); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(31) + lookahead == ' ') SKIP(43) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); END_STATE(); case 32: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '[') ADVANCE(210); - if (lookahead == '\\') ADVANCE(178); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(32) - if (lookahead != 0 && - lookahead != '-') ADVANCE(177); + lookahead == ' ') SKIP(45) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(165); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(172); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '-') ADVANCE(54); + if (lookahead == '\\') ADVANCE(177); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(240); - if (lookahead == '\n' || - lookahead == '\r') SKIP(33) + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(33) + if (lookahead != 0) ADVANCE(176); END_STATE(); case 34: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '-') ADVANCE(54); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || @@ -1351,555 +1354,545 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(34) END_STATE(); case 35: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '=') ADVANCE(169); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); + lookahead == ' ') ADVANCE(188); END_STATE(); case 36: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(177); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(36) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + if (lookahead != 0 && + lookahead != '-') ADVANCE(176); END_STATE(); case 37: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(173); - END_STATE(); - case 38: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(173); - END_STATE(); - case 39: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '=') ADVANCE(170); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(189); - END_STATE(); - case 40: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '[') ADVANCE(210); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '[') ADVANCE(209); if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (lookahead != 0) ADVANCE(213); + lookahead == ' ') SKIP(37) + if (lookahead != 0) ADVANCE(212); + END_STATE(); + case 38: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + END_STATE(); + case 39: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(38) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + END_STATE(); + case 40: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(239); + if (lookahead == '\n' || + lookahead == '\r') SKIP(40) END_STATE(); case 41: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); - if (lookahead == '{') ADVANCE(182); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) END_STATE(); case 42: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); - if (lookahead == '{') ADVANCE(182); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(41) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); END_STATE(); case 43: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(240); - if (lookahead == '\n' || - lookahead == '\r') SKIP(43) + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(43) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); END_STATE(); case 44: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(44) if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(145); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(144); END_STATE(); case 45: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(45) - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(172); END_STATE(); case 46: - if (lookahead == '#') ADVANCE(217); + if (lookahead == '#') ADVANCE(216); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(46) + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 47: + if (lookahead == '#') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(47) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); - END_STATE(); - case 47: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(168); END_STATE(); case 48: - if (lookahead == '#') ADVANCE(217); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '#') ADVANCE(218); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '-') ADVANCE(194); + if (lookahead == '\\') ADVANCE(193); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); - END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(219); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '-') ADVANCE(195); - if (lookahead == '\\') ADVANCE(194); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) + lookahead == ' ') SKIP(34) if (lookahead != 0 && lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(196); + END_STATE(); + case 49: + if (lookahead == '#') ADVANCE(218); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(193); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(41) + if (lookahead != 0 && + lookahead != ':' && + lookahead != '@') ADVANCE(196); END_STATE(); case 50: if (lookahead == '#') ADVANCE(219); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(194); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(197); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(34) + lookahead == ' ') SKIP(41) if (lookahead != 0 && - lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(199); END_STATE(); case 51: if (lookahead == '#') ADVANCE(220); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(198); + if (lookahead == '$') ADVANCE(180); + if (lookahead == '\\') ADVANCE(178); if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(34) - if (lookahead != 0 && - lookahead != '@') ADVANCE(200); + lookahead == ' ') ADVANCE(239); + if (lookahead == '\n' || + lookahead == '\r') SKIP(40) + if (lookahead != 0) ADVANCE(179); END_STATE(); case 52: - if (lookahead == '#') ADVANCE(221); - if (lookahead == '$') ADVANCE(181); - if (lookahead == '\\') ADVANCE(179); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '\\') ADVANCE(182); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(240); - if (lookahead == '\n' || - lookahead == '\r') SKIP(33) - if (lookahead != 0) ADVANCE(180); + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(183); + if (lookahead != 0 && + lookahead != '}') ADVANCE(184); END_STATE(); case 53: - if (lookahead == '#') ADVANCE(224); - if (lookahead == '\\') ADVANCE(183); + if (lookahead == '#') ADVANCE(221); + if (lookahead == '\\') ADVANCE(206); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(184); - if (lookahead != 0 && - lookahead != '}') ADVANCE(185); + lookahead == ' ') SKIP(41) + if (lookahead != 0) ADVANCE(207); END_STATE(); case 54: - if (lookahead == '#') ADVANCE(222); - if (lookahead == '\\') ADVANCE(207); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(47) - if (lookahead != 0) ADVANCE(208); + if (lookahead == '-') ADVANCE(203); END_STATE(); case 55: - if (lookahead == '-') ADVANCE(204); + if (lookahead == 'E') ADVANCE(174); END_STATE(); case 56: - if (lookahead == 'E') ADVANCE(175); + if (lookahead == 'N') ADVANCE(55); END_STATE(); case 57: - if (lookahead == 'N') ADVANCE(56); + if (lookahead == 'O') ADVANCE(56); END_STATE(); case 58: - if (lookahead == 'O') ADVANCE(57); - END_STATE(); - case 59: - if (lookahead == '_') ADVANCE(59); + if (lookahead == '_') ADVANCE(58); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + END_STATE(); + case 59: + if (lookahead == 'c') ADVANCE(61); END_STATE(); case 60: - if (lookahead == 'c') ADVANCE(62); + if (lookahead == 'd') ADVANCE(62); END_STATE(); case 61: - if (lookahead == 'd') ADVANCE(63); + if (lookahead == 'p') ADVANCE(190); END_STATE(); case 62: if (lookahead == 'p') ADVANCE(191); END_STATE(); case 63: - if (lookahead == 'p') ADVANCE(192); + if (lookahead == 't') ADVANCE(59); + if (lookahead == 'u') ADVANCE(60); END_STATE(); case 64: - if (lookahead == 't') ADVANCE(60); - if (lookahead == 'u') ADVANCE(61); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(68); END_STATE(); case 65: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(69); + lookahead == 'a') ADVANCE(94); END_STATE(); case 66: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(95); + lookahead == 'a') ADVANCE(97); END_STATE(); case 67: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(98); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(131); END_STATE(); case 68: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(132); + lookahead == 'b') ADVANCE(82); END_STATE(); case 69: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(83); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(92); END_STATE(); case 70: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(93); + lookahead == 'c') ADVANCE(87); END_STATE(); case 71: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(88); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(72); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(83); END_STATE(); case 72: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(73); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(84); + lookahead == 'd') ADVANCE(158); END_STATE(); case 73: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(159); + lookahead == 'd') ADVANCE(154); END_STATE(); case 74: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(155); + lookahead == 'd') ADVANCE(170); END_STATE(); case 75: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(171); + lookahead == 'd') ADVANCE(90); END_STATE(); case 76: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(91); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(156); END_STATE(); case 77: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(157); + lookahead == 'e') ADVANCE(161); END_STATE(); case 78: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(162); + lookahead == 'e') ADVANCE(65); END_STATE(); case 79: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(66); + lookahead == 'e') ADVANCE(69); END_STATE(); case 80: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(70); + lookahead == 'e') ADVANCE(100); END_STATE(); case 81: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(101); + lookahead == 'e') ADVANCE(120); END_STATE(); case 82: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(121); + lookahead == 'e') ADVANCE(95); END_STATE(); case 83: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(96); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(167); END_STATE(); case 84: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(168); + lookahead == 'g') ADVANCE(108); END_STATE(); case 85: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(109); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(70); END_STATE(); case 86: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(71); + lookahead == 'h') ADVANCE(80); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(112); END_STATE(); case 87: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(81); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(113); + lookahead == 'h') ADVANCE(79); END_STATE(); case 88: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(80); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(84); END_STATE(); case 89: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(85); + lookahead == 'i') ADVANCE(107); END_STATE(); case 90: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(108); + lookahead == 'i') ADVANCE(121); END_STATE(); case 91: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(122); + lookahead == 'i') ADVANCE(99); END_STATE(); case 92: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(100); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(173); END_STATE(); case 93: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(174); + lookahead == 'k') ADVANCE(75); END_STATE(); case 94: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(76); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(128); END_STATE(); case 95: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(129); + lookahead == 'l') ADVANCE(155); END_STATE(); case 96: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(156); + lookahead == 'l') ADVANCE(175); END_STATE(); case 97: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(176); + lookahead == 'l') ADVANCE(171); END_STATE(); case 98: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(172); + lookahead == 'l') ADVANCE(133); END_STATE(); case 99: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(134); + lookahead == 'l') ADVANCE(74); END_STATE(); case 100: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(75); + lookahead == 'l') ADVANCE(96); END_STATE(); case 101: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(97); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(151); END_STATE(); case 102: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(152); + lookahead == 'm') ADVANCE(73); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(115); END_STATE(); case 103: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(74); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(116); + lookahead == 'm') ADVANCE(77); END_STATE(); case 104: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(78); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(130); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(117); END_STATE(); case 105: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(131); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(118); + lookahead == 'n') ADVANCE(153); END_STATE(); case 106: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(154); + lookahead == 'n') ADVANCE(67); END_STATE(); case 107: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(68); + lookahead == 'n') ADVANCE(129); END_STATE(); case 108: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(130); + lookahead == 'n') ADVANCE(66); END_STATE(); case 109: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(67); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(98); END_STATE(); case 110: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(99); + lookahead == 'o') ADVANCE(101); END_STATE(); case 111: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(102); + lookahead == 'o') ADVANCE(119); END_STATE(); case 112: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(120); + lookahead == 'o') ADVANCE(116); END_STATE(); case 113: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(117); + lookahead == 'o') ADVANCE(89); END_STATE(); case 114: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(90); + lookahead == 'o') ADVANCE(127); END_STATE(); case 115: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(128); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(134); END_STATE(); case 116: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(135); + lookahead == 'p') ADVANCE(125); END_STATE(); case 117: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(126); + lookahead == 'p') ADVANCE(114); END_STATE(); case 118: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(115); + lookahead == 'p') ADVANCE(113); END_STATE(); case 119: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(114); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(93); END_STATE(); case 120: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(94); + lookahead == 'r') ADVANCE(162); END_STATE(); case 121: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(163); + lookahead == 'r') ADVANCE(166); END_STATE(); case 122: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(167); + lookahead == 'r') ADVANCE(135); END_STATE(); case 123: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(136); + lookahead == 'r') ADVANCE(110); END_STATE(); case 124: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(111); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(152); END_STATE(); case 125: if (lookahead == 'S' || - lookahead == 's') ADVANCE(153); + lookahead == 's') ADVANCE(88); END_STATE(); case 126: if (lookahead == 'S' || - lookahead == 's') ADVANCE(89); + lookahead == 's') ADVANCE(81); END_STATE(); case 127: if (lookahead == 'S' || - lookahead == 's') ADVANCE(82); + lookahead == 's') ADVANCE(76); END_STATE(); case 128: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(77); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(85); END_STATE(); case 129: if (lookahead == 'T' || - lookahead == 't') ADVANCE(86); + lookahead == 't') ADVANCE(160); END_STATE(); case 130: if (lookahead == 'T' || - lookahead == 't') ADVANCE(161); + lookahead == 't') ADVANCE(122); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(157); END_STATE(); case 131: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(123); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(158); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(91); END_STATE(); case 132: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(92); + lookahead == 'u') ADVANCE(105); END_STATE(); case 133: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(106); + lookahead == 'u') ADVANCE(103); END_STATE(); case 134: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(104); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(159); END_STATE(); case 135: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(160); + lookahead == 'y') ADVANCE(118); END_STATE(); case 136: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(119); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(235); END_STATE(); case 137: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(236); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(136); END_STATE(); case 138: if (('0' <= lookahead && lookahead <= '9') || @@ -1932,330 +1925,336 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(142); END_STATE(); case 144: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(143); - END_STATE(); - case 145: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(59); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(58); + END_STATE(); + case 145: + if (eof) ADVANCE(148); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(216); + if (lookahead == '$') ADVANCE(180); + if (lookahead == ',') ADVANCE(210); + if (lookahead == '-') ADVANCE(54); + if (lookahead == '=') ADVANCE(169); + if (lookahead == 'N') ADVANCE(57); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == ']') ADVANCE(211); + if (lookahead == '}') ADVANCE(185); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(71); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(102); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(104); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(123); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(78); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(64); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(106); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(132); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(86); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(126); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(109); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(111); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(146) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 146: - if (eof) ADVANCE(149); - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(211); - if (lookahead == '-') ADVANCE(55); - if (lookahead == '=') ADVANCE(170); - if (lookahead == 'N') ADVANCE(58); + if (eof) ADVANCE(148); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(216); + if (lookahead == ',') ADVANCE(210); + if (lookahead == '-') ADVANCE(54); + if (lookahead == 'N') ADVANCE(57); if (lookahead == '\\') ADVANCE(1); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '}') ADVANCE(186); + if (lookahead == ']') ADVANCE(211); + if (lookahead == '}') ADVANCE(185); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(72); + lookahead == 'a') ADVANCE(71); if (lookahead == 'C' || - lookahead == 'c') ADVANCE(103); + lookahead == 'c') ADVANCE(102); if (lookahead == 'E' || - lookahead == 'e') ADVANCE(105); + lookahead == 'e') ADVANCE(104); if (lookahead == 'F' || - lookahead == 'f') ADVANCE(124); + lookahead == 'f') ADVANCE(123); if (lookahead == 'H' || - lookahead == 'h') ADVANCE(79); + lookahead == 'h') ADVANCE(78); if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); + lookahead == 'l') ADVANCE(64); if (lookahead == 'O' || - lookahead == 'o') ADVANCE(107); + lookahead == 'o') ADVANCE(106); if (lookahead == 'R' || - lookahead == 'r') ADVANCE(133); + lookahead == 'r') ADVANCE(132); if (lookahead == 'S' || - lookahead == 's') ADVANCE(87); + lookahead == 's') ADVANCE(86); if (lookahead == 'U' || - lookahead == 'u') ADVANCE(127); + lookahead == 'u') ADVANCE(126); if (lookahead == 'V' || - lookahead == 'v') ADVANCE(110); + lookahead == 'v') ADVANCE(109); if (lookahead == 'W' || - lookahead == 'w') ADVANCE(112); + lookahead == 'w') ADVANCE(111); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(147) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + lookahead == ' ') SKIP(146) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 147: - if (eof) ADVANCE(149); - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(211); - if (lookahead == '-') ADVANCE(55); - if (lookahead == 'N') ADVANCE(58); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '}') ADVANCE(186); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(72); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(103); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(105); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(124); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(79); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(65); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(107); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(133); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(87); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(127); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(110); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(112); + if (eof) ADVANCE(148); + if (lookahead == '"') ADVANCE(227); + if (lookahead == '#') ADVANCE(216); + if (lookahead == ',') ADVANCE(210); + if (lookahead == '-') ADVANCE(54); + if (lookahead == '[') ADVANCE(209); + if (lookahead == '\\') ADVANCE(177); + if (lookahead == ']') ADVANCE(211); + if (lookahead == '{') ADVANCE(181); + if (lookahead == '}') ADVANCE(185); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(147) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); + if (lookahead != 0) ADVANCE(176); END_STATE(); case 148: - if (eof) ADVANCE(149); - if (lookahead == '"') ADVANCE(228); - if (lookahead == '#') ADVANCE(217); - if (lookahead == '$') ADVANCE(181); - if (lookahead == ',') ADVANCE(211); - if (lookahead == '-') ADVANCE(55); - if (lookahead == '[') ADVANCE(210); - if (lookahead == '\\') ADVANCE(178); - if (lookahead == ']') ADVANCE(212); - if (lookahead == '{') ADVANCE(182); - if (lookahead == '}') ADVANCE(186); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(148) - if (lookahead != 0) ADVANCE(177); + ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); case 149: - ACCEPT_TOKEN(ts_builtin_sym_end); + ACCEPT_TOKEN(anon_sym_LF); + if (lookahead == '\n') ADVANCE(149); END_STATE(); case 150: ACCEPT_TOKEN(anon_sym_LF); if (lookahead == '\n') ADVANCE(150); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(238); END_STATE(); case 151: - ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(151); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(239); - END_STATE(); - case 152: ACCEPT_TOKEN(aux_sym_from_instruction_token1); END_STATE(); - case 153: + case 152: ACCEPT_TOKEN(aux_sym_from_instruction_token2); END_STATE(); - case 154: + case 153: ACCEPT_TOKEN(aux_sym_run_instruction_token1); END_STATE(); - case 155: + case 154: ACCEPT_TOKEN(aux_sym_cmd_instruction_token1); END_STATE(); - case 156: + case 155: ACCEPT_TOKEN(aux_sym_label_instruction_token1); END_STATE(); - case 157: + case 156: ACCEPT_TOKEN(aux_sym_expose_instruction_token1); END_STATE(); - case 158: + case 157: ACCEPT_TOKEN(aux_sym_env_instruction_token1); END_STATE(); - case 159: + case 158: ACCEPT_TOKEN(aux_sym_add_instruction_token1); END_STATE(); - case 160: + case 159: ACCEPT_TOKEN(aux_sym_copy_instruction_token1); END_STATE(); - case 161: + case 160: ACCEPT_TOKEN(aux_sym_entrypoint_instruction_token1); END_STATE(); - case 162: + case 161: ACCEPT_TOKEN(aux_sym_volume_instruction_token1); END_STATE(); - case 163: + case 162: ACCEPT_TOKEN(aux_sym_user_instruction_token1); END_STATE(); - case 164: + case 163: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 165: + case 164: ACCEPT_TOKEN(aux_sym__user_name_group_token1); - if (lookahead == '-') ADVANCE(166); - if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(187); + if (lookahead == '-') ADVANCE(165); + if (('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(165); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(164); END_STATE(); - case 166: + case 165: ACCEPT_TOKEN(aux_sym__user_name_group_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(166); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(165); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(aux_sym_workdir_instruction_token1); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(aux_sym_arg_instruction_token1); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(aux_sym_arg_instruction_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(169); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(168); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(aux_sym_onbuild_instruction_token1); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(aux_sym_stopsignal_instruction_token1); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(aux_sym__stopsignal_value_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(173); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(172); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(aux_sym_healthcheck_instruction_token1); END_STATE(); - case 175: + case 174: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(aux_sym_shell_instruction_token1); END_STATE(); + case 176: + ACCEPT_TOKEN(aux_sym_path_token1); + END_STATE(); case 177: ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '\n') ADVANCE(214); END_STATE(); case 178: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\n') ADVANCE(215); - END_STATE(); - case 179: ACCEPT_TOKEN(aux_sym_path_token2); - if (lookahead == '\n') ADVANCE(215); + if (lookahead == '\n') ADVANCE(214); if (lookahead != 0 && lookahead != '\t' && lookahead != '\r' && lookahead != ' ' && - lookahead != '$') ADVANCE(180); + lookahead != '$') ADVANCE(179); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(aux_sym_path_token2); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '$') ADVANCE(180); + lookahead != '$') ADVANCE(179); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); + case 182: + ACCEPT_TOKEN(aux_sym_expansion_token1); + if (lookahead == '\n') ADVANCE(215); + if (lookahead != 0 && + lookahead != '}') ADVANCE(184); + END_STATE(); case 183: ACCEPT_TOKEN(aux_sym_expansion_token1); - if (lookahead == '\n') ADVANCE(216); - if (lookahead != 0 && - lookahead != '}') ADVANCE(185); - END_STATE(); - case 184: - ACCEPT_TOKEN(aux_sym_expansion_token1); - if (lookahead == '#') ADVANCE(224); - if (lookahead == '\\') ADVANCE(183); + if (lookahead == '#') ADVANCE(223); + if (lookahead == '\\') ADVANCE(182); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(184); + lookahead == ' ') ADVANCE(183); if (lookahead != 0 && - lookahead != '}') ADVANCE(185); + lookahead != '}') ADVANCE(184); END_STATE(); - case 185: + case 184: ACCEPT_TOKEN(aux_sym_expansion_token1); if (lookahead != 0 && - lookahead != '}') ADVANCE(185); + lookahead != '}') ADVANCE(184); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 187: + case 186: ACCEPT_TOKEN(sym_variable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + END_STATE(); + case 187: + ACCEPT_TOKEN(aux_sym_env_pair_token1); + if (lookahead == '_') ADVANCE(58); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); END_STATE(); case 188: - ACCEPT_TOKEN(aux_sym_env_pair_token1); - if (lookahead == '_') ADVANCE(59); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); - END_STATE(); - case 189: ACCEPT_TOKEN(aux_sym__spaced_env_pair_token1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(189); + lookahead == ' ') ADVANCE(188); + END_STATE(); + case 189: + ACCEPT_TOKEN(aux_sym_expose_port_token1); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(189); END_STATE(); case 190: - ACCEPT_TOKEN(aux_sym_expose_port_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(190); - END_STATE(); - case 191: ACCEPT_TOKEN(anon_sym_SLASHtcp); END_STATE(); - case 192: + case 191: ACCEPT_TOKEN(anon_sym_SLASHudp); END_STATE(); - case 193: + case 192: ACCEPT_TOKEN(aux_sym_label_pair_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(193); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 193: + ACCEPT_TOKEN(aux_sym_image_name_token1); + if (lookahead == '\n') ADVANCE(214); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '$' && + lookahead != ':' && + lookahead != '@') ADVANCE(196); END_STATE(); case 194: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '\n') ADVANCE(215); + if (lookahead == '-') ADVANCE(204); if (lookahead != 0 && lookahead != '\t' && + lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(196); END_STATE(); case 195: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '-') ADVANCE(205); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(196); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2263,12 +2262,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(196); END_STATE(); case 196: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(197); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2276,72 +2273,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(196); END_STATE(); case 197: - ACCEPT_TOKEN(aux_sym_image_name_token1); + ACCEPT_TOKEN(aux_sym_image_tag_token1); + if (lookahead == '\n') ADVANCE(214); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(199); END_STATE(); case 198: ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == '\n') ADVANCE(215); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(199); if (lookahead != 0 && lookahead != '\t' && + lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != '@') ADVANCE(200); + lookahead != '@') ADVANCE(199); END_STATE(); case 199: ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(200); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != '@') ADVANCE(200); + lookahead != '@') ADVANCE(199); END_STATE(); case 200: - ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$' && - lookahead != '@') ADVANCE(200); + ACCEPT_TOKEN(anon_sym_AT); END_STATE(); case 201: - ACCEPT_TOKEN(anon_sym_AT); + ACCEPT_TOKEN(aux_sym_image_digest_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(202); + if (('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 202: ACCEPT_TOKEN(aux_sym_image_digest_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(203); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); case 203: - ACCEPT_TOKEN(aux_sym_image_digest_token1); - if (('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); - END_STATE(); - case 204: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead != 0 && lookahead != '\t' && @@ -2350,68 +2336,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(196); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(aux_sym_param_token1); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(206); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(aux_sym_param_token2); - if (lookahead == '\n') ADVANCE(215); + if (lookahead == '\n') ADVANCE(214); if (lookahead != 0 && lookahead != '\t' && lookahead != '\r' && - lookahead != ' ') ADVANCE(208); + lookahead != ' ') ADVANCE(207); END_STATE(); - case 208: + case 207: ACCEPT_TOKEN(aux_sym_param_token2); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(208); + lookahead != ' ') ADVANCE(207); END_STATE(); - case 209: + case 208: ACCEPT_TOKEN(aux_sym_image_alias_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(208); END_STATE(); - case 210: + case 209: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 211: + case 210: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 212: + case 211: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 213: + case 212: ACCEPT_TOKEN(aux_sym_shell_fragment_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '[' && - lookahead != '\\') ADVANCE(213); + lookahead != '\\') ADVANCE(212); + END_STATE(); + case 213: + ACCEPT_TOKEN(aux_sym_shell_fragment_token2); END_STATE(); case 214: - ACCEPT_TOKEN(aux_sym_shell_fragment_token2); + ACCEPT_TOKEN(sym_line_continuation); END_STATE(); case 215: ACCEPT_TOKEN(sym_line_continuation); + if (lookahead != 0 && + lookahead != '}') ADVANCE(184); END_STATE(); case 216: - ACCEPT_TOKEN(sym_line_continuation); - if (lookahead != 0 && - lookahead != '}') ADVANCE(185); - END_STATE(); - case 217: ACCEPT_TOKEN(anon_sym_POUND); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && lookahead != '\t' && @@ -2420,7 +2406,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(233); + END_STATE(); + case 218: + ACCEPT_TOKEN(anon_sym_POUND); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '$' && + lookahead != ':' && + lookahead != '@') ADVANCE(196); END_STATE(); case 219: ACCEPT_TOKEN(anon_sym_POUND); @@ -2430,8 +2427,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != ':' && - lookahead != '@') ADVANCE(197); + lookahead != '@') ADVANCE(199); END_STATE(); case 220: ACCEPT_TOKEN(anon_sym_POUND); @@ -2440,8 +2436,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '$' && - lookahead != '@') ADVANCE(200); + lookahead != '$') ADVANCE(179); END_STATE(); case 221: ACCEPT_TOKEN(anon_sym_POUND); @@ -2449,75 +2444,66 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ' && - lookahead != '$') ADVANCE(180); + lookahead != ' ') ADVANCE(207); END_STATE(); case 222: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(208); + lookahead != '\n') ADVANCE(226); END_STATE(); case 223: ACCEPT_TOKEN(anon_sym_POUND); if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + lookahead != '}') ADVANCE(184); END_STATE(); case 224: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '}') ADVANCE(185); + ACCEPT_TOKEN(aux_sym__anon_comment_token1); + if (lookahead == '\n') ADVANCE(214); + if (lookahead != 0) ADVANCE(226); END_STATE(); case 225: ACCEPT_TOKEN(aux_sym__anon_comment_token1); - if (lookahead == '\n') ADVANCE(215); - if (lookahead != 0) ADVANCE(227); + if (lookahead == '#') ADVANCE(222); + if (lookahead == '\\') ADVANCE(224); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(225); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(226); END_STATE(); case 226: ACCEPT_TOKEN(aux_sym__anon_comment_token1); - if (lookahead == '#') ADVANCE(223); - if (lookahead == '\\') ADVANCE(225); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(226); if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); + lookahead != '\n') ADVANCE(226); END_STATE(); case 227: - ACCEPT_TOKEN(aux_sym__anon_comment_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(227); - END_STATE(); - case 228: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '#') ADVANCE(230); + if (lookahead == '#') ADVANCE(229); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(229); + lookahead == ' ') ADVANCE(228); if (lookahead != 0 && lookahead != '\n' && (lookahead < '"' || '$' < lookahead) && - lookahead != '\\') ADVANCE(230); + lookahead != '\\') ADVANCE(229); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(230); + lookahead != '\\') ADVANCE(229); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); - if (lookahead == '_') ADVANCE(231); + if (lookahead == '_') ADVANCE(230); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2525,14 +2511,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(233); END_STATE(); - case 232: + case 231: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(231); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(230); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2540,16 +2526,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(233); END_STATE(); - case 233: + case 232: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(233); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(232); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2557,9 +2543,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(233); END_STATE(); - case 234: + case 233: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead != 0 && lookahead != '\t' && @@ -2568,33 +2554,33 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(234); + lookahead != '\\') ADVANCE(233); + END_STATE(); + case 234: + ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); case 235: - ACCEPT_TOKEN(anon_sym_BSLASH); + ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); case 236: ACCEPT_TOKEN(sym_escape_sequence); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(235); END_STATE(); case 237: ACCEPT_TOKEN(sym_escape_sequence); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(236); END_STATE(); case 238: - ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(237); + ACCEPT_TOKEN(sym__non_newline_whitespace); + if (lookahead == '\n') ADVANCE(150); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(238); END_STATE(); case 239: ACCEPT_TOKEN(sym__non_newline_whitespace); - if (lookahead == '\n') ADVANCE(151); if (lookahead == '\t' || lookahead == ' ') ADVANCE(239); END_STATE(); - case 240: - ACCEPT_TOKEN(sym__non_newline_whitespace); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(240); - END_STATE(); default: return false; } @@ -2602,265 +2588,265 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 146}, - [2] = {.lex_state = 146}, - [3] = {.lex_state = 146}, - [4] = {.lex_state = 146}, - [5] = {.lex_state = 146}, - [6] = {.lex_state = 29}, - [7] = {.lex_state = 29}, - [8] = {.lex_state = 29}, - [9] = {.lex_state = 22}, - [10] = {.lex_state = 22}, - [11] = {.lex_state = 49}, - [12] = {.lex_state = 29}, - [13] = {.lex_state = 20}, - [14] = {.lex_state = 40}, - [15] = {.lex_state = 40}, - [16] = {.lex_state = 21}, - [17] = {.lex_state = 23}, - [18] = {.lex_state = 21}, - [19] = {.lex_state = 20}, - [20] = {.lex_state = 40}, - [21] = {.lex_state = 40}, - [22] = {.lex_state = 40}, - [23] = {.lex_state = 23}, - [24] = {.lex_state = 26}, + [1] = {.lex_state = 145}, + [2] = {.lex_state = 145}, + [3] = {.lex_state = 145}, + [4] = {.lex_state = 145}, + [5] = {.lex_state = 145}, + [6] = {.lex_state = 27}, + [7] = {.lex_state = 27}, + [8] = {.lex_state = 27}, + [9] = {.lex_state = 21}, + [10] = {.lex_state = 21}, + [11] = {.lex_state = 48}, + [12] = {.lex_state = 27}, + [13] = {.lex_state = 19}, + [14] = {.lex_state = 37}, + [15] = {.lex_state = 37}, + [16] = {.lex_state = 20}, + [17] = {.lex_state = 22}, + [18] = {.lex_state = 20}, + [19] = {.lex_state = 19}, + [20] = {.lex_state = 37}, + [21] = {.lex_state = 37}, + [22] = {.lex_state = 37}, + [23] = {.lex_state = 22}, + [24] = {.lex_state = 25}, [25] = {.lex_state = 5}, [26] = {.lex_state = 6}, [27] = {.lex_state = 5}, - [28] = {.lex_state = 26}, - [29] = {.lex_state = 22}, - [30] = {.lex_state = 50}, - [31] = {.lex_state = 30}, - [32] = {.lex_state = 30}, + [28] = {.lex_state = 25}, + [29] = {.lex_state = 21}, + [30] = {.lex_state = 49}, + [31] = {.lex_state = 28}, + [32] = {.lex_state = 28}, [33] = {.lex_state = 5}, - [34] = {.lex_state = 32}, + [34] = {.lex_state = 29}, [35] = {.lex_state = 6}, [36] = {.lex_state = 5}, - [37] = {.lex_state = 8}, - [38] = {.lex_state = 26}, - [39] = {.lex_state = 22}, - [40] = {.lex_state = 146}, - [41] = {.lex_state = 8}, + [37] = {.lex_state = 7}, + [38] = {.lex_state = 25}, + [39] = {.lex_state = 21}, + [40] = {.lex_state = 145}, + [41] = {.lex_state = 7}, [42] = {.lex_state = 5}, [43] = {.lex_state = 5}, [44] = {.lex_state = 6}, - [45] = {.lex_state = 22}, + [45] = {.lex_state = 21}, [46] = {.lex_state = 5}, [47] = {.lex_state = 6}, - [48] = {.lex_state = 15}, - [49] = {.lex_state = 24}, - [50] = {.lex_state = 52}, - [51] = {.lex_state = 146}, - [52] = {.lex_state = 52}, - [53] = {.lex_state = 40}, + [48] = {.lex_state = 11}, + [49] = {.lex_state = 23}, + [50] = {.lex_state = 51}, + [51] = {.lex_state = 145}, + [52] = {.lex_state = 51}, + [53] = {.lex_state = 37}, [54] = {.lex_state = 6}, - [55] = {.lex_state = 21}, - [56] = {.lex_state = 36}, - [57] = {.lex_state = 21}, - [58] = {.lex_state = 20}, - [59] = {.lex_state = 20}, - [60] = {.lex_state = 21}, + [55] = {.lex_state = 20}, + [56] = {.lex_state = 31}, + [57] = {.lex_state = 20}, + [58] = {.lex_state = 19}, + [59] = {.lex_state = 19}, + [60] = {.lex_state = 20}, [61] = {.lex_state = 6}, - [62] = {.lex_state = 24}, - [63] = {.lex_state = 146}, - [64] = {.lex_state = 13}, + [62] = {.lex_state = 23}, + [63] = {.lex_state = 145}, + [64] = {.lex_state = 8}, [65] = {.lex_state = 6}, - [66] = {.lex_state = 14}, - [67] = {.lex_state = 23}, - [68] = {.lex_state = 23}, - [69] = {.lex_state = 36}, + [66] = {.lex_state = 9}, + [67] = {.lex_state = 22}, + [68] = {.lex_state = 22}, + [69] = {.lex_state = 31}, [70] = {.lex_state = 6}, - [71] = {.lex_state = 23}, - [72] = {.lex_state = 13}, - [73] = {.lex_state = 20}, - [74] = {.lex_state = 52}, - [75] = {.lex_state = 24}, - [76] = {.lex_state = 14}, - [77] = {.lex_state = 8}, - [78] = {.lex_state = 30}, - [79] = {.lex_state = 30}, + [71] = {.lex_state = 22}, + [72] = {.lex_state = 8}, + [73] = {.lex_state = 19}, + [74] = {.lex_state = 51}, + [75] = {.lex_state = 23}, + [76] = {.lex_state = 9}, + [77] = {.lex_state = 7}, + [78] = {.lex_state = 28}, + [79] = {.lex_state = 28}, [80] = {.lex_state = 44}, - [81] = {.lex_state = 30}, - [82] = {.lex_state = 30}, - [83] = {.lex_state = 37}, - [84] = {.lex_state = 26}, + [81] = {.lex_state = 28}, + [82] = {.lex_state = 28}, + [83] = {.lex_state = 32}, + [84] = {.lex_state = 25}, [85] = {.lex_state = 6}, - [86] = {.lex_state = 26}, - [87] = {.lex_state = 30}, - [88] = {.lex_state = 17}, - [89] = {.lex_state = 146}, - [90] = {.lex_state = 18}, - [91] = {.lex_state = 8}, - [92] = {.lex_state = 30}, - [93] = {.lex_state = 19}, + [86] = {.lex_state = 25}, + [87] = {.lex_state = 28}, + [88] = {.lex_state = 14}, + [89] = {.lex_state = 145}, + [90] = {.lex_state = 13}, + [91] = {.lex_state = 7}, + [92] = {.lex_state = 28}, + [93] = {.lex_state = 18}, [94] = {.lex_state = 5}, [95] = {.lex_state = 5}, - [96] = {.lex_state = 8}, + [96] = {.lex_state = 7}, [97] = {.lex_state = 5}, - [98] = {.lex_state = 51}, - [99] = {.lex_state = 35}, - [100] = {.lex_state = 15}, - [101] = {.lex_state = 26}, - [102] = {.lex_state = 37}, - [103] = {.lex_state = 30}, - [104] = {.lex_state = 19}, - [105] = {.lex_state = 18}, - [106] = {.lex_state = 17}, - [107] = {.lex_state = 37}, - [108] = {.lex_state = 30}, - [109] = {.lex_state = 14}, - [110] = {.lex_state = 146}, - [111] = {.lex_state = 52}, - [112] = {.lex_state = 45}, + [98] = {.lex_state = 50}, + [99] = {.lex_state = 30}, + [100] = {.lex_state = 11}, + [101] = {.lex_state = 25}, + [102] = {.lex_state = 32}, + [103] = {.lex_state = 28}, + [104] = {.lex_state = 18}, + [105] = {.lex_state = 13}, + [106] = {.lex_state = 14}, + [107] = {.lex_state = 32}, + [108] = {.lex_state = 28}, + [109] = {.lex_state = 9}, + [110] = {.lex_state = 145}, + [111] = {.lex_state = 51}, + [112] = {.lex_state = 46}, [113] = {.lex_state = 6}, - [114] = {.lex_state = 146}, - [115] = {.lex_state = 146}, - [116] = {.lex_state = 52}, - [117] = {.lex_state = 24}, - [118] = {.lex_state = 27}, - [119] = {.lex_state = 52}, - [120] = {.lex_state = 27}, - [121] = {.lex_state = 27}, - [122] = {.lex_state = 24}, - [123] = {.lex_state = 24}, - [124] = {.lex_state = 14}, - [125] = {.lex_state = 14}, - [126] = {.lex_state = 13}, - [127] = {.lex_state = 13}, - [128] = {.lex_state = 146}, - [129] = {.lex_state = 13}, + [114] = {.lex_state = 145}, + [115] = {.lex_state = 145}, + [116] = {.lex_state = 51}, + [117] = {.lex_state = 23}, + [118] = {.lex_state = 24}, + [119] = {.lex_state = 51}, + [120] = {.lex_state = 24}, + [121] = {.lex_state = 24}, + [122] = {.lex_state = 23}, + [123] = {.lex_state = 23}, + [124] = {.lex_state = 9}, + [125] = {.lex_state = 9}, + [126] = {.lex_state = 8}, + [127] = {.lex_state = 8}, + [128] = {.lex_state = 145}, + [129] = {.lex_state = 8}, [130] = {.lex_state = 6}, [131] = {.lex_state = 6}, - [132] = {.lex_state = 19}, - [133] = {.lex_state = 15}, - [134] = {.lex_state = 40}, - [135] = {.lex_state = 15}, - [136] = {.lex_state = 146}, - [137] = {.lex_state = 42}, - [138] = {.lex_state = 42}, - [139] = {.lex_state = 146}, - [140] = {.lex_state = 42}, - [141] = {.lex_state = 42}, - [142] = {.lex_state = 42}, - [143] = {.lex_state = 42}, - [144] = {.lex_state = 42}, - [145] = {.lex_state = 42}, + [132] = {.lex_state = 18}, + [133] = {.lex_state = 11}, + [134] = {.lex_state = 37}, + [135] = {.lex_state = 11}, + [136] = {.lex_state = 145}, + [137] = {.lex_state = 39}, + [138] = {.lex_state = 39}, + [139] = {.lex_state = 145}, + [140] = {.lex_state = 39}, + [141] = {.lex_state = 39}, + [142] = {.lex_state = 39}, + [143] = {.lex_state = 39}, + [144] = {.lex_state = 39}, + [145] = {.lex_state = 39}, [146] = {.lex_state = 6}, - [147] = {.lex_state = 42}, - [148] = {.lex_state = 18}, - [149] = {.lex_state = 42}, - [150] = {.lex_state = 17}, - [151] = {.lex_state = 42}, + [147] = {.lex_state = 39}, + [148] = {.lex_state = 13}, + [149] = {.lex_state = 39}, + [150] = {.lex_state = 14}, + [151] = {.lex_state = 39}, [152] = {.lex_state = 0}, - [153] = {.lex_state = 42}, - [154] = {.lex_state = 15}, + [153] = {.lex_state = 39}, + [154] = {.lex_state = 11}, [155] = {.lex_state = 6}, - [156] = {.lex_state = 18}, - [157] = {.lex_state = 27}, - [158] = {.lex_state = 39}, - [159] = {.lex_state = 17}, + [156] = {.lex_state = 13}, + [157] = {.lex_state = 24}, + [158] = {.lex_state = 35}, + [159] = {.lex_state = 14}, [160] = {.lex_state = 6}, - [161] = {.lex_state = 17}, - [162] = {.lex_state = 50}, - [163] = {.lex_state = 146}, - [164] = {.lex_state = 17}, - [165] = {.lex_state = 146}, - [166] = {.lex_state = 15}, - [167] = {.lex_state = 146}, + [161] = {.lex_state = 14}, + [162] = {.lex_state = 49}, + [163] = {.lex_state = 145}, + [164] = {.lex_state = 14}, + [165] = {.lex_state = 145}, + [166] = {.lex_state = 11}, + [167] = {.lex_state = 145}, [168] = {.lex_state = 6}, - [169] = {.lex_state = 146}, - [170] = {.lex_state = 18}, - [171] = {.lex_state = 30}, - [172] = {.lex_state = 18}, - [173] = {.lex_state = 43}, - [174] = {.lex_state = 146}, - [175] = {.lex_state = 43}, + [169] = {.lex_state = 145}, + [170] = {.lex_state = 13}, + [171] = {.lex_state = 28}, + [172] = {.lex_state = 13}, + [173] = {.lex_state = 40}, + [174] = {.lex_state = 145}, + [175] = {.lex_state = 40}, [176] = {.lex_state = 6}, - [177] = {.lex_state = 43}, + [177] = {.lex_state = 40}, [178] = {.lex_state = 6}, [179] = {.lex_state = 6}, - [180] = {.lex_state = 146}, - [181] = {.lex_state = 43}, + [180] = {.lex_state = 145}, + [181] = {.lex_state = 40}, [182] = {.lex_state = 6}, [183] = {.lex_state = 6}, - [184] = {.lex_state = 43}, + [184] = {.lex_state = 40}, [185] = {.lex_state = 6}, - [186] = {.lex_state = 43}, - [187] = {.lex_state = 43}, - [188] = {.lex_state = 43}, - [189] = {.lex_state = 146}, - [190] = {.lex_state = 43}, - [191] = {.lex_state = 53}, + [186] = {.lex_state = 40}, + [187] = {.lex_state = 40}, + [188] = {.lex_state = 40}, + [189] = {.lex_state = 145}, + [190] = {.lex_state = 40}, + [191] = {.lex_state = 52}, [192] = {.lex_state = 6}, - [193] = {.lex_state = 46}, + [193] = {.lex_state = 47}, [194] = {.lex_state = 6}, - [195] = {.lex_state = 43}, + [195] = {.lex_state = 40}, [196] = {.lex_state = 6}, [197] = {.lex_state = 6}, - [198] = {.lex_state = 43}, - [199] = {.lex_state = 43}, - [200] = {.lex_state = 43}, + [198] = {.lex_state = 40}, + [199] = {.lex_state = 40}, + [200] = {.lex_state = 40}, [201] = {.lex_state = 6}, [202] = {.lex_state = 6}, [203] = {.lex_state = 6}, - [204] = {.lex_state = 43}, - [205] = {.lex_state = 43}, + [204] = {.lex_state = 40}, + [205] = {.lex_state = 40}, [206] = {.lex_state = 6}, [207] = {.lex_state = 6}, - [208] = {.lex_state = 226}, - [209] = {.lex_state = 48}, - [210] = {.lex_state = 146}, + [208] = {.lex_state = 225}, + [209] = {.lex_state = 42}, + [210] = {.lex_state = 145}, [211] = {.lex_state = 6}, [212] = {.lex_state = 6}, [213] = {.lex_state = 6}, [214] = {.lex_state = 6}, - [215] = {.lex_state = 48}, + [215] = {.lex_state = 42}, [216] = {.lex_state = 6}, [217] = {.lex_state = 6}, - [218] = {.lex_state = 54}, - [219] = {.lex_state = 43}, - [220] = {.lex_state = 146}, - [221] = {.lex_state = 54}, - [222] = {.lex_state = 43}, + [218] = {.lex_state = 53}, + [219] = {.lex_state = 40}, + [220] = {.lex_state = 145}, + [221] = {.lex_state = 53}, + [222] = {.lex_state = 40}, [223] = {.lex_state = 6}, - [224] = {.lex_state = 43}, - [225] = {.lex_state = 146}, - [226] = {.lex_state = 54}, - [227] = {.lex_state = 43}, - [228] = {.lex_state = 43}, - [229] = {.lex_state = 146}, + [224] = {.lex_state = 40}, + [225] = {.lex_state = 145}, + [226] = {.lex_state = 53}, + [227] = {.lex_state = 40}, + [228] = {.lex_state = 40}, + [229] = {.lex_state = 145}, [230] = {.lex_state = 6}, - [231] = {.lex_state = 146}, - [232] = {.lex_state = 43}, - [233] = {.lex_state = 146}, + [231] = {.lex_state = 145}, + [232] = {.lex_state = 40}, + [233] = {.lex_state = 145}, [234] = {.lex_state = 6}, - [235] = {.lex_state = 146}, + [235] = {.lex_state = 145}, [236] = {.lex_state = 6}, - [237] = {.lex_state = 146}, - [238] = {.lex_state = 226}, - [239] = {.lex_state = 146}, + [237] = {.lex_state = 145}, + [238] = {.lex_state = 225}, + [239] = {.lex_state = 145}, [240] = {.lex_state = 6}, - [241] = {.lex_state = 146}, + [241] = {.lex_state = 145}, [242] = {.lex_state = 6}, - [243] = {.lex_state = 146}, + [243] = {.lex_state = 145}, [244] = {.lex_state = 0}, - [245] = {.lex_state = 146}, - [246] = {.lex_state = 53}, - [247] = {.lex_state = 146}, - [248] = {.lex_state = 53}, - [249] = {.lex_state = 146}, - [250] = {.lex_state = 53}, - [251] = {.lex_state = 53}, - [252] = {.lex_state = 53}, - [253] = {.lex_state = 53}, - [254] = {.lex_state = 53}, - [255] = {.lex_state = 53}, - [256] = {.lex_state = 53}, - [257] = {.lex_state = 53}, - [258] = {.lex_state = 53}, - [259] = {.lex_state = 48}, + [245] = {.lex_state = 145}, + [246] = {.lex_state = 52}, + [247] = {.lex_state = 145}, + [248] = {.lex_state = 52}, + [249] = {.lex_state = 145}, + [250] = {.lex_state = 52}, + [251] = {.lex_state = 52}, + [252] = {.lex_state = 52}, + [253] = {.lex_state = 52}, + [254] = {.lex_state = 52}, + [255] = {.lex_state = 52}, + [256] = {.lex_state = 52}, + [257] = {.lex_state = 52}, + [258] = {.lex_state = 52}, + [259] = {.lex_state = 42}, [260] = {(TSStateId)(-1)}, }; @@ -3259,11 +3245,11 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(132), 1, + anon_sym_DOLLAR, ACTIONS(134), 1, aux_sym_image_name_token1, ACTIONS(136), 1, - anon_sym_DOLLAR, - ACTIONS(138), 1, anon_sym_DASH_DASH, STATE(10), 1, aux_sym_image_name_repeat1, @@ -3304,15 +3290,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(140), 1, + ACTIONS(138), 1, anon_sym_LF, - ACTIONS(142), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(145), 1, + ACTIONS(143), 1, aux_sym_label_pair_token1, - ACTIONS(147), 1, + ACTIONS(145), 1, aux_sym_unquoted_string_token1, - ACTIONS(150), 1, + ACTIONS(148), 1, anon_sym_BSLASH, STATE(73), 1, sym_expansion, @@ -3324,7 +3310,7 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_LBRACK, STATE(14), 1, sym_comment, @@ -3332,7 +3318,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_shell_fragment_repeat1, STATE(155), 1, sym_shell_fragment, - ACTIONS(155), 2, + ACTIONS(153), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(213), 2, @@ -3341,7 +3327,7 @@ static uint16_t ts_small_parse_table[] = { [565] = 8, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(157), 1, + ACTIONS(155), 1, anon_sym_POUND, STATE(15), 1, sym_comment, @@ -3351,7 +3337,7 @@ static uint16_t ts_small_parse_table[] = { sym__anon_comment, STATE(236), 1, sym_shell_fragment, - ACTIONS(155), 2, + ACTIONS(153), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(20), 2, @@ -3362,15 +3348,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(140), 1, + ACTIONS(138), 1, anon_sym_LF, - ACTIONS(145), 1, + ACTIONS(143), 1, aux_sym_env_pair_token1, - ACTIONS(159), 1, + ACTIONS(157), 1, anon_sym_DOLLAR, - ACTIONS(162), 1, + ACTIONS(160), 1, aux_sym_unquoted_string_token1, - ACTIONS(165), 1, + ACTIONS(163), 1, anon_sym_BSLASH, STATE(60), 1, sym_expansion, @@ -3382,15 +3368,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(170), 1, + ACTIONS(168), 1, aux_sym_from_instruction_token2, - ACTIONS(172), 1, + ACTIONS(170), 1, anon_sym_DOLLAR, - ACTIONS(175), 1, + ACTIONS(173), 1, aux_sym_image_tag_token1, STATE(71), 1, sym_expansion, - ACTIONS(168), 2, + ACTIONS(166), 2, anon_sym_LF, anon_sym_AT, STATE(17), 2, @@ -3399,17 +3385,17 @@ static uint16_t ts_small_parse_table[] = { [648] = 10, ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(108), 1, + anon_sym_DOLLAR, ACTIONS(112), 1, aux_sym_unquoted_string_token1, ACTIONS(114), 1, anon_sym_BSLASH, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(178), 1, + ACTIONS(176), 1, anon_sym_LF, - ACTIONS(180), 1, - anon_sym_DOLLAR, - ACTIONS(182), 1, + ACTIONS(178), 1, aux_sym_env_pair_token1, STATE(16), 1, aux_sym_unquoted_string_repeat1, @@ -3418,6 +3404,8 @@ static uint16_t ts_small_parse_table[] = { STATE(60), 1, sym_expansion, [679] = 10, + ACTIONS(98), 1, + anon_sym_DOLLAR, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(104), 1, @@ -3426,12 +3414,10 @@ static uint16_t ts_small_parse_table[] = { anon_sym_BSLASH, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(178), 1, + ACTIONS(176), 1, anon_sym_LF, - ACTIONS(182), 1, + ACTIONS(178), 1, aux_sym_label_pair_token1, - ACTIONS(184), 1, - anon_sym_DOLLAR, STATE(13), 1, aux_sym_unquoted_string_repeat1, STATE(19), 1, @@ -3441,7 +3427,7 @@ static uint16_t ts_small_parse_table[] = { [710] = 8, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(157), 1, + ACTIONS(155), 1, anon_sym_POUND, STATE(20), 1, sym_comment, @@ -3451,7 +3437,7 @@ static uint16_t ts_small_parse_table[] = { sym_shell_fragment, STATE(234), 1, sym__anon_comment, - ACTIONS(155), 2, + ACTIONS(153), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(53), 2, @@ -3462,7 +3448,7 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_LBRACK, STATE(21), 1, sym_comment, @@ -3470,7 +3456,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_shell_fragment_repeat1, STATE(155), 1, sym_shell_fragment, - ACTIONS(155), 2, + ACTIONS(153), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(203), 2, @@ -3481,7 +3467,7 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_LBRACK, STATE(22), 1, sym_comment, @@ -3489,7 +3475,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_shell_fragment_repeat1, STATE(155), 1, sym_shell_fragment, - ACTIONS(155), 2, + ACTIONS(153), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(211), 2, @@ -3500,11 +3486,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(188), 1, + ACTIONS(182), 1, aux_sym_from_instruction_token2, - ACTIONS(190), 1, + ACTIONS(184), 1, anon_sym_DOLLAR, - ACTIONS(192), 1, + ACTIONS(186), 1, aux_sym_image_tag_token1, STATE(17), 1, aux_sym_image_tag_repeat1, @@ -3512,7 +3498,7 @@ static uint16_t ts_small_parse_table[] = { sym_comment, STATE(71), 1, sym_expansion, - ACTIONS(186), 2, + ACTIONS(180), 2, anon_sym_LF, anon_sym_AT, [820] = 8, @@ -3520,9 +3506,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(196), 1, + ACTIONS(190), 1, aux_sym_path_token2, - ACTIONS(198), 1, + ACTIONS(192), 1, anon_sym_DOLLAR, STATE(24), 1, sym_comment, @@ -3530,7 +3516,7 @@ static uint16_t ts_small_parse_table[] = { aux_sym_path_repeat1, STATE(101), 1, sym_expansion, - ACTIONS(194), 2, + ACTIONS(188), 2, anon_sym_LF, sym__non_newline_whitespace, [846] = 9, @@ -3538,13 +3524,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(202), 1, + ACTIONS(196), 1, anon_sym_DQUOTE, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, STATE(25), 1, sym_comment, @@ -3557,13 +3543,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(210), 1, + ACTIONS(204), 1, aux_sym__user_name_group_token1, - ACTIONS(213), 1, + ACTIONS(207), 1, anon_sym_DOLLAR, STATE(85), 1, sym_expansion, - ACTIONS(208), 2, + ACTIONS(202), 2, anon_sym_LF, anon_sym_COLON, STATE(26), 2, @@ -3574,13 +3560,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, - ACTIONS(216), 1, + ACTIONS(210), 1, anon_sym_DQUOTE, STATE(27), 1, sym_comment, @@ -3593,9 +3579,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(196), 1, + ACTIONS(190), 1, aux_sym_path_token2, - ACTIONS(198), 1, + ACTIONS(192), 1, anon_sym_DOLLAR, STATE(24), 1, aux_sym_path_repeat1, @@ -3603,7 +3589,7 @@ static uint16_t ts_small_parse_table[] = { sym_comment, STATE(101), 1, sym_expansion, - ACTIONS(218), 2, + ACTIONS(212), 2, anon_sym_LF, sym__non_newline_whitespace, [952] = 5, @@ -3613,23 +3599,23 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(29), 1, sym_comment, - ACTIONS(220), 3, + ACTIONS(216), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token1, + ACTIONS(214), 4, anon_sym_LF, anon_sym_COLON, - anon_sym_AT, - ACTIONS(222), 3, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, - aux_sym_image_name_token1, + anon_sym_AT, [972] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(132), 1, + anon_sym_DOLLAR, ACTIONS(134), 1, aux_sym_image_name_token1, - ACTIONS(136), 1, - anon_sym_DOLLAR, STATE(10), 1, aux_sym_image_name_repeat1, STATE(30), 1, @@ -3645,11 +3631,11 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(224), 1, + ACTIONS(218), 1, aux_sym_path_token1, - ACTIONS(226), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, - ACTIONS(228), 1, + ACTIONS(222), 1, anon_sym_DASH_DASH, STATE(31), 1, sym_comment, @@ -3664,11 +3650,11 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(224), 1, + ACTIONS(218), 1, aux_sym_path_token1, - ACTIONS(226), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, - ACTIONS(228), 1, + ACTIONS(222), 1, anon_sym_DASH_DASH, STATE(32), 1, sym_comment, @@ -3683,13 +3669,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(230), 1, + ACTIONS(224), 1, anon_sym_DOLLAR, - ACTIONS(233), 1, + ACTIONS(227), 1, anon_sym_DQUOTE, - ACTIONS(235), 1, + ACTIONS(229), 1, aux_sym_double_quoted_string_token1, - ACTIONS(238), 1, + ACTIONS(232), 1, sym_escape_sequence, STATE(95), 1, sym_expansion, @@ -3701,12 +3687,12 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_LBRACK, - ACTIONS(241), 1, - aux_sym_path_token1, - ACTIONS(243), 1, + ACTIONS(192), 1, anon_sym_DOLLAR, + ACTIONS(235), 1, + aux_sym_path_token1, STATE(28), 1, sym_expansion, STATE(34), 1, @@ -3720,11 +3706,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(245), 1, + ACTIONS(237), 1, anon_sym_LF, - ACTIONS(247), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, - ACTIONS(249), 1, + ACTIONS(241), 1, aux_sym_expose_port_token1, STATE(35), 1, sym_comment, @@ -3739,13 +3725,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, - ACTIONS(251), 1, + ACTIONS(243), 1, anon_sym_DQUOTE, STATE(33), 1, aux_sym_double_quoted_string_repeat1, @@ -3758,13 +3744,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(253), 1, + ACTIONS(245), 1, anon_sym_LF, - ACTIONS(255), 1, + ACTIONS(247), 1, aux_sym_from_instruction_token2, - ACTIONS(257), 1, + ACTIONS(249), 1, anon_sym_DOLLAR, - ACTIONS(259), 1, + ACTIONS(251), 1, aux_sym_image_digest_token1, STATE(37), 1, sym_comment, @@ -3777,13 +3763,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(263), 1, + ACTIONS(255), 1, aux_sym_path_token2, - ACTIONS(266), 1, + ACTIONS(258), 1, anon_sym_DOLLAR, STATE(101), 1, sym_expansion, - ACTIONS(261), 2, + ACTIONS(253), 2, anon_sym_LF, sym__non_newline_whitespace, STATE(38), 2, @@ -3796,14 +3782,14 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(39), 1, sym_comment, - ACTIONS(269), 3, + ACTIONS(263), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token1, + ACTIONS(261), 4, anon_sym_LF, anon_sym_COLON, - anon_sym_AT, - ACTIONS(271), 3, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, - aux_sym_image_name_token1, + anon_sym_AT, [1238] = 9, ACTIONS(3), 1, sym_line_continuation, @@ -3811,9 +3797,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(13), 1, aux_sym_cmd_instruction_token1, - ACTIONS(273), 1, + ACTIONS(265), 1, anon_sym_NONE, - ACTIONS(275), 1, + ACTIONS(267), 1, anon_sym_DASH_DASH, STATE(40), 1, sym_comment, @@ -3828,13 +3814,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(277), 1, + ACTIONS(269), 1, anon_sym_LF, - ACTIONS(279), 1, + ACTIONS(271), 1, aux_sym_from_instruction_token2, - ACTIONS(281), 1, + ACTIONS(273), 1, anon_sym_DOLLAR, - ACTIONS(284), 1, + ACTIONS(276), 1, aux_sym_image_digest_token1, STATE(96), 1, sym_expansion, @@ -3846,13 +3832,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, - ACTIONS(287), 1, + ACTIONS(279), 1, anon_sym_DQUOTE, STATE(42), 1, sym_comment, @@ -3865,13 +3851,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, - ACTIONS(289), 1, + ACTIONS(281), 1, anon_sym_DQUOTE, STATE(33), 1, aux_sym_double_quoted_string_repeat1, @@ -3884,13 +3870,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(247), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, - ACTIONS(291), 1, + ACTIONS(283), 1, anon_sym_LF, - ACTIONS(293), 1, + ACTIONS(285), 1, anon_sym_COLON, - ACTIONS(295), 1, + ACTIONS(287), 1, aux_sym__user_name_group_token1, STATE(26), 1, aux_sym__user_name_group, @@ -3905,26 +3891,26 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(45), 1, sym_comment, - ACTIONS(297), 3, + ACTIONS(291), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token1, + ACTIONS(289), 4, anon_sym_LF, anon_sym_COLON, - anon_sym_AT, - ACTIONS(299), 3, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, - aux_sym_image_name_token1, + anon_sym_AT, [1396] = 9, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(200), 1, + ACTIONS(194), 1, anon_sym_DOLLAR, - ACTIONS(204), 1, + ACTIONS(198), 1, aux_sym_double_quoted_string_token1, - ACTIONS(206), 1, + ACTIONS(200), 1, sym_escape_sequence, - ACTIONS(301), 1, + ACTIONS(293), 1, anon_sym_DQUOTE, STATE(27), 1, aux_sym_double_quoted_string_repeat1, @@ -3937,11 +3923,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(303), 1, + ACTIONS(295), 1, anon_sym_LF, - ACTIONS(305), 1, + ACTIONS(297), 1, anon_sym_DOLLAR, - ACTIONS(308), 1, + ACTIONS(300), 1, aux_sym_expose_port_token1, STATE(130), 1, sym_expose_port, @@ -3955,13 +3941,13 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(311), 1, + ACTIONS(303), 1, anon_sym_LF, - ACTIONS(313), 1, + ACTIONS(305), 1, aux_sym_from_instruction_token2, - ACTIONS(315), 1, + ACTIONS(307), 1, anon_sym_COLON, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_AT, STATE(48), 1, sym_comment, @@ -3974,11 +3960,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(319), 1, + ACTIONS(311), 1, anon_sym_LF, - ACTIONS(321), 1, + ACTIONS(313), 1, aux_sym_path_token2, - ACTIONS(324), 1, + ACTIONS(316), 1, anon_sym_DOLLAR, STATE(117), 1, sym_expansion, @@ -3990,11 +3976,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(327), 1, - aux_sym_path_token2, - ACTIONS(329), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, - ACTIONS(331), 1, + ACTIONS(319), 1, + aux_sym_path_token2, + ACTIONS(321), 1, sym__non_newline_whitespace, STATE(50), 1, sym_comment, @@ -4007,9 +3993,9 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(333), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, - ACTIONS(335), 1, + ACTIONS(323), 1, aux_sym_expose_port_token1, STATE(35), 1, aux_sym_expose_instruction_repeat1, @@ -4024,11 +4010,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(327), 1, - aux_sym_path_token2, - ACTIONS(329), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, - ACTIONS(337), 1, + ACTIONS(319), 1, + aux_sym_path_token2, + ACTIONS(325), 1, sym__non_newline_whitespace, STATE(52), 1, sym_comment, @@ -4039,11 +4025,11 @@ static uint16_t ts_small_parse_table[] = { [1576] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(341), 1, + ACTIONS(329), 1, anon_sym_POUND, STATE(234), 1, sym__anon_comment, - ACTIONS(339), 2, + ACTIONS(327), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(53), 3, @@ -4055,15 +4041,15 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(216), 1, + aux_sym_expose_port_token1, STATE(54), 1, sym_comment, - ACTIONS(222), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - ACTIONS(220), 3, + ACTIONS(214), 4, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, + anon_sym_DOLLAR, [1614] = 5, ACTIONS(100), 1, anon_sym_POUND, @@ -4071,21 +4057,21 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(55), 1, sym_comment, - ACTIONS(269), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(271), 3, - anon_sym_DOLLAR, + ACTIONS(263), 2, aux_sym_env_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(261), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [1633] = 8, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(344), 1, + ACTIONS(332), 1, anon_sym_DOLLAR, - ACTIONS(346), 1, + ACTIONS(334), 1, aux_sym_image_alias_token1, STATE(56), 1, sym_comment, @@ -4102,13 +4088,13 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(57), 1, sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(222), 3, - anon_sym_DOLLAR, + ACTIONS(216), 2, aux_sym_env_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(214), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [1677] = 5, ACTIONS(100), 1, anon_sym_POUND, @@ -4116,13 +4102,13 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(58), 1, sym_comment, - ACTIONS(269), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(271), 3, - anon_sym_DOLLAR, + ACTIONS(263), 2, aux_sym_label_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(261), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [1696] = 5, ACTIONS(100), 1, anon_sym_POUND, @@ -4130,13 +4116,13 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(59), 1, sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(222), 3, - anon_sym_DOLLAR, + ACTIONS(216), 2, aux_sym_label_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(214), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [1715] = 5, ACTIONS(100), 1, anon_sym_POUND, @@ -4144,37 +4130,37 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(60), 1, sym_comment, - ACTIONS(348), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(350), 3, - anon_sym_DOLLAR, + ACTIONS(338), 2, aux_sym_env_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(336), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [1734] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(263), 1, + aux_sym_expose_port_token1, STATE(61), 1, sym_comment, - ACTIONS(271), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - ACTIONS(269), 3, + ACTIONS(261), 4, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, + anon_sym_DOLLAR, [1753] = 8, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(331), 1, + ACTIONS(321), 1, anon_sym_LF, - ACTIONS(352), 1, + ACTIONS(340), 1, aux_sym_path_token2, - ACTIONS(354), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, STATE(62), 1, sym_comment, @@ -4189,7 +4175,7 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(13), 1, aux_sym_cmd_instruction_token1, - ACTIONS(275), 1, + ACTIONS(267), 1, anon_sym_DASH_DASH, STATE(63), 1, sym_comment, @@ -4204,11 +4190,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(356), 1, + ACTIONS(344), 1, anon_sym_LF, - ACTIONS(358), 1, + ACTIONS(346), 1, anon_sym_DOLLAR, - ACTIONS(361), 1, + ACTIONS(349), 1, aux_sym_image_alias_token1, STATE(127), 1, sym_expansion, @@ -4220,11 +4206,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(247), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, - ACTIONS(295), 1, + ACTIONS(287), 1, aux_sym__user_name_group_token1, - ACTIONS(364), 1, + ACTIONS(352), 1, anon_sym_LF, STATE(26), 1, aux_sym__user_name_group, @@ -4237,11 +4223,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(366), 1, + ACTIONS(354), 1, anon_sym_LF, - ACTIONS(368), 1, + ACTIONS(356), 1, aux_sym__stopsignal_value_token1, - ACTIONS(370), 1, + ACTIONS(358), 1, anon_sym_DOLLAR, STATE(66), 1, sym_comment, @@ -4256,13 +4242,13 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(67), 1, sym_comment, - ACTIONS(269), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(271), 3, + ACTIONS(263), 2, aux_sym_from_instruction_token2, - anon_sym_DOLLAR, aux_sym_image_tag_token1, + ACTIONS(261), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_AT, [1895] = 5, ACTIONS(100), 1, anon_sym_POUND, @@ -4270,21 +4256,21 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(68), 1, sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(222), 3, + ACTIONS(216), 2, aux_sym_from_instruction_token2, - anon_sym_DOLLAR, aux_sym_image_tag_token1, + ACTIONS(214), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_AT, [1914] = 8, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(344), 1, + ACTIONS(332), 1, anon_sym_DOLLAR, - ACTIONS(346), 1, + ACTIONS(334), 1, aux_sym_image_alias_token1, STATE(69), 1, sym_comment, @@ -4299,14 +4285,14 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(372), 1, - anon_sym_LF, + ACTIONS(362), 1, + aux_sym_expose_port_token1, STATE(70), 1, sym_comment, - ACTIONS(374), 2, + ACTIONS(360), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_expose_port_token1, - ACTIONS(376), 2, + ACTIONS(364), 2, anon_sym_SLASHtcp, anon_sym_SLASHudp, [1960] = 5, @@ -4316,23 +4302,23 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(71), 1, sym_comment, - ACTIONS(378), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(380), 3, + ACTIONS(368), 2, aux_sym_from_instruction_token2, - anon_sym_DOLLAR, aux_sym_image_tag_token1, + ACTIONS(366), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_AT, [1979] = 8, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(382), 1, - anon_sym_LF, - ACTIONS(384), 1, + ACTIONS(332), 1, anon_sym_DOLLAR, - ACTIONS(386), 1, + ACTIONS(370), 1, + anon_sym_LF, + ACTIONS(372), 1, aux_sym_image_alias_token1, STATE(64), 1, aux_sym_image_alias_repeat1, @@ -4347,23 +4333,23 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, STATE(73), 1, sym_comment, - ACTIONS(348), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(350), 3, - anon_sym_DOLLAR, + ACTIONS(338), 2, aux_sym_label_pair_token1, aux_sym_unquoted_string_token1, + ACTIONS(336), 3, + anon_sym_LF, + anon_sym_DOLLAR, + anon_sym_BSLASH, [2023] = 7, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(319), 1, + ACTIONS(311), 1, sym__non_newline_whitespace, - ACTIONS(388), 1, + ACTIONS(374), 1, aux_sym_path_token2, - ACTIONS(391), 1, + ACTIONS(377), 1, anon_sym_DOLLAR, STATE(111), 1, sym_expansion, @@ -4375,11 +4361,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(337), 1, + ACTIONS(325), 1, anon_sym_LF, - ACTIONS(352), 1, + ACTIONS(340), 1, aux_sym_path_token2, - ACTIONS(354), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, STATE(49), 1, aux_sym_path_repeat1, @@ -4392,11 +4378,11 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(394), 1, + ACTIONS(380), 1, anon_sym_LF, - ACTIONS(396), 1, + ACTIONS(382), 1, aux_sym__stopsignal_value_token1, - ACTIONS(399), 1, + ACTIONS(385), 1, anon_sym_DOLLAR, STATE(109), 1, sym_expansion, @@ -4408,23 +4394,23 @@ static uint16_t ts_small_parse_table[] = { anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(263), 1, + aux_sym_from_instruction_token2, STATE(77), 1, sym_comment, - ACTIONS(269), 2, + ACTIONS(261), 3, anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(271), 2, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, + aux_sym_image_digest_token1, [2112] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(402), 1, - aux_sym_path_token1, - ACTIONS(404), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, + ACTIONS(388), 1, + aux_sym_path_token1, STATE(62), 1, sym_expansion, STATE(78), 1, @@ -4436,9 +4422,9 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(224), 1, + ACTIONS(218), 1, aux_sym_path_token1, - ACTIONS(226), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, STATE(50), 1, sym_expansion, @@ -4451,7 +4437,7 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(406), 1, + ACTIONS(390), 1, aux_sym_env_pair_token1, STATE(80), 1, sym_comment, @@ -4466,9 +4452,9 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(224), 1, + ACTIONS(218), 1, aux_sym_path_token1, - ACTIONS(226), 1, + ACTIONS(220), 1, anon_sym_DOLLAR, STATE(50), 1, sym_expansion, @@ -4481,10 +4467,10 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(402), 1, - aux_sym_path_token1, - ACTIONS(404), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, + ACTIONS(388), 1, + aux_sym_path_token1, STATE(62), 1, sym_expansion, STATE(82), 1, @@ -4496,76 +4482,77 @@ static uint16_t ts_small_parse_table[] = { sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(295), 1, - aux_sym__user_name_group_token1, - ACTIONS(333), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, + ACTIONS(287), 1, + aux_sym__user_name_group_token1, STATE(65), 1, aux_sym__user_name_group, STATE(83), 1, sym_comment, STATE(85), 1, sym_expansion, - [2244] = 4, + [2244] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(261), 1, + anon_sym_DOLLAR, STATE(84), 1, sym_comment, - ACTIONS(271), 4, + ACTIONS(263), 3, anon_sym_LF, aux_sym_path_token2, - anon_sym_DOLLAR, sym__non_newline_whitespace, - [2260] = 5, + [2262] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(410), 1, - anon_sym_DOLLAR, STATE(85), 1, sym_comment, - ACTIONS(408), 3, + ACTIONS(392), 4, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, - [2278] = 4, + anon_sym_DOLLAR, + [2278] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(214), 1, + anon_sym_DOLLAR, STATE(86), 1, sym_comment, - ACTIONS(222), 4, + ACTIONS(216), 3, anon_sym_LF, aux_sym_path_token2, - anon_sym_DOLLAR, sym__non_newline_whitespace, - [2294] = 7, + [2296] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(241), 1, - aux_sym_path_token1, - ACTIONS(243), 1, + ACTIONS(192), 1, anon_sym_DOLLAR, + ACTIONS(235), 1, + aux_sym_path_token1, STATE(28), 1, sym_expansion, STATE(87), 1, sym_comment, STATE(157), 1, sym_path, - [2316] = 7, + [2318] = 7, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(412), 1, + ACTIONS(394), 1, anon_sym_LF, - ACTIONS(414), 1, + ACTIONS(396), 1, aux_sym_env_pair_token1, STATE(88), 1, sym_comment, @@ -4573,28 +4560,28 @@ static uint16_t ts_small_parse_table[] = { aux_sym_env_instruction_repeat1, STATE(159), 1, sym_env_pair, - [2338] = 6, + [2340] = 6, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(416), 1, + ACTIONS(398), 1, aux_sym_cmd_instruction_token1, - ACTIONS(418), 1, + ACTIONS(400), 1, anon_sym_DASH_DASH, STATE(165), 1, sym_param, STATE(89), 2, sym_comment, aux_sym_healthcheck_instruction_repeat1, - [2358] = 7, + [2360] = 7, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(421), 1, + ACTIONS(403), 1, anon_sym_LF, - ACTIONS(423), 1, + ACTIONS(405), 1, aux_sym_label_pair_token1, STATE(90), 1, sym_comment, @@ -4602,301 +4589,302 @@ static uint16_t ts_small_parse_table[] = { aux_sym_label_instruction_repeat1, STATE(156), 1, sym_label_pair, - [2380] = 5, + [2382] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(216), 1, + aux_sym_from_instruction_token2, STATE(91), 1, sym_comment, - ACTIONS(220), 2, + ACTIONS(214), 3, anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(222), 2, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, - [2398] = 7, + aux_sym_image_digest_token1, + [2400] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(402), 1, - aux_sym_path_token1, - ACTIONS(404), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, + ACTIONS(388), 1, + aux_sym_path_token1, STATE(62), 1, sym_expansion, STATE(92), 1, sym_comment, STATE(182), 1, sym_path, - [2420] = 6, + [2422] = 6, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(425), 1, + ACTIONS(407), 1, anon_sym_LF, - ACTIONS(429), 1, + ACTIONS(411), 1, sym_line_continuation, STATE(93), 1, sym_comment, STATE(104), 1, aux_sym_shell_fragment_repeat1, - ACTIONS(427), 2, + ACTIONS(409), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, - [2440] = 5, + [2442] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(220), 1, - aux_sym_double_quoted_string_token1, STATE(94), 1, sym_comment, - ACTIONS(222), 3, + ACTIONS(214), 2, anon_sym_DOLLAR, + aux_sym_double_quoted_string_token1, + ACTIONS(216), 2, anon_sym_DQUOTE, sym_escape_sequence, - [2458] = 5, + [2460] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(433), 1, - aux_sym_double_quoted_string_token1, STATE(95), 1, sym_comment, - ACTIONS(431), 3, + ACTIONS(413), 2, anon_sym_DOLLAR, + aux_sym_double_quoted_string_token1, + ACTIONS(415), 2, anon_sym_DQUOTE, sym_escape_sequence, - [2476] = 5, + [2478] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(419), 1, + aux_sym_from_instruction_token2, STATE(96), 1, sym_comment, - ACTIONS(435), 2, + ACTIONS(417), 3, anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(437), 2, - aux_sym_from_instruction_token2, anon_sym_DOLLAR, - [2494] = 5, + aux_sym_image_digest_token1, + [2496] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(269), 1, - aux_sym_double_quoted_string_token1, STATE(97), 1, sym_comment, - ACTIONS(271), 3, + ACTIONS(261), 2, anon_sym_DOLLAR, + aux_sym_double_quoted_string_token1, + ACTIONS(263), 2, anon_sym_DQUOTE, sym_escape_sequence, - [2512] = 7, + [2514] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(192), 1, - aux_sym_image_tag_token1, - ACTIONS(439), 1, + ACTIONS(184), 1, anon_sym_DOLLAR, + ACTIONS(186), 1, + aux_sym_image_tag_token1, STATE(23), 1, aux_sym_image_tag_repeat1, STATE(71), 1, sym_expansion, STATE(98), 1, sym_comment, - [2534] = 7, + [2536] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(259), 1, - aux_sym_image_digest_token1, - ACTIONS(441), 1, + ACTIONS(249), 1, anon_sym_DOLLAR, + ACTIONS(251), 1, + aux_sym_image_digest_token1, STATE(37), 1, aux_sym_image_digest_repeat1, STATE(96), 1, sym_expansion, STATE(99), 1, sym_comment, - [2556] = 7, + [2558] = 7, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(317), 1, + ACTIONS(309), 1, anon_sym_AT, - ACTIONS(443), 1, + ACTIONS(421), 1, anon_sym_LF, - ACTIONS(445), 1, + ACTIONS(423), 1, aux_sym_from_instruction_token2, STATE(100), 1, sym_comment, STATE(135), 1, sym_image_digest, - [2578] = 4, + [2580] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, + ACTIONS(427), 1, + anon_sym_DOLLAR, STATE(101), 1, sym_comment, - ACTIONS(447), 4, + ACTIONS(425), 3, anon_sym_LF, aux_sym_path_token2, - anon_sym_DOLLAR, sym__non_newline_whitespace, - [2594] = 7, + [2598] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(449), 1, - aux_sym__stopsignal_value_token1, - ACTIONS(451), 1, + ACTIONS(358), 1, anon_sym_DOLLAR, + ACTIONS(429), 1, + aux_sym__stopsignal_value_token1, STATE(66), 1, aux_sym__stopsignal_value, STATE(102), 1, sym_comment, STATE(109), 1, sym_expansion, - [2616] = 7, + [2620] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(402), 1, - aux_sym_path_token1, - ACTIONS(404), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, + ACTIONS(388), 1, + aux_sym_path_token1, STATE(62), 1, sym_expansion, STATE(103), 1, sym_comment, STATE(201), 1, sym_path, - [2638] = 5, + [2642] = 5, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(453), 1, + ACTIONS(431), 1, anon_sym_LF, - ACTIONS(458), 1, + ACTIONS(436), 1, sym_line_continuation, - ACTIONS(455), 2, + ACTIONS(433), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, STATE(104), 2, sym_comment, aux_sym_shell_fragment_repeat1, - [2656] = 6, + [2660] = 6, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(460), 1, + ACTIONS(438), 1, anon_sym_LF, - ACTIONS(462), 1, + ACTIONS(440), 1, aux_sym_label_pair_token1, STATE(156), 1, sym_label_pair, STATE(105), 2, sym_comment, aux_sym_label_instruction_repeat1, - [2676] = 6, + [2680] = 6, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(465), 1, + ACTIONS(443), 1, anon_sym_LF, - ACTIONS(467), 1, + ACTIONS(445), 1, aux_sym_env_pair_token1, STATE(159), 1, sym_env_pair, STATE(106), 2, sym_comment, aux_sym_env_instruction_repeat1, - [2696] = 7, + [2700] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(295), 1, - aux_sym__user_name_group_token1, - ACTIONS(333), 1, + ACTIONS(239), 1, anon_sym_DOLLAR, + ACTIONS(287), 1, + aux_sym__user_name_group_token1, STATE(44), 1, aux_sym__user_name_group, STATE(85), 1, sym_expansion, STATE(107), 1, sym_comment, - [2718] = 7, + [2722] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(402), 1, - aux_sym_path_token1, - ACTIONS(404), 1, + ACTIONS(342), 1, anon_sym_DOLLAR, + ACTIONS(388), 1, + aux_sym_path_token1, STATE(62), 1, sym_expansion, STATE(108), 1, sym_comment, STATE(217), 1, sym_path, - [2740] = 5, + [2744] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(470), 1, - anon_sym_LF, + ACTIONS(450), 1, + aux_sym__stopsignal_value_token1, STATE(109), 1, sym_comment, - ACTIONS(472), 2, - aux_sym__stopsignal_value_token1, + ACTIONS(448), 2, + anon_sym_LF, anon_sym_DOLLAR, - [2757] = 6, + [2761] = 6, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(474), 1, + ACTIONS(452), 1, anon_sym_COMMA, - ACTIONS(476), 1, + ACTIONS(454), 1, anon_sym_RBRACK, STATE(110), 1, sym_comment, STATE(128), 1, aux_sym_string_array_repeat1, - [2776] = 5, + [2780] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(478), 1, - sym__non_newline_whitespace, + ACTIONS(425), 1, + aux_sym_path_token2, STATE(111), 1, sym_comment, - ACTIONS(447), 2, - aux_sym_path_token2, + ACTIONS(427), 2, anon_sym_DOLLAR, - [2793] = 6, + sym__non_newline_whitespace, + [2797] = 6, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(480), 1, + ACTIONS(456), 1, aux_sym_label_pair_token1, STATE(90), 1, aux_sym_label_instruction_repeat1, @@ -4904,291 +4892,368 @@ static uint16_t ts_small_parse_table[] = { sym_comment, STATE(156), 1, sym_label_pair, - [2812] = 5, + [2816] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(482), 1, - anon_sym_LF, + ACTIONS(460), 1, + aux_sym_expose_port_token1, STATE(113), 1, sym_comment, - ACTIONS(484), 2, + ACTIONS(458), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [2829] = 5, + [2833] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(486), 1, + ACTIONS(462), 1, anon_sym_COMMA, - ACTIONS(489), 1, + ACTIONS(465), 1, anon_sym_RBRACK, STATE(114), 2, sym_comment, aux_sym_string_array_repeat1, - [2846] = 6, + [2850] = 6, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(491), 1, + ACTIONS(467), 1, anon_sym_RBRACK, - ACTIONS(493), 1, + ACTIONS(469), 1, anon_sym_DQUOTE, STATE(110), 1, sym_double_quoted_string, STATE(115), 1, sym_comment, - [2865] = 5, + [2869] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(220), 1, - sym__non_newline_whitespace, + ACTIONS(216), 1, + aux_sym_path_token2, STATE(116), 1, sym_comment, - ACTIONS(222), 2, - aux_sym_path_token2, + ACTIONS(214), 2, anon_sym_DOLLAR, - [2882] = 5, + sym__non_newline_whitespace, + [2886] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(478), 1, - anon_sym_LF, + ACTIONS(425), 1, + aux_sym_path_token2, STATE(117), 1, sym_comment, - ACTIONS(447), 2, - aux_sym_path_token2, + ACTIONS(427), 2, + anon_sym_LF, anon_sym_DOLLAR, - [2899] = 6, + [2903] = 6, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(495), 1, + ACTIONS(471), 1, anon_sym_LF, - ACTIONS(497), 1, + ACTIONS(473), 1, sym__non_newline_whitespace, STATE(118), 1, sym_comment, STATE(120), 1, aux_sym_volume_instruction_repeat1, - [2918] = 5, + [2922] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(269), 1, - sym__non_newline_whitespace, + ACTIONS(263), 1, + aux_sym_path_token2, STATE(119), 1, sym_comment, - ACTIONS(271), 2, - aux_sym_path_token2, + ACTIONS(261), 2, anon_sym_DOLLAR, - [2935] = 5, + sym__non_newline_whitespace, + [2939] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(499), 1, + ACTIONS(475), 1, anon_sym_LF, - ACTIONS(501), 1, + ACTIONS(477), 1, sym__non_newline_whitespace, STATE(120), 2, sym_comment, aux_sym_volume_instruction_repeat1, - [2952] = 6, + [2956] = 6, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(497), 1, + ACTIONS(473), 1, sym__non_newline_whitespace, - ACTIONS(504), 1, + ACTIONS(480), 1, anon_sym_LF, STATE(118), 1, aux_sym_volume_instruction_repeat1, STATE(121), 1, sym_comment, - [2971] = 5, + [2975] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(220), 1, - anon_sym_LF, + ACTIONS(216), 1, + aux_sym_path_token2, STATE(122), 1, sym_comment, - ACTIONS(222), 2, - aux_sym_path_token2, + ACTIONS(214), 2, + anon_sym_LF, anon_sym_DOLLAR, - [2988] = 5, + [2992] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(269), 1, - anon_sym_LF, + ACTIONS(263), 1, + aux_sym_path_token2, STATE(123), 1, sym_comment, - ACTIONS(271), 2, - aux_sym_path_token2, + ACTIONS(261), 2, + anon_sym_LF, anon_sym_DOLLAR, - [3005] = 5, + [3009] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(220), 1, - anon_sym_LF, + ACTIONS(216), 1, + aux_sym__stopsignal_value_token1, STATE(124), 1, sym_comment, - ACTIONS(222), 2, - aux_sym__stopsignal_value_token1, + ACTIONS(214), 2, + anon_sym_LF, anon_sym_DOLLAR, - [3022] = 5, + [3026] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(269), 1, - anon_sym_LF, + ACTIONS(263), 1, + aux_sym__stopsignal_value_token1, STATE(125), 1, sym_comment, - ACTIONS(271), 2, - aux_sym__stopsignal_value_token1, + ACTIONS(261), 2, + anon_sym_LF, anon_sym_DOLLAR, - [3039] = 5, + [3043] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(220), 1, - anon_sym_LF, + ACTIONS(216), 1, + aux_sym_image_alias_token1, STATE(126), 1, sym_comment, - ACTIONS(222), 2, + ACTIONS(214), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_image_alias_token1, - [3056] = 5, + [3060] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(506), 1, - anon_sym_LF, + ACTIONS(484), 1, + aux_sym_image_alias_token1, STATE(127), 1, sym_comment, - ACTIONS(508), 2, + ACTIONS(482), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_image_alias_token1, - [3073] = 6, + [3077] = 6, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(474), 1, + ACTIONS(452), 1, anon_sym_COMMA, - ACTIONS(510), 1, + ACTIONS(486), 1, anon_sym_RBRACK, STATE(114), 1, aux_sym_string_array_repeat1, STATE(128), 1, sym_comment, - [3092] = 5, + [3096] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(269), 1, - anon_sym_LF, + ACTIONS(263), 1, + aux_sym_image_alias_token1, STATE(129), 1, sym_comment, - ACTIONS(271), 2, + ACTIONS(261), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_image_alias_token1, - [3109] = 5, + [3113] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(512), 1, - anon_sym_LF, + ACTIONS(490), 1, + aux_sym_expose_port_token1, STATE(130), 1, sym_comment, - ACTIONS(514), 2, + ACTIONS(488), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [3126] = 5, + [3130] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(372), 1, - anon_sym_LF, + ACTIONS(362), 1, + aux_sym_expose_port_token1, STATE(131), 1, sym_comment, - ACTIONS(374), 2, + ACTIONS(360), 2, + anon_sym_LF, anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [3143] = 4, + [3147] = 4, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(516), 1, + ACTIONS(492), 1, anon_sym_LF, STATE(132), 1, sym_comment, - ACTIONS(518), 3, + ACTIONS(494), 3, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, sym_line_continuation, - [3158] = 5, + [3162] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(520), 1, + ACTIONS(496), 1, anon_sym_LF, - ACTIONS(522), 1, + ACTIONS(498), 1, aux_sym_from_instruction_token2, STATE(133), 1, sym_comment, - [3174] = 3, + [3178] = 3, ACTIONS(3), 1, sym_line_continuation, STATE(134), 1, sym_comment, - ACTIONS(524), 3, + ACTIONS(500), 3, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, anon_sym_POUND, - [3186] = 5, + [3190] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(526), 1, + ACTIONS(502), 1, anon_sym_LF, - ACTIONS(528), 1, + ACTIONS(504), 1, aux_sym_from_instruction_token2, STATE(135), 1, sym_comment, - [3202] = 4, + [3206] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, STATE(136), 1, sym_comment, - ACTIONS(530), 2, + ACTIONS(506), 2, anon_sym_COMMA, anon_sym_RBRACK, - [3216] = 5, + [3220] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(508), 1, + anon_sym_LBRACE, + ACTIONS(510), 1, + sym_variable, + STATE(137), 1, + sym_comment, + [3236] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(512), 1, + anon_sym_LBRACE, + ACTIONS(514), 1, + sym_variable, + STATE(138), 1, + sym_comment, + [3252] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(469), 1, + anon_sym_DQUOTE, + STATE(139), 1, + sym_comment, + STATE(169), 1, + sym_double_quoted_string, + [3268] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(516), 1, + anon_sym_LBRACE, + ACTIONS(518), 1, + sym_variable, + STATE(140), 1, + sym_comment, + [3284] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(520), 1, + anon_sym_LBRACE, + ACTIONS(522), 1, + sym_variable, + STATE(141), 1, + sym_comment, + [3300] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(524), 1, + anon_sym_LBRACE, + ACTIONS(526), 1, + sym_variable, + STATE(142), 1, + sym_comment, + [3316] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(528), 1, + anon_sym_LBRACE, + ACTIONS(530), 1, + sym_variable, + STATE(143), 1, + sym_comment, + [3332] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, @@ -5197,9 +5262,9 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(534), 1, sym_variable, - STATE(137), 1, + STATE(144), 1, sym_comment, - [3232] = 5, + [3348] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, @@ -5208,173 +5273,172 @@ static uint16_t ts_small_parse_table[] = { anon_sym_LBRACE, ACTIONS(538), 1, sym_variable, - STATE(138), 1, - sym_comment, - [3248] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_DQUOTE, - STATE(139), 1, - sym_comment, - STATE(169), 1, - sym_double_quoted_string, - [3264] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(540), 1, - anon_sym_LBRACE, - ACTIONS(542), 1, - sym_variable, - STATE(140), 1, - sym_comment, - [3280] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(544), 1, - anon_sym_LBRACE, - ACTIONS(546), 1, - sym_variable, - STATE(141), 1, - sym_comment, - [3296] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(548), 1, - anon_sym_LBRACE, - ACTIONS(550), 1, - sym_variable, - STATE(142), 1, - sym_comment, - [3312] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(552), 1, - anon_sym_LBRACE, - ACTIONS(554), 1, - sym_variable, - STATE(143), 1, - sym_comment, - [3328] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(556), 1, - anon_sym_LBRACE, - ACTIONS(558), 1, - sym_variable, - STATE(144), 1, - sym_comment, - [3344] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(560), 1, - anon_sym_LBRACE, - ACTIONS(562), 1, - sym_variable, STATE(145), 1, sym_comment, - [3360] = 4, + [3364] = 4, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(564), 1, + ACTIONS(540), 1, anon_sym_LF, - ACTIONS(566), 1, + ACTIONS(542), 1, sym_line_continuation, STATE(146), 2, sym_comment, aux_sym_shell_command_repeat2, - [3374] = 5, + [3378] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(569), 1, + ACTIONS(545), 1, anon_sym_LBRACE, - ACTIONS(571), 1, + ACTIONS(547), 1, sym_variable, STATE(147), 1, sym_comment, - [3390] = 5, + [3394] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(573), 1, + ACTIONS(549), 1, anon_sym_LF, - ACTIONS(575), 1, + ACTIONS(551), 1, aux_sym_label_pair_token1, STATE(148), 1, sym_comment, - [3406] = 5, + [3410] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(577), 1, + ACTIONS(553), 1, anon_sym_LBRACE, - ACTIONS(579), 1, + ACTIONS(555), 1, sym_variable, STATE(149), 1, sym_comment, - [3422] = 5, + [3426] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(581), 1, + ACTIONS(557), 1, anon_sym_LF, - ACTIONS(583), 1, + ACTIONS(559), 1, aux_sym_env_pair_token1, STATE(150), 1, sym_comment, - [3438] = 5, + [3442] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(585), 1, + ACTIONS(561), 1, anon_sym_LBRACE, - ACTIONS(587), 1, + ACTIONS(563), 1, sym_variable, STATE(151), 1, sym_comment, - [3454] = 5, + [3458] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(153), 1, + ACTIONS(151), 1, anon_sym_LBRACK, STATE(152), 1, sym_comment, STATE(192), 1, sym_string_array, - [3470] = 5, + [3474] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(589), 1, + ACTIONS(565), 1, anon_sym_LBRACE, - ACTIONS(591), 1, + ACTIONS(567), 1, sym_variable, STATE(153), 1, sym_comment, - [3486] = 5, + [3490] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(569), 1, + anon_sym_LF, + ACTIONS(571), 1, + aux_sym_from_instruction_token2, + STATE(154), 1, + sym_comment, + [3506] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(573), 1, + anon_sym_LF, + ACTIONS(575), 1, + sym_line_continuation, + STATE(155), 1, + sym_comment, + STATE(168), 1, + aux_sym_shell_command_repeat2, + [3522] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(577), 1, + anon_sym_LF, + ACTIONS(579), 1, + aux_sym_label_pair_token1, + STATE(156), 1, + sym_comment, + [3538] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + STATE(157), 1, + sym_comment, + ACTIONS(475), 2, + anon_sym_LF, + sym__non_newline_whitespace, + [3552] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(581), 1, + anon_sym_EQ, + ACTIONS(583), 1, + aux_sym__spaced_env_pair_token1, + STATE(158), 1, + sym_comment, + [3568] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(585), 1, + anon_sym_LF, + ACTIONS(587), 1, + aux_sym_env_pair_token1, + STATE(159), 1, + sym_comment, + [3584] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(589), 1, + anon_sym_LF, + ACTIONS(591), 1, + anon_sym_EQ, + STATE(160), 1, + sym_comment, + [3600] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, @@ -5382,987 +5446,911 @@ static uint16_t ts_small_parse_table[] = { ACTIONS(593), 1, anon_sym_LF, ACTIONS(595), 1, - aux_sym_from_instruction_token2, - STATE(154), 1, - sym_comment, - [3502] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(597), 1, - anon_sym_LF, - ACTIONS(599), 1, - sym_line_continuation, - STATE(155), 1, - sym_comment, - STATE(168), 1, - aux_sym_shell_command_repeat2, - [3518] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(601), 1, - anon_sym_LF, - ACTIONS(603), 1, - aux_sym_label_pair_token1, - STATE(156), 1, - sym_comment, - [3534] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - STATE(157), 1, - sym_comment, - ACTIONS(499), 2, - anon_sym_LF, - sym__non_newline_whitespace, - [3548] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(605), 1, - anon_sym_EQ, - ACTIONS(607), 1, - aux_sym__spaced_env_pair_token1, - STATE(158), 1, - sym_comment, - [3564] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(609), 1, - anon_sym_LF, - ACTIONS(611), 1, - aux_sym_env_pair_token1, - STATE(159), 1, - sym_comment, - [3580] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(613), 1, - anon_sym_LF, - ACTIONS(615), 1, - anon_sym_EQ, - STATE(160), 1, - sym_comment, - [3596] = 5, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(617), 1, - anon_sym_LF, - ACTIONS(619), 1, aux_sym_env_pair_token1, STATE(161), 1, sym_comment, - [3612] = 5, + [3616] = 5, ACTIONS(3), 1, sym_line_continuation, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(621), 1, + ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(623), 1, + ACTIONS(599), 1, aux_sym_image_name_token1, STATE(162), 1, sym_comment, - [3628] = 4, + [3632] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, STATE(163), 1, sym_comment, - ACTIONS(621), 2, + ACTIONS(597), 2, aux_sym_cmd_instruction_token1, anon_sym_DASH_DASH, - [3642] = 5, + [3646] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(530), 1, + ACTIONS(506), 1, anon_sym_LF, - ACTIONS(625), 1, + ACTIONS(601), 1, aux_sym_env_pair_token1, STATE(164), 1, sym_comment, - [3658] = 4, + [3662] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, STATE(165), 1, sym_comment, - ACTIONS(627), 2, + ACTIONS(603), 2, aux_sym_cmd_instruction_token1, anon_sym_DASH_DASH, - [3672] = 5, + [3676] = 5, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(629), 1, + ACTIONS(605), 1, anon_sym_LF, - ACTIONS(631), 1, + ACTIONS(607), 1, aux_sym_from_instruction_token2, STATE(166), 1, sym_comment, - [3688] = 4, + [3692] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, STATE(167), 1, sym_comment, - ACTIONS(617), 2, + ACTIONS(593), 2, anon_sym_COMMA, anon_sym_RBRACK, - [3702] = 5, + [3706] = 5, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(599), 1, + ACTIONS(575), 1, sym_line_continuation, - ACTIONS(633), 1, + ACTIONS(609), 1, anon_sym_LF, STATE(146), 1, aux_sym_shell_command_repeat2, STATE(168), 1, sym_comment, - [3718] = 4, + [3722] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, STATE(169), 1, sym_comment, - ACTIONS(489), 2, + ACTIONS(465), 2, anon_sym_COMMA, anon_sym_RBRACK, - [3732] = 5, + [3736] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(593), 1, + anon_sym_LF, + ACTIONS(595), 1, + aux_sym_label_pair_token1, + STATE(170), 1, + sym_comment, + [3752] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(597), 1, + anon_sym_DOLLAR, + ACTIONS(599), 1, + aux_sym_path_token1, + STATE(171), 1, + sym_comment, + [3768] = 5, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(506), 1, + anon_sym_LF, + ACTIONS(601), 1, + aux_sym_label_pair_token1, + STATE(172), 1, + sym_comment, + [3784] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(611), 1, + sym__non_newline_whitespace, + STATE(173), 1, + sym_comment, + [3797] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(613), 1, + anon_sym_RBRACE, + STATE(174), 1, + sym_comment, + [3810] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(615), 1, + sym__non_newline_whitespace, + STATE(175), 1, + sym_comment, + [3823] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(617), 1, anon_sym_LF, - ACTIONS(619), 1, - aux_sym_label_pair_token1, - STATE(170), 1, + STATE(176), 1, sym_comment, - [3748] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(621), 1, - anon_sym_DOLLAR, - ACTIONS(623), 1, - aux_sym_path_token1, - STATE(171), 1, - sym_comment, - [3764] = 5, + [3836] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(530), 1, + ACTIONS(619), 1, + sym__non_newline_whitespace, + STATE(177), 1, + sym_comment, + [3849] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(621), 1, + anon_sym_LF, + STATE(178), 1, + sym_comment, + [3862] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(623), 1, anon_sym_LF, ACTIONS(625), 1, - aux_sym_label_pair_token1, - STATE(172), 1, + sym_line_continuation, + STATE(179), 1, sym_comment, - [3780] = 4, + [3875] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(581), 1, + anon_sym_EQ, + STATE(180), 1, + sym_comment, + [3888] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(627), 1, + sym__non_newline_whitespace, + STATE(181), 1, + sym_comment, + [3901] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(629), 1, + anon_sym_LF, + STATE(182), 1, + sym_comment, + [3914] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(631), 1, + anon_sym_LF, + STATE(183), 1, + sym_comment, + [3927] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(633), 1, + sym__non_newline_whitespace, + STATE(184), 1, + sym_comment, + [3940] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(635), 1, - sym__non_newline_whitespace, - STATE(173), 1, + anon_sym_LF, + STATE(185), 1, sym_comment, - [3793] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [3953] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(637), 1, - anon_sym_RBRACE, - STATE(174), 1, + sym__non_newline_whitespace, + STATE(186), 1, sym_comment, - [3806] = 4, + [3966] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(639), 1, sym__non_newline_whitespace, - STATE(175), 1, + STATE(187), 1, sym_comment, - [3819] = 4, + [3979] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(641), 1, - anon_sym_LF, - STATE(176), 1, - sym_comment, - [3832] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(643), 1, sym__non_newline_whitespace, - STATE(177), 1, + STATE(188), 1, sym_comment, - [3845] = 4, + [3992] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(643), 1, + anon_sym_EQ, + STATE(189), 1, + sym_comment, + [4005] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(645), 1, - anon_sym_LF, - STATE(178), 1, + sym__non_newline_whitespace, + STATE(190), 1, sym_comment, - [3858] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(647), 1, - anon_sym_LF, - ACTIONS(649), 1, - sym_line_continuation, - STATE(179), 1, - sym_comment, - [3871] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(605), 1, - anon_sym_EQ, - STATE(180), 1, - sym_comment, - [3884] = 4, + [4018] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(651), 1, - sym__non_newline_whitespace, - STATE(181), 1, + ACTIONS(647), 1, + aux_sym_expansion_token1, + STATE(191), 1, sym_comment, - [3897] = 4, + [4031] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(649), 1, + anon_sym_LF, + STATE(192), 1, + sym_comment, + [4044] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(651), 1, + aux_sym_arg_instruction_token2, + STATE(193), 1, + sym_comment, + [4057] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(653), 1, anon_sym_LF, - STATE(182), 1, + STATE(194), 1, sym_comment, - [3910] = 4, + [4070] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(655), 1, - anon_sym_LF, - STATE(183), 1, + sym__non_newline_whitespace, + STATE(195), 1, sym_comment, - [3923] = 4, + [4083] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(657), 1, - sym__non_newline_whitespace, - STATE(184), 1, + anon_sym_LF, + STATE(196), 1, sym_comment, - [3936] = 4, + [4096] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(659), 1, anon_sym_LF, - STATE(185), 1, + STATE(197), 1, sym_comment, - [3949] = 4, + [4109] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(661), 1, sym__non_newline_whitespace, - STATE(186), 1, + STATE(198), 1, sym_comment, - [3962] = 4, + [4122] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(663), 1, sym__non_newline_whitespace, - STATE(187), 1, + STATE(199), 1, sym_comment, - [3975] = 4, + [4135] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(665), 1, sym__non_newline_whitespace, - STATE(188), 1, + STATE(200), 1, sym_comment, - [3988] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4148] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(667), 1, - anon_sym_EQ, - STATE(189), 1, + anon_sym_LF, + STATE(201), 1, sym_comment, - [4001] = 4, + [4161] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(669), 1, - sym__non_newline_whitespace, - STATE(190), 1, + anon_sym_LF, + STATE(202), 1, sym_comment, - [4014] = 4, + [4174] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(671), 1, - aux_sym_expansion_token1, - STATE(191), 1, + anon_sym_LF, + STATE(203), 1, sym_comment, - [4027] = 4, + [4187] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(673), 1, - anon_sym_LF, - STATE(192), 1, + sym__non_newline_whitespace, + STATE(204), 1, sym_comment, - [4040] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4200] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(675), 1, - aux_sym_arg_instruction_token2, - STATE(193), 1, + sym__non_newline_whitespace, + STATE(205), 1, sym_comment, - [4053] = 4, + [4213] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(677), 1, anon_sym_LF, - STATE(194), 1, + STATE(206), 1, sym_comment, - [4066] = 4, + [4226] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(679), 1, - sym__non_newline_whitespace, - STATE(195), 1, + anon_sym_LF, + STATE(207), 1, sym_comment, - [4079] = 4, + [4239] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(681), 1, - anon_sym_LF, - STATE(196), 1, + aux_sym__anon_comment_token1, + STATE(208), 1, sym_comment, - [4092] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, + [4252] = 4, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, ACTIONS(683), 1, - anon_sym_LF, - STATE(197), 1, + aux_sym_param_token1, + STATE(209), 1, sym_comment, - [4105] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, + [4265] = 4, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, ACTIONS(685), 1, - sym__non_newline_whitespace, - STATE(198), 1, + anon_sym_EQ, + STATE(210), 1, sym_comment, - [4118] = 4, + [4278] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(687), 1, - sym__non_newline_whitespace, - STATE(199), 1, + anon_sym_LF, + STATE(211), 1, sym_comment, - [4131] = 4, + [4291] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(689), 1, - sym__non_newline_whitespace, - STATE(200), 1, + anon_sym_LF, + STATE(212), 1, sym_comment, - [4144] = 4, + [4304] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(691), 1, anon_sym_LF, - STATE(201), 1, + STATE(213), 1, sym_comment, - [4157] = 4, + [4317] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(693), 1, anon_sym_LF, - STATE(202), 1, + STATE(214), 1, sym_comment, - [4170] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, + [4330] = 4, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, ACTIONS(695), 1, - anon_sym_LF, - STATE(203), 1, + aux_sym_param_token1, + STATE(215), 1, sym_comment, - [4183] = 4, + [4343] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(697), 1, - sym__non_newline_whitespace, - STATE(204), 1, + anon_sym_LF, + STATE(216), 1, sym_comment, - [4196] = 4, + [4356] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(699), 1, - sym__non_newline_whitespace, - STATE(205), 1, + anon_sym_LF, + STATE(217), 1, sym_comment, - [4209] = 4, + [4369] = 4, + ACTIONS(3), 1, + sym_line_continuation, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, ACTIONS(701), 1, - anon_sym_LF, - STATE(206), 1, + aux_sym_param_token2, + STATE(218), 1, sym_comment, - [4222] = 4, + [4382] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(703), 1, - anon_sym_LF, - STATE(207), 1, + sym__non_newline_whitespace, + STATE(219), 1, sym_comment, - [4235] = 4, + [4395] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(705), 1, + anon_sym_RBRACE, + STATE(220), 1, + sym_comment, + [4408] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(707), 1, + aux_sym_param_token2, + STATE(221), 1, + sym_comment, + [4421] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(705), 1, - aux_sym__anon_comment_token1, - STATE(208), 1, - sym_comment, - [4248] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(707), 1, - aux_sym_param_token1, - STATE(209), 1, - sym_comment, - [4261] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, ACTIONS(709), 1, - anon_sym_EQ, - STATE(210), 1, + sym__non_newline_whitespace, + STATE(222), 1, sym_comment, - [4274] = 4, + [4434] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(711), 1, anon_sym_LF, - STATE(211), 1, + STATE(223), 1, sym_comment, - [4287] = 4, + [4447] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(713), 1, - anon_sym_LF, - STATE(212), 1, + sym__non_newline_whitespace, + STATE(224), 1, sym_comment, - [4300] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(715), 1, - anon_sym_LF, - STATE(213), 1, - sym_comment, - [4313] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(717), 1, - anon_sym_LF, - STATE(214), 1, - sym_comment, - [4326] = 4, + [4460] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(719), 1, - aux_sym_param_token1, - STATE(215), 1, + ACTIONS(715), 1, + anon_sym_RBRACE, + STATE(225), 1, sym_comment, - [4339] = 4, + [4473] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(717), 1, + aux_sym_param_token2, + STATE(226), 1, + sym_comment, + [4486] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(719), 1, + sym__non_newline_whitespace, + STATE(227), 1, + sym_comment, + [4499] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(721), 1, - anon_sym_LF, - STATE(216), 1, - sym_comment, - [4352] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(723), 1, - anon_sym_LF, - STATE(217), 1, - sym_comment, - [4365] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(725), 1, - aux_sym_param_token2, - STATE(218), 1, - sym_comment, - [4378] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(727), 1, sym__non_newline_whitespace, - STATE(219), 1, + STATE(228), 1, sym_comment, - [4391] = 4, + [4512] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, - ACTIONS(729), 1, + ACTIONS(723), 1, anon_sym_RBRACE, - STATE(220), 1, + STATE(229), 1, sym_comment, - [4404] = 4, - ACTIONS(3), 1, - sym_line_continuation, + [4525] = 4, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(731), 1, - aux_sym_param_token2, - STATE(221), 1, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(725), 1, + anon_sym_LF, + STATE(230), 1, sym_comment, - [4417] = 4, + [4538] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(727), 1, + anon_sym_RBRACE, + STATE(231), 1, + sym_comment, + [4551] = 4, + ACTIONS(100), 1, + anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, + ACTIONS(729), 1, + sym__non_newline_whitespace, + STATE(232), 1, + sym_comment, + [4564] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(731), 1, + anon_sym_RBRACE, + STATE(233), 1, + sym_comment, + [4577] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(733), 1, - sym__non_newline_whitespace, - STATE(222), 1, - sym_comment, - [4430] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(735), 1, anon_sym_LF, - STATE(223), 1, + STATE(234), 1, sym_comment, - [4443] = 4, + [4590] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(735), 1, + anon_sym_RBRACE, + STATE(235), 1, + sym_comment, + [4603] = 4, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, + ACTIONS(540), 1, + anon_sym_LF, ACTIONS(737), 1, - sym__non_newline_whitespace, - STATE(224), 1, + sym_line_continuation, + STATE(236), 1, sym_comment, - [4456] = 4, + [4616] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(739), 1, anon_sym_RBRACE, - STATE(225), 1, + STATE(237), 1, sym_comment, - [4469] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(741), 1, - aux_sym_param_token2, - STATE(226), 1, - sym_comment, - [4482] = 4, + [4629] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, - ACTIONS(743), 1, - sym__non_newline_whitespace, - STATE(227), 1, + ACTIONS(741), 1, + aux_sym__anon_comment_token1, + STATE(238), 1, sym_comment, - [4495] = 4, + [4642] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, + ACTIONS(743), 1, + anon_sym_RBRACE, + STATE(239), 1, + sym_comment, + [4655] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(745), 1, - sym__non_newline_whitespace, - STATE(228), 1, + anon_sym_LF, + STATE(240), 1, sym_comment, - [4508] = 4, + [4668] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(747), 1, anon_sym_RBRACE, - STATE(229), 1, + STATE(241), 1, sym_comment, - [4521] = 4, + [4681] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(749), 1, anon_sym_LF, - STATE(230), 1, + STATE(242), 1, sym_comment, - [4534] = 4, + [4694] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(751), 1, anon_sym_RBRACE, - STATE(231), 1, + STATE(243), 1, sym_comment, - [4547] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, + [4707] = 4, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, + anon_sym_POUND, ACTIONS(753), 1, - sym__non_newline_whitespace, - STATE(232), 1, + ts_builtin_sym_end, + STATE(244), 1, sym_comment, - [4560] = 4, + [4720] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(755), 1, anon_sym_RBRACE, - STATE(233), 1, + STATE(245), 1, sym_comment, - [4573] = 4, + [4733] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(757), 1, - anon_sym_LF, - STATE(234), 1, + aux_sym_expansion_token1, + STATE(246), 1, sym_comment, - [4586] = 4, + [4746] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(759), 1, - anon_sym_RBRACE, - STATE(235), 1, + anon_sym_EQ, + STATE(247), 1, sym_comment, - [4599] = 4, + [4759] = 4, ACTIONS(100), 1, anon_sym_POUND, - ACTIONS(564), 1, - anon_sym_LF, - ACTIONS(761), 1, + ACTIONS(126), 1, sym_line_continuation, - STATE(236), 1, + ACTIONS(761), 1, + aux_sym_expansion_token1, + STATE(248), 1, sym_comment, - [4612] = 4, + [4772] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(763), 1, - anon_sym_RBRACE, - STATE(237), 1, + anon_sym_EQ, + STATE(249), 1, sym_comment, - [4625] = 4, + [4785] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(765), 1, - aux_sym__anon_comment_token1, - STATE(238), 1, + aux_sym_expansion_token1, + STATE(250), 1, sym_comment, - [4638] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4798] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(767), 1, - anon_sym_RBRACE, - STATE(239), 1, + aux_sym_expansion_token1, + STATE(251), 1, sym_comment, - [4651] = 4, + [4811] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(769), 1, - anon_sym_LF, - STATE(240), 1, + aux_sym_expansion_token1, + STATE(252), 1, sym_comment, - [4664] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4824] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(771), 1, - anon_sym_RBRACE, - STATE(241), 1, + aux_sym_expansion_token1, + STATE(253), 1, sym_comment, - [4677] = 4, + [4837] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(773), 1, - anon_sym_LF, - STATE(242), 1, + aux_sym_expansion_token1, + STATE(254), 1, sym_comment, - [4690] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4850] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(775), 1, - anon_sym_RBRACE, - STATE(243), 1, + aux_sym_expansion_token1, + STATE(255), 1, sym_comment, - [4703] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4863] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(777), 1, - ts_builtin_sym_end, - STATE(244), 1, + aux_sym_expansion_token1, + STATE(256), 1, sym_comment, - [4716] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, + [4876] = 4, + ACTIONS(100), 1, anon_sym_POUND, + ACTIONS(126), 1, + sym_line_continuation, ACTIONS(779), 1, - anon_sym_RBRACE, - STATE(245), 1, + aux_sym_expansion_token1, + STATE(257), 1, sym_comment, - [4729] = 4, + [4889] = 4, ACTIONS(100), 1, anon_sym_POUND, ACTIONS(126), 1, sym_line_continuation, ACTIONS(781), 1, aux_sym_expansion_token1, - STATE(246), 1, + STATE(258), 1, sym_comment, - [4742] = 4, + [4902] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, anon_sym_POUND, ACTIONS(783), 1, - anon_sym_EQ, - STATE(247), 1, - sym_comment, - [4755] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(785), 1, - aux_sym_expansion_token1, - STATE(248), 1, - sym_comment, - [4768] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(787), 1, - anon_sym_EQ, - STATE(249), 1, - sym_comment, - [4781] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(789), 1, - aux_sym_expansion_token1, - STATE(250), 1, - sym_comment, - [4794] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(791), 1, - aux_sym_expansion_token1, - STATE(251), 1, - sym_comment, - [4807] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(793), 1, - aux_sym_expansion_token1, - STATE(252), 1, - sym_comment, - [4820] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(795), 1, - aux_sym_expansion_token1, - STATE(253), 1, - sym_comment, - [4833] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(797), 1, - aux_sym_expansion_token1, - STATE(254), 1, - sym_comment, - [4846] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(799), 1, - aux_sym_expansion_token1, - STATE(255), 1, - sym_comment, - [4859] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(801), 1, - aux_sym_expansion_token1, - STATE(256), 1, - sym_comment, - [4872] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(803), 1, - aux_sym_expansion_token1, - STATE(257), 1, - sym_comment, - [4885] = 4, - ACTIONS(100), 1, - anon_sym_POUND, - ACTIONS(126), 1, - sym_line_continuation, - ACTIONS(805), 1, - aux_sym_expansion_token1, - STATE(258), 1, - sym_comment, - [4898] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(807), 1, aux_sym_param_token1, STATE(259), 1, sym_comment, - [4911] = 1, - ACTIONS(809), 1, + [4915] = 1, + ACTIONS(785), 1, ts_builtin_sym_end, }; @@ -6450,182 +6438,182 @@ static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(82)] = 2200, [SMALL_STATE(83)] = 2222, [SMALL_STATE(84)] = 2244, - [SMALL_STATE(85)] = 2260, + [SMALL_STATE(85)] = 2262, [SMALL_STATE(86)] = 2278, - [SMALL_STATE(87)] = 2294, - [SMALL_STATE(88)] = 2316, - [SMALL_STATE(89)] = 2338, - [SMALL_STATE(90)] = 2358, - [SMALL_STATE(91)] = 2380, - [SMALL_STATE(92)] = 2398, - [SMALL_STATE(93)] = 2420, - [SMALL_STATE(94)] = 2440, - [SMALL_STATE(95)] = 2458, - [SMALL_STATE(96)] = 2476, - [SMALL_STATE(97)] = 2494, - [SMALL_STATE(98)] = 2512, - [SMALL_STATE(99)] = 2534, - [SMALL_STATE(100)] = 2556, - [SMALL_STATE(101)] = 2578, - [SMALL_STATE(102)] = 2594, - [SMALL_STATE(103)] = 2616, - [SMALL_STATE(104)] = 2638, - [SMALL_STATE(105)] = 2656, - [SMALL_STATE(106)] = 2676, - [SMALL_STATE(107)] = 2696, - [SMALL_STATE(108)] = 2718, - [SMALL_STATE(109)] = 2740, - [SMALL_STATE(110)] = 2757, - [SMALL_STATE(111)] = 2776, - [SMALL_STATE(112)] = 2793, - [SMALL_STATE(113)] = 2812, - [SMALL_STATE(114)] = 2829, - [SMALL_STATE(115)] = 2846, - [SMALL_STATE(116)] = 2865, - [SMALL_STATE(117)] = 2882, - [SMALL_STATE(118)] = 2899, - [SMALL_STATE(119)] = 2918, - [SMALL_STATE(120)] = 2935, - [SMALL_STATE(121)] = 2952, - [SMALL_STATE(122)] = 2971, - [SMALL_STATE(123)] = 2988, - [SMALL_STATE(124)] = 3005, - [SMALL_STATE(125)] = 3022, - [SMALL_STATE(126)] = 3039, - [SMALL_STATE(127)] = 3056, - [SMALL_STATE(128)] = 3073, - [SMALL_STATE(129)] = 3092, - [SMALL_STATE(130)] = 3109, - [SMALL_STATE(131)] = 3126, - [SMALL_STATE(132)] = 3143, - [SMALL_STATE(133)] = 3158, - [SMALL_STATE(134)] = 3174, - [SMALL_STATE(135)] = 3186, - [SMALL_STATE(136)] = 3202, - [SMALL_STATE(137)] = 3216, - [SMALL_STATE(138)] = 3232, - [SMALL_STATE(139)] = 3248, - [SMALL_STATE(140)] = 3264, - [SMALL_STATE(141)] = 3280, - [SMALL_STATE(142)] = 3296, - [SMALL_STATE(143)] = 3312, - [SMALL_STATE(144)] = 3328, - [SMALL_STATE(145)] = 3344, - [SMALL_STATE(146)] = 3360, - [SMALL_STATE(147)] = 3374, - [SMALL_STATE(148)] = 3390, - [SMALL_STATE(149)] = 3406, - [SMALL_STATE(150)] = 3422, - [SMALL_STATE(151)] = 3438, - [SMALL_STATE(152)] = 3454, - [SMALL_STATE(153)] = 3470, - [SMALL_STATE(154)] = 3486, - [SMALL_STATE(155)] = 3502, - [SMALL_STATE(156)] = 3518, - [SMALL_STATE(157)] = 3534, - [SMALL_STATE(158)] = 3548, - [SMALL_STATE(159)] = 3564, - [SMALL_STATE(160)] = 3580, - [SMALL_STATE(161)] = 3596, - [SMALL_STATE(162)] = 3612, - [SMALL_STATE(163)] = 3628, - [SMALL_STATE(164)] = 3642, - [SMALL_STATE(165)] = 3658, - [SMALL_STATE(166)] = 3672, - [SMALL_STATE(167)] = 3688, - [SMALL_STATE(168)] = 3702, - [SMALL_STATE(169)] = 3718, - [SMALL_STATE(170)] = 3732, - [SMALL_STATE(171)] = 3748, - [SMALL_STATE(172)] = 3764, - [SMALL_STATE(173)] = 3780, - [SMALL_STATE(174)] = 3793, - [SMALL_STATE(175)] = 3806, - [SMALL_STATE(176)] = 3819, - [SMALL_STATE(177)] = 3832, - [SMALL_STATE(178)] = 3845, - [SMALL_STATE(179)] = 3858, - [SMALL_STATE(180)] = 3871, - [SMALL_STATE(181)] = 3884, - [SMALL_STATE(182)] = 3897, - [SMALL_STATE(183)] = 3910, - [SMALL_STATE(184)] = 3923, - [SMALL_STATE(185)] = 3936, - [SMALL_STATE(186)] = 3949, - [SMALL_STATE(187)] = 3962, - [SMALL_STATE(188)] = 3975, - [SMALL_STATE(189)] = 3988, - [SMALL_STATE(190)] = 4001, - [SMALL_STATE(191)] = 4014, - [SMALL_STATE(192)] = 4027, - [SMALL_STATE(193)] = 4040, - [SMALL_STATE(194)] = 4053, - [SMALL_STATE(195)] = 4066, - [SMALL_STATE(196)] = 4079, - [SMALL_STATE(197)] = 4092, - [SMALL_STATE(198)] = 4105, - [SMALL_STATE(199)] = 4118, - [SMALL_STATE(200)] = 4131, - [SMALL_STATE(201)] = 4144, - [SMALL_STATE(202)] = 4157, - [SMALL_STATE(203)] = 4170, - [SMALL_STATE(204)] = 4183, - [SMALL_STATE(205)] = 4196, - [SMALL_STATE(206)] = 4209, - [SMALL_STATE(207)] = 4222, - [SMALL_STATE(208)] = 4235, - [SMALL_STATE(209)] = 4248, - [SMALL_STATE(210)] = 4261, - [SMALL_STATE(211)] = 4274, - [SMALL_STATE(212)] = 4287, - [SMALL_STATE(213)] = 4300, - [SMALL_STATE(214)] = 4313, - [SMALL_STATE(215)] = 4326, - [SMALL_STATE(216)] = 4339, - [SMALL_STATE(217)] = 4352, - [SMALL_STATE(218)] = 4365, - [SMALL_STATE(219)] = 4378, - [SMALL_STATE(220)] = 4391, - [SMALL_STATE(221)] = 4404, - [SMALL_STATE(222)] = 4417, - [SMALL_STATE(223)] = 4430, - [SMALL_STATE(224)] = 4443, - [SMALL_STATE(225)] = 4456, - [SMALL_STATE(226)] = 4469, - [SMALL_STATE(227)] = 4482, - [SMALL_STATE(228)] = 4495, - [SMALL_STATE(229)] = 4508, - [SMALL_STATE(230)] = 4521, - [SMALL_STATE(231)] = 4534, - [SMALL_STATE(232)] = 4547, - [SMALL_STATE(233)] = 4560, - [SMALL_STATE(234)] = 4573, - [SMALL_STATE(235)] = 4586, - [SMALL_STATE(236)] = 4599, - [SMALL_STATE(237)] = 4612, - [SMALL_STATE(238)] = 4625, - [SMALL_STATE(239)] = 4638, - [SMALL_STATE(240)] = 4651, - [SMALL_STATE(241)] = 4664, - [SMALL_STATE(242)] = 4677, - [SMALL_STATE(243)] = 4690, - [SMALL_STATE(244)] = 4703, - [SMALL_STATE(245)] = 4716, - [SMALL_STATE(246)] = 4729, - [SMALL_STATE(247)] = 4742, - [SMALL_STATE(248)] = 4755, - [SMALL_STATE(249)] = 4768, - [SMALL_STATE(250)] = 4781, - [SMALL_STATE(251)] = 4794, - [SMALL_STATE(252)] = 4807, - [SMALL_STATE(253)] = 4820, - [SMALL_STATE(254)] = 4833, - [SMALL_STATE(255)] = 4846, - [SMALL_STATE(256)] = 4859, - [SMALL_STATE(257)] = 4872, - [SMALL_STATE(258)] = 4885, - [SMALL_STATE(259)] = 4898, - [SMALL_STATE(260)] = 4911, + [SMALL_STATE(87)] = 2296, + [SMALL_STATE(88)] = 2318, + [SMALL_STATE(89)] = 2340, + [SMALL_STATE(90)] = 2360, + [SMALL_STATE(91)] = 2382, + [SMALL_STATE(92)] = 2400, + [SMALL_STATE(93)] = 2422, + [SMALL_STATE(94)] = 2442, + [SMALL_STATE(95)] = 2460, + [SMALL_STATE(96)] = 2478, + [SMALL_STATE(97)] = 2496, + [SMALL_STATE(98)] = 2514, + [SMALL_STATE(99)] = 2536, + [SMALL_STATE(100)] = 2558, + [SMALL_STATE(101)] = 2580, + [SMALL_STATE(102)] = 2598, + [SMALL_STATE(103)] = 2620, + [SMALL_STATE(104)] = 2642, + [SMALL_STATE(105)] = 2660, + [SMALL_STATE(106)] = 2680, + [SMALL_STATE(107)] = 2700, + [SMALL_STATE(108)] = 2722, + [SMALL_STATE(109)] = 2744, + [SMALL_STATE(110)] = 2761, + [SMALL_STATE(111)] = 2780, + [SMALL_STATE(112)] = 2797, + [SMALL_STATE(113)] = 2816, + [SMALL_STATE(114)] = 2833, + [SMALL_STATE(115)] = 2850, + [SMALL_STATE(116)] = 2869, + [SMALL_STATE(117)] = 2886, + [SMALL_STATE(118)] = 2903, + [SMALL_STATE(119)] = 2922, + [SMALL_STATE(120)] = 2939, + [SMALL_STATE(121)] = 2956, + [SMALL_STATE(122)] = 2975, + [SMALL_STATE(123)] = 2992, + [SMALL_STATE(124)] = 3009, + [SMALL_STATE(125)] = 3026, + [SMALL_STATE(126)] = 3043, + [SMALL_STATE(127)] = 3060, + [SMALL_STATE(128)] = 3077, + [SMALL_STATE(129)] = 3096, + [SMALL_STATE(130)] = 3113, + [SMALL_STATE(131)] = 3130, + [SMALL_STATE(132)] = 3147, + [SMALL_STATE(133)] = 3162, + [SMALL_STATE(134)] = 3178, + [SMALL_STATE(135)] = 3190, + [SMALL_STATE(136)] = 3206, + [SMALL_STATE(137)] = 3220, + [SMALL_STATE(138)] = 3236, + [SMALL_STATE(139)] = 3252, + [SMALL_STATE(140)] = 3268, + [SMALL_STATE(141)] = 3284, + [SMALL_STATE(142)] = 3300, + [SMALL_STATE(143)] = 3316, + [SMALL_STATE(144)] = 3332, + [SMALL_STATE(145)] = 3348, + [SMALL_STATE(146)] = 3364, + [SMALL_STATE(147)] = 3378, + [SMALL_STATE(148)] = 3394, + [SMALL_STATE(149)] = 3410, + [SMALL_STATE(150)] = 3426, + [SMALL_STATE(151)] = 3442, + [SMALL_STATE(152)] = 3458, + [SMALL_STATE(153)] = 3474, + [SMALL_STATE(154)] = 3490, + [SMALL_STATE(155)] = 3506, + [SMALL_STATE(156)] = 3522, + [SMALL_STATE(157)] = 3538, + [SMALL_STATE(158)] = 3552, + [SMALL_STATE(159)] = 3568, + [SMALL_STATE(160)] = 3584, + [SMALL_STATE(161)] = 3600, + [SMALL_STATE(162)] = 3616, + [SMALL_STATE(163)] = 3632, + [SMALL_STATE(164)] = 3646, + [SMALL_STATE(165)] = 3662, + [SMALL_STATE(166)] = 3676, + [SMALL_STATE(167)] = 3692, + [SMALL_STATE(168)] = 3706, + [SMALL_STATE(169)] = 3722, + [SMALL_STATE(170)] = 3736, + [SMALL_STATE(171)] = 3752, + [SMALL_STATE(172)] = 3768, + [SMALL_STATE(173)] = 3784, + [SMALL_STATE(174)] = 3797, + [SMALL_STATE(175)] = 3810, + [SMALL_STATE(176)] = 3823, + [SMALL_STATE(177)] = 3836, + [SMALL_STATE(178)] = 3849, + [SMALL_STATE(179)] = 3862, + [SMALL_STATE(180)] = 3875, + [SMALL_STATE(181)] = 3888, + [SMALL_STATE(182)] = 3901, + [SMALL_STATE(183)] = 3914, + [SMALL_STATE(184)] = 3927, + [SMALL_STATE(185)] = 3940, + [SMALL_STATE(186)] = 3953, + [SMALL_STATE(187)] = 3966, + [SMALL_STATE(188)] = 3979, + [SMALL_STATE(189)] = 3992, + [SMALL_STATE(190)] = 4005, + [SMALL_STATE(191)] = 4018, + [SMALL_STATE(192)] = 4031, + [SMALL_STATE(193)] = 4044, + [SMALL_STATE(194)] = 4057, + [SMALL_STATE(195)] = 4070, + [SMALL_STATE(196)] = 4083, + [SMALL_STATE(197)] = 4096, + [SMALL_STATE(198)] = 4109, + [SMALL_STATE(199)] = 4122, + [SMALL_STATE(200)] = 4135, + [SMALL_STATE(201)] = 4148, + [SMALL_STATE(202)] = 4161, + [SMALL_STATE(203)] = 4174, + [SMALL_STATE(204)] = 4187, + [SMALL_STATE(205)] = 4200, + [SMALL_STATE(206)] = 4213, + [SMALL_STATE(207)] = 4226, + [SMALL_STATE(208)] = 4239, + [SMALL_STATE(209)] = 4252, + [SMALL_STATE(210)] = 4265, + [SMALL_STATE(211)] = 4278, + [SMALL_STATE(212)] = 4291, + [SMALL_STATE(213)] = 4304, + [SMALL_STATE(214)] = 4317, + [SMALL_STATE(215)] = 4330, + [SMALL_STATE(216)] = 4343, + [SMALL_STATE(217)] = 4356, + [SMALL_STATE(218)] = 4369, + [SMALL_STATE(219)] = 4382, + [SMALL_STATE(220)] = 4395, + [SMALL_STATE(221)] = 4408, + [SMALL_STATE(222)] = 4421, + [SMALL_STATE(223)] = 4434, + [SMALL_STATE(224)] = 4447, + [SMALL_STATE(225)] = 4460, + [SMALL_STATE(226)] = 4473, + [SMALL_STATE(227)] = 4486, + [SMALL_STATE(228)] = 4499, + [SMALL_STATE(229)] = 4512, + [SMALL_STATE(230)] = 4525, + [SMALL_STATE(231)] = 4538, + [SMALL_STATE(232)] = 4551, + [SMALL_STATE(233)] = 4564, + [SMALL_STATE(234)] = 4577, + [SMALL_STATE(235)] = 4590, + [SMALL_STATE(236)] = 4603, + [SMALL_STATE(237)] = 4616, + [SMALL_STATE(238)] = 4629, + [SMALL_STATE(239)] = 4642, + [SMALL_STATE(240)] = 4655, + [SMALL_STATE(241)] = 4668, + [SMALL_STATE(242)] = 4681, + [SMALL_STATE(243)] = 4694, + [SMALL_STATE(244)] = 4707, + [SMALL_STATE(245)] = 4720, + [SMALL_STATE(246)] = 4733, + [SMALL_STATE(247)] = 4746, + [SMALL_STATE(248)] = 4759, + [SMALL_STATE(249)] = 4772, + [SMALL_STATE(250)] = 4785, + [SMALL_STATE(251)] = 4798, + [SMALL_STATE(252)] = 4811, + [SMALL_STATE(253)] = 4824, + [SMALL_STATE(254)] = 4837, + [SMALL_STATE(255)] = 4850, + [SMALL_STATE(256)] = 4863, + [SMALL_STATE(257)] = 4876, + [SMALL_STATE(258)] = 4889, + [SMALL_STATE(259)] = 4902, + [SMALL_STATE(260)] = 4915, }; static TSParseActionEntry ts_parse_actions[] = { @@ -6681,333 +6669,321 @@ static TSParseActionEntry ts_parse_actions[] = { [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2), [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(153), + [120] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(153), [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(45), [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), [128] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1), [130] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [140] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), - [142] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(138), - [145] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), - [147] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(73), - [150] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(73), - [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [159] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(137), - [162] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(60), - [165] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(60), - [168] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2), - [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(142), - [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(71), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1), - [180] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1), - [184] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2), - [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2), - [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), - [192] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [206] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [208] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), - [210] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(85), - [213] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(151), - [216] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), - [218] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1), - [220] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), - [222] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), - [224] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [226] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [228] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [230] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(140), - [233] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(95), - [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(95), - [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 3), - [247] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [251] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [253] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2), - [255] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2), - [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [261] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(101), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(147), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [277] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), - [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), - [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(141), - [284] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(96), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [291] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 3, .production_id = 3), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [295] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 1), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 1), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(151), - [308] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(70), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, .production_id = 1), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, .production_id = 1), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [317] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), - [321] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(117), - [324] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(145), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [329] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), - [331] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2), - [339] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), - [341] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), SHIFT_REPEAT(238), - [344] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [346] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2), - [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(143), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(127), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 5, .production_id = 11), - [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 3), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [378] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 1), - [380] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 1), - [382] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [388] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(111), - [391] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(149), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 2), - [396] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(109), - [399] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(144), - [402] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [408] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 1), - [410] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__user_name_group, 1), - [412] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3), - [414] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [416] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), SHIFT_REPEAT(209), - [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 3), - [423] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [425] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_fragment, 1), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [429] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 1), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 1), - [439] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [441] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 5), - [445] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 5), - [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 1), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [453] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), SHIFT_REPEAT(132), - [458] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2), SHIFT_REPEAT(210), - [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2), - [467] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2), SHIFT_REPEAT(180), - [470] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 1), - [472] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 1), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [478] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 1), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2), - [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2), - [486] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), SHIFT_REPEAT(139), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), - [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 4), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), - [501] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), SHIFT_REPEAT(87), - [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3), - [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 1), - [508] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 1), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [512] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), - [516] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), - [518] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), - [520] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4), - [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [524] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_line, 2), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, .production_id = 8), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, .production_id = 8), - [530] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [544] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [550] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [552] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [554] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [556] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [562] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [564] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 2), - [566] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), SHIFT_REPEAT(15), - [569] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, .production_id = 9), - [575] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, .production_id = 9), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [579] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, .production_id = 10), - [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, .production_id = 10), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3), - [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1), - [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 1), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 1), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 1), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 1), - [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 3, .production_id = 4), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [619] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, .production_id = 13), - [623] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, .production_id = 13), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [627] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 1), - [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 6), - [631] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 6), - [633] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [641] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 4), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [645] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anon_comment, 2), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 3), - [649] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 3), - [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 6), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 6), - [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 2), - [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [671] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 3), - [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 3), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 3), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 3), - [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 3), - [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3, .production_id = 2), - [703] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 5, .production_id = 12), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [707] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 3), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 4), - [715] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [721] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 6, .production_id = 14), - [723] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5), - [725] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, .production_id = 10), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, .production_id = 7), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instruction, 1), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [777] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [785] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [789] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [791] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [793] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [795] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), - [799] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), - [803] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [807] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [809] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), + [140] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(138), + [143] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), + [145] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(73), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(73), + [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [153] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [157] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(137), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(60), + [163] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(60), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), + [170] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(142), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(71), + [176] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1), + [178] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1), + [180] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2), + [182] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2), + [184] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [186] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), + [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2), + [190] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [192] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [194] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), + [204] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(85), + [207] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(151), + [210] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1), + [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [220] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [222] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [224] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(140), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [229] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(95), + [232] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(95), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(28), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 3), + [239] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [243] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), + [245] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2), + [247] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [253] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), + [255] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(101), + [258] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(147), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [263] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), + [271] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), + [273] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(141), + [276] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(96), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [281] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 3, .production_id = 3), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [287] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 1), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 1), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), + [297] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(151), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(70), + [303] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, .production_id = 1), + [305] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, .production_id = 1), + [307] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), + [313] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(117), + [316] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(145), + [319] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1), + [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2), + [327] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), + [329] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), SHIFT_REPEAT(238), + [332] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), + [340] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [342] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2), + [346] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(143), + [349] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(127), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 5, .production_id = 11), + [354] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 3), + [356] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), + [358] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1), + [364] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 1), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 1), + [370] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [374] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(111), + [377] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(149), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 2), + [382] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(109), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(144), + [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(62), + [390] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 1), + [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3), + [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [398] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), + [400] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), SHIFT_REPEAT(209), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 3), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [407] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_fragment, 1), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [411] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1), + [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [415] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), + [417] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 1), + [419] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 1), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 5), + [423] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 5), + [425] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 1), + [427] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 1), + [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), + [433] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), SHIFT_REPEAT(132), + [436] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), + [438] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2), + [440] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2), SHIFT_REPEAT(210), + [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2), + [445] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2), SHIFT_REPEAT(180), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 1), + [450] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 1), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [458] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2), + [460] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2), + [462] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), SHIFT_REPEAT(139), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 4), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), + [477] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), SHIFT_REPEAT(87), + [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3), + [482] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 1), + [484] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 1), + [486] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [488] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), + [490] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), + [492] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), + [494] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), + [496] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4), + [498] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [500] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_line, 2), + [502] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, .production_id = 8), + [504] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, .production_id = 8), + [506] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [508] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [514] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [518] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [520] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [528] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [540] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 2), + [542] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), SHIFT_REPEAT(15), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, .production_id = 9), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, .production_id = 9), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, .production_id = 10), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, .production_id = 10), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3), + [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(56), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1), + [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [577] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 1), + [579] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 1), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [583] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [585] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 1), + [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 1), + [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 3, .production_id = 4), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [593] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [595] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, .production_id = 13), + [599] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, .production_id = 13), + [601] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [603] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 1), + [605] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 6), + [607] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 6), + [609] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2), + [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [617] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 4), + [619] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [621] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anon_comment, 2), + [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 3), + [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 3), + [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [629] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 6), + [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 6), + [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [635] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 2), + [637] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [647] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 3), + [651] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3), + [655] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [657] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [659] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 3), + [661] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [663] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [665] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [667] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 3), + [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 3), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 3), + [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [675] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [677] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3, .production_id = 2), + [679] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 5, .production_id = 12), + [681] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [687] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 3), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 4), + [691] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3), + [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 6, .production_id = 14), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5), + [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [705] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), + [709] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, .production_id = 10), + [713] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [717] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [721] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [725] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, .production_id = 7), + [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), + [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [737] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), + [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [741] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [745] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instruction, 1), + [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 3), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [753] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), + [761] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [767] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), + [769] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [771] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), + [773] = {.entry = {.count = 1, .reusable = false}}, SHIFT(237), + [775] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [777] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [779] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), + [781] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), + [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [785] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), }; #ifdef __cplusplus