diff --git a/corpus/comment.txt b/corpus/comment.txt index 9d11a57..8cb7cc0 100644 --- a/corpus/comment.txt +++ b/corpus/comment.txt @@ -8,18 +8,3 @@ Full line comment (source_file (comment)) - -================== -Comment after instruction -================== - -ADD /src ./dst # Test comment - ---- - -(source_file - (add_instruction - (path) - (path)) - (comment)) - diff --git a/grammar.js b/grammar.js index 9d072d5..c8cdc5c 100644 --- a/grammar.js +++ b/grammar.js @@ -1,10 +1,10 @@ module.exports = grammar({ name: "dockerfile", - extras: ($) => [$.comment, /\s+/, "\\\n"], + extras: ($) => [/\s+/, "\\\n"], rules: { - source_file: ($) => repeat(seq($._instruction, "\n")), + source_file: ($) => repeat(seq(choice($._instruction, $.comment), "\n")), _instruction: ($) => choice( diff --git a/src/grammar.json b/src/grammar.json index 7d8ae08..2401ec1 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -7,8 +7,17 @@ "type": "SEQ", "members": [ { - "type": "SYMBOL", - "name": "_instruction" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "_instruction" + }, + { + "type": "SYMBOL", + "name": "comment" + } + ] }, { "type": "STRING", @@ -1488,10 +1497,6 @@ } }, "extras": [ - { - "type": "SYMBOL", - "name": "comment" - }, { "type": "PATTERN", "value": "\\s+" diff --git a/src/node-types.json b/src/node-types.json index 7e406fb..41c643a 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -602,6 +602,10 @@ "type": "cmd_instruction", "named": true }, + { + "type": "comment", + "named": true + }, { "type": "copy_instruction", "named": true diff --git a/src/parser.c b/src/parser.c index 3acd4bf..62c0241 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 13 -#define STATE_COUNT 265 +#define STATE_COUNT 246 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 124 #define ALIAS_COUNT 0 @@ -1001,335 +1001,314 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(162); - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == ',') ADVANCE(229); - if (lookahead == '-') ADVANCE(51); - if (lookahead == ':') ADVANCE(177); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '@') ADVANCE(219); - if (lookahead == '[') ADVANCE(228); - if (lookahead == '\\') ADVANCE(196); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '}') ADVANCE(204); + if (eof) ADVANCE(160); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '$') ADVANCE(197); + if (lookahead == ',') ADVANCE(227); + if (lookahead == '-') ADVANCE(40); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '@') ADVANCE(217); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') ADVANCE(194); + if (lookahead == ']') ADVANCE(228); + if (lookahead == '{') ADVANCE(198); + if (lookahead == '}') ADVANCE(202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(161) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); - if (lookahead != 0) ADVANCE(195); + lookahead == ' ') SKIP(159) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); + if (lookahead != 0) ADVANCE(193); END_STATE(); case 1: - if (lookahead == '\n') ADVANCE(233); + if (lookahead == '\n') ADVANCE(231); END_STATE(); case 2: - if (lookahead == '\n') ADVANCE(233); - if (lookahead == ' ') ADVANCE(249); + if (lookahead == '\n') ADVANCE(231); + if (lookahead == ' ') ADVANCE(240); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(233); - if (lookahead == 'U') ADVANCE(158); - if (lookahead == 'u') ADVANCE(154); - if (lookahead == 'x') ADVANCE(152); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(252); - if (lookahead != 0) ADVANCE(250); + if (lookahead == '\n') ADVANCE(231); + if (lookahead == 'U') ADVANCE(156); + if (lookahead == 'u') ADVANCE(152); + if (lookahead == 'x') ADVANCE(150); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(243); + if (lookahead != 0) ADVANCE(241); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(233); - if (lookahead != 0) ADVANCE(232); + if (lookahead == '\n') ADVANCE(231); + if (lookahead != 0) ADVANCE(230); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '/') ADVANCE(61); - if (lookahead == ':') ADVANCE(177); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\n') SKIP(25) + if (lookahead == '"') ADVANCE(234); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); + lookahead == ' ') ADVANCE(235); + if (lookahead != 0) ADVANCE(236); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '/') ADVANCE(61); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '/') ADVANCE(59); + if (lookahead == ':') ADVANCE(175); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(6) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + lookahead == ' ') SKIP(7) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(206); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); case 7: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '/') ADVANCE(59); if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(220); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (('0' <= lookahead && lookahead <= ':') || - ('B' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(221); + lookahead == ' ') SKIP(7) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(206); END_STATE(); case 8: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '@') ADVANCE(217); + if (lookahead == '\\') ADVANCE(210); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); - END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - 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(211); - END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); + lookahead == 'a') ADVANCE(212); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (lookahead != 0) ADVANCE(213); + END_STATE(); + case 9: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '=') ADVANCE(181); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(218); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (('0' <= lookahead && lookahead <= ':') || + ('B' <= lookahead && lookahead <= 'Z') || + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(219); + END_STATE(); + case 10: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '@') ADVANCE(217); + if (lookahead == '\\') ADVANCE(214); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(215); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(11) + if (lookahead != 0) ADVANCE(216); + END_STATE(); + case 11: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(134); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(11) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); case 12: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(12) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); END_STATE(); case 13: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == ':') ADVANCE(177); - if (lookahead == '@') ADVANCE(219); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(14) + lookahead == ' ') SKIP(13) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 14: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(1); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(136); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(14) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); END_STATE(); case 15: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(15) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(184); END_STATE(); case 16: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(12) + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); + if (lookahead != 0 && + lookahead != '"') ADVANCE(239); + END_STATE(); + case 17: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(2); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(13) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(237); + if (lookahead != 0 && + lookahead != '"') ADVANCE(239); + END_STATE(); + case 18: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(195); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(18) + if (lookahead != 0) ADVANCE(196); + END_STATE(); + case 19: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == ':') ADVANCE(175); + if (lookahead == '@') ADVANCE(217); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(134); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + END_STATE(); + case 20: + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(134); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') SKIP(20) + END_STATE(); + case 21: + if (lookahead == '\n') ADVANCE(161); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') SKIP(16) - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); - END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(17) - if (lookahead != 0 && - lookahead != '[') ADVANCE(231); - END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(237); - if (lookahead == '$') ADVANCE(199); - if (lookahead == ':') ADVANCE(177); - if (lookahead == '@') ADVANCE(219); - if (lookahead == '\\') ADVANCE(212); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(214); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(215); - END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(236); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(2); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(9) + lookahead == ' ') SKIP(21) if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); - if (lookahead != 0 && - lookahead != '"') ADVANCE(248); - END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(236); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(2); - 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(247); - if (lookahead != 0 && - lookahead != '"') ADVANCE(248); - END_STATE(); - case 21: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '@') ADVANCE(219); - if (lookahead == '\\') ADVANCE(216); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(217); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') SKIP(8) - if (lookahead != 0) ADVANCE(218); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(163); - if (lookahead == '#') ADVANCE(239); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(197); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\r' || lookahead == ' ') SKIP(22) - if (lookahead != 0) ADVANCE(198); + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); END_STATE(); case 23: - if (lookahead == '\n') SKIP(26) - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(245); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\n') ADVANCE(161); + if (lookahead == '\\') ADVANCE(4); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(244); - if (lookahead != 0) ADVANCE(245); + lookahead == ' ') SKIP(23) + if (lookahead != 0 && + lookahead != '#' && + lookahead != '[') ADVANCE(229); END_STATE(); case 24: - if (lookahead == '\n') ADVANCE(164); + if (lookahead == '\n') ADVANCE(162); if (lookahead == '\r') SKIP(24) - if (lookahead == '#') ADVANCE(239); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(197); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(195); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(253); - if (lookahead != 0) ADVANCE(198); + lookahead == ' ') ADVANCE(244); + if (lookahead != 0) ADVANCE(196); END_STATE(); case 25: - if (lookahead == '\n') ADVANCE(164); - if (lookahead == '\r') SKIP(25) - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(253); - END_STATE(); - case 26: - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(26) + lookahead == ' ') SKIP(25) END_STATE(); - case 27: - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(236); - if (lookahead == '$') ADVANCE(199); + case 26: + if (lookahead == '"') ADVANCE(234); + if (lookahead == '$') ADVANCE(197); if (lookahead == '\\') ADVANCE(2); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(26) - if (lookahead != 0) ADVANCE(248); + lookahead == ' ') SKIP(25) + if (lookahead != 0) ADVANCE(239); + END_STATE(); + case 27: + if (lookahead == '#') ADVANCE(233); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') ADVANCE(4); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(27) + if (lookahead != 0) ADVANCE(229); END_STATE(); case 28: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '-') ADVANCE(51); - if (lookahead == '\\') ADVANCE(196); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '\\') ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(28) - if (lookahead != 0) ADVANCE(195); + if (lookahead != 0) ADVANCE(193); END_STATE(); case 29: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '-') ADVANCE(51); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '-') ADVANCE(40); if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || @@ -1337,513 +1316,484 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == ' ') SKIP(29) END_STATE(); case 30: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '[') ADVANCE(228); - if (lookahead == '\\') ADVANCE(196); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(30) - if (lookahead != 0 && - lookahead != '-') ADVANCE(195); - END_STATE(); - case 31: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - END_STATE(); - case 32: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (('0' <= lookahead && lookahead <= ':') || - ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); - END_STATE(); - case 33: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(33) - if (lookahead == '-' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); - END_STATE(); - case 34: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); - END_STATE(); - case 35: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(35) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); - END_STATE(); - case 36: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '=') ADVANCE(183); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(206); - END_STATE(); - case 37: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '[') ADVANCE(228); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(37) - if (lookahead != 0) ADVANCE(231); - END_STATE(); - case 38: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(38) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); - END_STATE(); - case 39: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(254); - if (lookahead == '\n' || - lookahead == '\r') SKIP(39) - END_STATE(); - case 40: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(40) - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(55); - END_STATE(); - case 41: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(41) - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); - END_STATE(); - case 42: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(42) - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); - END_STATE(); - case 43: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - END_STATE(); - case 44: - if (lookahead == '#') ADVANCE(235); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); - END_STATE(); - case 45: - if (lookahead == '#') ADVANCE(237); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '-') ADVANCE(213); - if (lookahead == '\\') ADVANCE(212); + if (lookahead == '$') ADVANCE(197); + if (lookahead == '-') ADVANCE(211); + if (lookahead == '\\') ADVANCE(210); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(29) if (lookahead != 0 && lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(213); END_STATE(); - case 46: - if (lookahead == '#') ADVANCE(237); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(212); + case 31: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') ADVANCE(194); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(31) + if (lookahead != 0 && + lookahead != '-') ADVANCE(193); + END_STATE(); + case 32: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + END_STATE(); + case 33: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (('0' <= lookahead && lookahead <= ':') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); + END_STATE(); + case 34: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(34) + if (lookahead == '-' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); + END_STATE(); + case 35: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(184); + END_STATE(); + case 36: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(36) + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(184); + END_STATE(); + case 37: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(210); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) if (lookahead != 0 && lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(213); + END_STATE(); + case 38: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(214); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(32) + if (lookahead != 0 && + lookahead != '@') ADVANCE(216); + END_STATE(); + case 39: + if (lookahead == '$') ADVANCE(197); + if (lookahead == '\\') ADVANCE(195); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(245); + if (lookahead == '\n' || + lookahead == '\r') SKIP(39) + if (lookahead != 0) ADVANCE(196); + END_STATE(); + case 40: + if (lookahead == '-') ADVANCE(220); + END_STATE(); + case 41: + if (lookahead == '=') ADVANCE(181); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(204); + END_STATE(); + case 42: + if (lookahead == 'E') ADVANCE(186); + END_STATE(); + case 43: + if (lookahead == 'N') ADVANCE(42); + END_STATE(); + case 44: + if (lookahead == 'O') ADVANCE(43); + END_STATE(); + case 45: + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '{') ADVANCE(198); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(45) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); + END_STATE(); + case 46: + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(46) + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(53); END_STATE(); case 47: - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(216); + if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(31) - if (lookahead != 0 && - lookahead != '@') ADVANCE(218); + lookahead == ' ') SKIP(47) + if (lookahead == '-' || + lookahead == '.' || + ('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); END_STATE(); case 48: - if (lookahead == '#') ADVANCE(239); - if (lookahead == '$') ADVANCE(199); - if (lookahead == '\\') ADVANCE(197); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(254); - if (lookahead == '\n' || - lookahead == '\r') SKIP(48) - if (lookahead != 0) ADVANCE(198); - END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(242); - if (lookahead == '\\') ADVANCE(201); + if (lookahead == '\\') ADVANCE(1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(202); - if (lookahead != 0 && - lookahead != '}') ADVANCE(203); - END_STATE(); - case 50: - if (lookahead == '#') ADVANCE(240); - if (lookahead == '\\') ADVANCE(225); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(43) - if (lookahead != 0) ADVANCE(226); - END_STATE(); - case 51: - if (lookahead == '-') ADVANCE(222); - END_STATE(); - case 52: - if (lookahead == 'E') ADVANCE(188); - END_STATE(); - case 53: - if (lookahead == 'N') ADVANCE(52); - END_STATE(); - case 54: - if (lookahead == 'O') ADVANCE(53); - END_STATE(); - case 55: - if (lookahead == '_') ADVANCE(55); + lookahead == ' ') SKIP(48) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); + END_STATE(); + case 49: + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + END_STATE(); + case 50: + if (lookahead == '\\') ADVANCE(1); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); + END_STATE(); + case 51: + if (lookahead == '\\') ADVANCE(199); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(200); + if (lookahead != 0 && + lookahead != '}') ADVANCE(201); + END_STATE(); + case 52: + if (lookahead == '\\') ADVANCE(223); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(49) + if (lookahead != 0) ADVANCE(224); + END_STATE(); + case 53: + if (lookahead == '_') ADVANCE(53); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); + END_STATE(); + case 54: + if (lookahead == '_') ADVANCE(67); + END_STATE(); + case 55: + if (lookahead == 'c') ADVANCE(57); END_STATE(); case 56: - if (lookahead == '_') ADVANCE(69); + if (lookahead == 'd') ADVANCE(58); END_STATE(); case 57: - if (lookahead == 'c') ADVANCE(59); + if (lookahead == 'p') ADVANCE(207); END_STATE(); case 58: - if (lookahead == 'd') ADVANCE(60); + if (lookahead == 'p') ADVANCE(208); END_STATE(); case 59: - if (lookahead == 'p') ADVANCE(209); + if (lookahead == 't') ADVANCE(55); + if (lookahead == 'u') ADVANCE(56); END_STATE(); case 60: - if (lookahead == 'p') ADVANCE(210); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(66); END_STATE(); case 61: - if (lookahead == 't') ADVANCE(57); - if (lookahead == 'u') ADVANCE(58); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(90); END_STATE(); case 62: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(68); + lookahead == 'a') ADVANCE(98); END_STATE(); case 63: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(92); + lookahead == 'a') ADVANCE(101); END_STATE(); case 64: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(100); + lookahead == 'a') ADVANCE(91); END_STATE(); case 65: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(103); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(144); END_STATE(); case 66: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(93); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(82); END_STATE(); case 67: if (lookahead == 'B' || lookahead == 'b') ADVANCE(146); END_STATE(); case 68: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(84); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(96); END_STATE(); case 69: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(148); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(88); END_STATE(); case 70: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(98); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(71); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(84); END_STATE(); case 71: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(90); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(170); END_STATE(); case 72: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(73); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(86); + lookahead == 'd') ADVANCE(166); END_STATE(); case 73: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(172); + lookahead == 'd') ADVANCE(182); END_STATE(); case 74: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(168); + lookahead == 'd') ADVANCE(192); END_STATE(); case 75: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(184); + lookahead == 'd') ADVANCE(92); END_STATE(); case 76: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(194); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(168); END_STATE(); case 77: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(94); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(173); END_STATE(); case 78: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(170); + lookahead == 'e') ADVANCE(68); END_STATE(); case 79: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + lookahead == 'e') ADVANCE(62); END_STATE(); case 80: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(70); + lookahead == 'e') ADVANCE(105); END_STATE(); case 81: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(64); + lookahead == 'e') ADVANCE(128); END_STATE(); case 82: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(107); + lookahead == 'e') ADVANCE(99); END_STATE(); case 83: if (lookahead == 'E' || lookahead == 'e') ADVANCE(130); END_STATE(); case 84: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(101); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(179); END_STATE(); case 85: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(132); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(114); END_STATE(); case 86: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(181); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(69); END_STATE(); case 87: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(116); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(80); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(120); END_STATE(); case 88: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(71); + lookahead == 'h') ADVANCE(78); END_STATE(); case 89: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(82); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(122); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(85); END_STATE(); case 90: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(80); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(112); END_STATE(); case 91: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(87); + lookahead == 'i') ADVANCE(115); END_STATE(); case 92: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(114); + lookahead == 'i') ADVANCE(129); END_STATE(); case 93: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(117); + lookahead == 'i') ADVANCE(113); END_STATE(); case 94: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(131); + lookahead == 'i') ADVANCE(103); END_STATE(); case 95: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(115); + lookahead == 'i') ADVANCE(104); END_STATE(); case 96: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(105); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(185); END_STATE(); case 97: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(106); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(75); END_STATE(); case 98: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(187); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(139); END_STATE(); case 99: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(77); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(167); END_STATE(); case 100: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(141); + lookahead == 'l') ADVANCE(187); END_STATE(); case 101: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(169); + lookahead == 'l') ADVANCE(183); END_STATE(); case 102: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(189); + lookahead == 'l') ADVANCE(145); END_STATE(); case 103: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(185); + lookahead == 'l') ADVANCE(73); END_STATE(); case 104: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(147); + lookahead == 'l') ADVANCE(74); END_STATE(); case 105: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(75); + lookahead == 'l') ADVANCE(100); END_STATE(); case 106: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(76); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(163); END_STATE(); case 107: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(102); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(72); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(123); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(119); END_STATE(); case 108: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(165); + lookahead == 'm') ADVANCE(77); END_STATE(); case 109: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(74); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(125); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(121); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(141); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(125); END_STATE(); case 110: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(79); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(165); END_STATE(); case 111: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(143); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(127); + lookahead == 'n') ADVANCE(65); END_STATE(); case 112: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(167); + lookahead == 'n') ADVANCE(142); END_STATE(); case 113: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(67); + lookahead == 'n') ADVANCE(140); END_STATE(); case 114: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(144); + lookahead == 'n') ADVANCE(63); END_STATE(); case 115: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(142); + lookahead == 'n') ADVANCE(83); END_STATE(); case 116: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(65); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(102); END_STATE(); case 117: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(85); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(106); END_STATE(); case 118: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(104); + lookahead == 'o') ADVANCE(127); END_STATE(); case 119: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(108); + lookahead == 'o') ADVANCE(136); END_STATE(); case 120: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(129); + lookahead == 'o') ADVANCE(124); END_STATE(); case 121: if (lookahead == 'O' || @@ -1851,126 +1801,128 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 122: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(126); + lookahead == 'o') ADVANCE(93); END_STATE(); case 123: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(140); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(147); END_STATE(); case 124: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(95); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(137); END_STATE(); case 125: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(149); + lookahead == 'p') ADVANCE(121); END_STATE(); case 126: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(139); + lookahead == 'p') ADVANCE(122); END_STATE(); case 127: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(123); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(97); END_STATE(); case 128: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(124); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(174); END_STATE(); case 129: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(99); + lookahead == 'r') ADVANCE(178); END_STATE(); case 130: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(176); + lookahead == 'r') ADVANCE(188); END_STATE(); case 131: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(180); + lookahead == 'r') ADVANCE(148); END_STATE(); case 132: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(190); + lookahead == 'r') ADVANCE(117); END_STATE(); case 133: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(150); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(54); END_STATE(); case 134: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(119); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(164); END_STATE(); case 135: if (lookahead == 'S' || - lookahead == 's') ADVANCE(56); + lookahead == 's') ADVANCE(81); END_STATE(); case 136: if (lookahead == 'S' || - lookahead == 's') ADVANCE(166); + lookahead == 's') ADVANCE(133); END_STATE(); case 137: if (lookahead == 'S' || - lookahead == 's') ADVANCE(83); + lookahead == 's') ADVANCE(89); END_STATE(); case 138: if (lookahead == 'S' || - lookahead == 's') ADVANCE(135); + lookahead == 's') ADVANCE(76); END_STATE(); case 139: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(91); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(86); END_STATE(); case 140: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(78); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(172); END_STATE(); case 141: if (lookahead == 'T' || - lookahead == 't') ADVANCE(88); + lookahead == 't') ADVANCE(131); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(169); END_STATE(); case 142: if (lookahead == 'T' || - lookahead == 't') ADVANCE(174); + lookahead == 't') ADVANCE(64); END_STATE(); case 143: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(133); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(171); - END_STATE(); - case 144: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(66); - END_STATE(); - case 145: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(112); - END_STATE(); - case 146: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(96); - END_STATE(); - case 147: if (lookahead == 'U' || lookahead == 'u') ADVANCE(110); END_STATE(); - case 148: + case 144: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(97); + lookahead == 'u') ADVANCE(94); + END_STATE(); + case 145: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(108); + END_STATE(); + case 146: + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(95); + END_STATE(); + case 147: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(171); + END_STATE(); + case 148: + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(126); END_STATE(); case 149: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(173); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(241); END_STATE(); case 150: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(128); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(149); END_STATE(); case 151: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(250); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(150); END_STATE(); case 152: if (('0' <= lookahead && lookahead <= '9') || @@ -1998,361 +1950,373 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(155); END_STATE(); case 157: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(156); + if (eof) ADVANCE(160); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '$') ADVANCE(197); + if (lookahead == ',') ADVANCE(227); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '=') ADVANCE(181); + if (lookahead == 'N') ADVANCE(44); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == ']') ADVANCE(228); + if (lookahead == '}') ADVANCE(202); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(70); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(107); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(109); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(132); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(79); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(60); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(61); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(111); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(143); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(87); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(135); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(116); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(118); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(158) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(206); END_STATE(); case 158: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); + if (eof) ADVANCE(160); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '$') ADVANCE(197); + if (lookahead == ',') ADVANCE(227); + if (lookahead == '-') ADVANCE(40); + if (lookahead == 'N') ADVANCE(44); + if (lookahead == '\\') ADVANCE(1); + if (lookahead == ']') ADVANCE(228); + if (lookahead == '}') ADVANCE(202); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(70); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(107); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(109); + if (lookahead == 'F' || + lookahead == 'f') ADVANCE(132); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(79); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(60); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(61); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(111); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(143); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(87); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(135); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(116); + if (lookahead == 'W' || + lookahead == 'w') ADVANCE(118); + if (lookahead == '\t' || + lookahead == '\n' || + lookahead == '\r' || + lookahead == ' ') SKIP(158) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(206); END_STATE(); case 159: - if (eof) ADVANCE(162); - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == ',') ADVANCE(229); - if (lookahead == '-') ADVANCE(51); - if (lookahead == '=') ADVANCE(183); - if (lookahead == 'N') ADVANCE(54); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '}') ADVANCE(204); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(72); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(109); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(111); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(134); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(81); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(63); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(113); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(145); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(89); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(137); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(118); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(120); + if (eof) ADVANCE(160); + if (lookahead == '"') ADVANCE(234); + if (lookahead == '#') ADVANCE(233); + if (lookahead == '$') ADVANCE(197); + if (lookahead == ',') ADVANCE(227); + if (lookahead == '-') ADVANCE(40); + if (lookahead == '[') ADVANCE(226); + if (lookahead == '\\') ADVANCE(194); + if (lookahead == ']') ADVANCE(228); + if (lookahead == '{') ADVANCE(198); + if (lookahead == '}') ADVANCE(202); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') SKIP(160) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + lookahead == ' ') SKIP(159) + if (lookahead != 0) ADVANCE(193); END_STATE(); case 160: - if (eof) ADVANCE(162); - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == ',') ADVANCE(229); - if (lookahead == '-') ADVANCE(51); - if (lookahead == 'N') ADVANCE(54); - if (lookahead == '\\') ADVANCE(1); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '}') ADVANCE(204); - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(72); - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(109); - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(111); - if (lookahead == 'F' || - lookahead == 'f') ADVANCE(134); - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(81); - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(62); - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(63); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(113); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(145); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(89); - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(137); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(118); - if (lookahead == 'W' || - lookahead == 'w') ADVANCE(120); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(160) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); - END_STATE(); - case 161: - if (eof) ADVANCE(162); - if (lookahead == '"') ADVANCE(243); - if (lookahead == '#') ADVANCE(235); - if (lookahead == '$') ADVANCE(199); - if (lookahead == ',') ADVANCE(229); - if (lookahead == '-') ADVANCE(51); - if (lookahead == '[') ADVANCE(228); - if (lookahead == '\\') ADVANCE(196); - if (lookahead == ']') ADVANCE(230); - if (lookahead == '{') ADVANCE(200); - if (lookahead == '}') ADVANCE(204); - if (lookahead == '\t' || - lookahead == '\n' || - lookahead == '\r' || - lookahead == ' ') SKIP(161) - if (lookahead != 0) ADVANCE(195); - END_STATE(); - case 162: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 163: + case 161: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(163); + if (lookahead == '\n') ADVANCE(161); END_STATE(); - case 164: + case 162: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(164); + if (lookahead == '\n') ADVANCE(162); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(253); + lookahead == ' ') ADVANCE(244); END_STATE(); - case 165: + case 163: ACCEPT_TOKEN(aux_sym_from_instruction_token1); END_STATE(); - case 166: + case 164: ACCEPT_TOKEN(aux_sym_from_instruction_token2); END_STATE(); - case 167: + case 165: ACCEPT_TOKEN(aux_sym_run_instruction_token1); END_STATE(); - case 168: + case 166: ACCEPT_TOKEN(aux_sym_cmd_instruction_token1); END_STATE(); - case 169: + case 167: ACCEPT_TOKEN(aux_sym_label_instruction_token1); END_STATE(); - case 170: + case 168: ACCEPT_TOKEN(aux_sym_expose_instruction_token1); END_STATE(); - case 171: + case 169: ACCEPT_TOKEN(aux_sym_env_instruction_token1); END_STATE(); - case 172: + case 170: ACCEPT_TOKEN(aux_sym_add_instruction_token1); END_STATE(); - case 173: + case 171: ACCEPT_TOKEN(aux_sym_copy_instruction_token1); END_STATE(); - case 174: + case 172: ACCEPT_TOKEN(aux_sym_entrypoint_instruction_token1); END_STATE(); - case 175: + case 173: ACCEPT_TOKEN(aux_sym_volume_instruction_token1); END_STATE(); - case 176: + case 174: ACCEPT_TOKEN(aux_sym_user_instruction_token1); END_STATE(); - case 177: + case 175: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 178: + case 176: ACCEPT_TOKEN(aux_sym__user_name_group_token1); if (('0' <= lookahead && lookahead <= '9') || - lookahead == '_') ADVANCE(179); + lookahead == '_') ADVANCE(177); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(178); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(176); END_STATE(); - case 179: + case 177: ACCEPT_TOKEN(aux_sym__user_name_group_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(179); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(177); END_STATE(); - case 180: + case 178: ACCEPT_TOKEN(aux_sym_workdir_instruction_token1); END_STATE(); - case 181: + case 179: ACCEPT_TOKEN(aux_sym_arg_instruction_token1); END_STATE(); - case 182: + case 180: ACCEPT_TOKEN(aux_sym_arg_instruction_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(180); END_STATE(); - case 183: + case 181: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 184: + case 182: ACCEPT_TOKEN(aux_sym_onbuild_instruction_token1); END_STATE(); - case 185: + case 183: ACCEPT_TOKEN(aux_sym_stopsignal_instruction_token1); END_STATE(); - case 186: + case 184: ACCEPT_TOKEN(aux_sym__stopsignal_value_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(186); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(184); END_STATE(); - case 187: + case 185: ACCEPT_TOKEN(aux_sym_healthcheck_instruction_token1); END_STATE(); - case 188: + case 186: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 189: + case 187: ACCEPT_TOKEN(aux_sym_shell_instruction_token1); END_STATE(); - case 190: + case 188: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token1); END_STATE(); + case 189: + ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); + if (lookahead == '\n') ADVANCE(231); + if (lookahead != 0) ADVANCE(191); + END_STATE(); + case 190: + ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); + if (lookahead == '\\') ADVANCE(189); + if (lookahead == '\t' || + lookahead == '\r' || + lookahead == ' ') ADVANCE(190); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(191); + END_STATE(); case 191: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead == '\n') ADVANCE(233); - if (lookahead != 0) ADVANCE(193); + if (lookahead != 0 && + lookahead != '\n') ADVANCE(191); END_STATE(); case 192: - ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead == '#') ADVANCE(241); - if (lookahead == '\\') ADVANCE(191); - if (lookahead == '\t' || - lookahead == '\r' || - lookahead == ' ') ADVANCE(192); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); - END_STATE(); - case 193: - ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); - END_STATE(); - case 194: ACCEPT_TOKEN(aux_sym_cross_build_instruction_token1); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(194); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(192); + END_STATE(); + case 193: + ACCEPT_TOKEN(aux_sym_path_token1); + END_STATE(); + case 194: + ACCEPT_TOKEN(aux_sym_path_token1); + if (lookahead == '\n') ADVANCE(231); END_STATE(); case 195: - ACCEPT_TOKEN(aux_sym_path_token1); - END_STATE(); - case 196: - ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\n') ADVANCE(233); - END_STATE(); - case 197: ACCEPT_TOKEN(aux_sym_path_token2); - if (lookahead == '\n') ADVANCE(233); + if (lookahead == '\n') ADVANCE(231); if (lookahead != 0 && lookahead != '\t' && lookahead != '\r' && lookahead != ' ' && - lookahead != '$') ADVANCE(198); + lookahead != '$') ADVANCE(196); END_STATE(); - case 198: + case 196: ACCEPT_TOKEN(aux_sym_path_token2); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && - lookahead != '$') ADVANCE(198); + lookahead != '$') ADVANCE(196); END_STATE(); - case 199: + case 197: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 200: + case 198: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 201: + case 199: ACCEPT_TOKEN(aux_sym_expansion_token1); - if (lookahead == '\n') ADVANCE(234); + if (lookahead == '\n') ADVANCE(232); if (lookahead != 0 && - lookahead != '}') ADVANCE(203); + lookahead != '}') ADVANCE(201); END_STATE(); - case 202: + case 200: ACCEPT_TOKEN(aux_sym_expansion_token1); - if (lookahead == '#') ADVANCE(242); - if (lookahead == '\\') ADVANCE(201); + if (lookahead == '\\') ADVANCE(199); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(202); + lookahead == ' ') ADVANCE(200); if (lookahead != 0 && - lookahead != '}') ADVANCE(203); + lookahead != '}') ADVANCE(201); END_STATE(); - case 203: + case 201: ACCEPT_TOKEN(aux_sym_expansion_token1); if (lookahead != 0 && - lookahead != '}') ADVANCE(203); + lookahead != '}') ADVANCE(201); END_STATE(); - case 204: + case 202: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 205: + case 203: ACCEPT_TOKEN(sym_variable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); END_STATE(); - case 206: + case 204: ACCEPT_TOKEN(aux_sym__spaced_env_pair_token1); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || - lookahead == ' ') ADVANCE(206); + lookahead == ' ') ADVANCE(204); END_STATE(); - case 207: + case 205: ACCEPT_TOKEN(aux_sym__env_key_token1); - if (lookahead == '_') ADVANCE(55); + if (lookahead == '_') ADVANCE(53); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(207); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(205); END_STATE(); - case 208: + case 206: ACCEPT_TOKEN(aux_sym_expose_port_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(208); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(206); END_STATE(); - case 209: + case 207: ACCEPT_TOKEN(anon_sym_SLASHtcp); END_STATE(); - case 210: + case 208: ACCEPT_TOKEN(anon_sym_SLASHudp); END_STATE(); - case 211: + case 209: ACCEPT_TOKEN(aux_sym_label_pair_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(211); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(209); + END_STATE(); + case 210: + ACCEPT_TOKEN(aux_sym_image_name_token1); + if (lookahead == '\n') ADVANCE(231); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '$' && + lookahead != ':' && + lookahead != '@') ADVANCE(213); + END_STATE(); + case 211: + ACCEPT_TOKEN(aux_sym_image_name_token1); + if (lookahead == '-') ADVANCE(221); + if (lookahead != 0 && + lookahead != '\t' && + lookahead != '\n' && + lookahead != '\r' && + lookahead != ' ' && + lookahead != '$' && + lookahead != ':' && + lookahead != '@') ADVANCE(213); END_STATE(); case 212: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '\n') ADVANCE(233); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(213); if (lookahead != 0 && lookahead != '\t' && + lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(213); END_STATE(); case 213: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '-') ADVANCE(223); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2360,85 +2324,61 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(213); END_STATE(); case 214: - ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(215); + ACCEPT_TOKEN(aux_sym_image_tag_token1); + if (lookahead == '\n') ADVANCE(231); if (lookahead != 0 && lookahead != '\t' && - lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(216); END_STATE(); case 215: - ACCEPT_TOKEN(aux_sym_image_name_token1); + ACCEPT_TOKEN(aux_sym_image_tag_token1); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(216); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(216); END_STATE(); case 216: ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == '\n') ADVANCE(233); if (lookahead != 0 && lookahead != '\t' && + lookahead != '\n' && lookahead != '\r' && lookahead != ' ' && lookahead != '$' && - lookahead != '@') ADVANCE(218); + lookahead != '@') ADVANCE(216); END_STATE(); case 217: - ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == 'S' || - lookahead == 's') ADVANCE(218); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$' && - lookahead != '@') ADVANCE(218); - END_STATE(); - case 218: - ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$' && - lookahead != '@') ADVANCE(218); - END_STATE(); - case 219: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 220: + case 218: ACCEPT_TOKEN(aux_sym_image_digest_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(221); + lookahead == 's') ADVANCE(219); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); END_STATE(); - case 221: + case 219: ACCEPT_TOKEN(aux_sym_image_digest_token1); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(219); END_STATE(); - case 222: + case 220: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); - case 223: + case 221: ACCEPT_TOKEN(anon_sym_DASH_DASH); if (lookahead != 0 && lookahead != '\t' && @@ -2447,153 +2387,94 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(215); + lookahead != '@') ADVANCE(213); END_STATE(); - case 224: + case 222: ACCEPT_TOKEN(aux_sym_param_token1); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(224); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 225: + case 223: ACCEPT_TOKEN(aux_sym_param_token2); - if (lookahead == '\n') ADVANCE(233); + if (lookahead == '\n') ADVANCE(231); if (lookahead != 0 && lookahead != '\t' && lookahead != '\r' && - lookahead != ' ') ADVANCE(226); + lookahead != ' ') ADVANCE(224); END_STATE(); - case 226: + case 224: ACCEPT_TOKEN(aux_sym_param_token2); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && lookahead != '\r' && - lookahead != ' ') ADVANCE(226); + lookahead != ' ') ADVANCE(224); END_STATE(); - case 227: + case 225: ACCEPT_TOKEN(aux_sym_image_alias_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(225); END_STATE(); - case 228: + case 226: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 229: + case 227: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 230: + case 228: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 231: + case 229: ACCEPT_TOKEN(aux_sym_shell_fragment_token1); if (lookahead != 0 && lookahead != '\n' && - lookahead != '\\') ADVANCE(231); + lookahead != '\\') ADVANCE(229); END_STATE(); - case 232: + case 230: ACCEPT_TOKEN(aux_sym_shell_fragment_token2); END_STATE(); - case 233: + case 231: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); + case 232: + ACCEPT_TOKEN(sym_line_continuation); + if (lookahead != 0 && + lookahead != '}') ADVANCE(201); + END_STATE(); + case 233: + ACCEPT_TOKEN(anon_sym_POUND); + END_STATE(); case 234: - ACCEPT_TOKEN(sym_line_continuation); - if (lookahead != 0 && - lookahead != '}') ADVANCE(203); - END_STATE(); - case 235: - ACCEPT_TOKEN(anon_sym_POUND); - END_STATE(); - case 236: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '"' && - lookahead != '$' && - lookahead != '\\') ADVANCE(248); - END_STATE(); - case 237: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$' && - lookahead != ':' && - lookahead != '@') ADVANCE(215); - END_STATE(); - case 238: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$' && - lookahead != '@') ADVANCE(218); - END_STATE(); - case 239: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ' && - lookahead != '$') ADVANCE(198); - END_STATE(); - case 240: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\t' && - lookahead != '\n' && - lookahead != '\r' && - lookahead != ' ') ADVANCE(226); - END_STATE(); - case 241: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(193); - END_STATE(); - case 242: - ACCEPT_TOKEN(anon_sym_POUND); - if (lookahead != 0 && - lookahead != '}') ADVANCE(203); - END_STATE(); - case 243: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 244: + case 235: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '#') ADVANCE(245); if (lookahead == '\t' || lookahead == '\r' || - lookahead == ' ') ADVANCE(244); + lookahead == ' ') ADVANCE(235); if (lookahead != 0 && lookahead != '\n' && - (lookahead < '"' || '$' < lookahead) && - lookahead != '\\') ADVANCE(245); + lookahead != '"' && + lookahead != '$' && + lookahead != '\\') ADVANCE(236); END_STATE(); - case 245: + case 236: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(245); + lookahead != '\\') ADVANCE(236); END_STATE(); - case 246: + case 237: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); - if (lookahead == '_') ADVANCE(246); + if (lookahead == '_') ADVANCE(237); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(246); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(237); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2601,16 +2482,16 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 247: + case 238: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(238); if (lookahead != 0 && lookahead != '\t' && lookahead != '\n' && @@ -2618,9 +2499,9 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 248: + case 239: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead != 0 && lookahead != '\t' && @@ -2629,32 +2510,32 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ' ' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(248); + lookahead != '\\') ADVANCE(239); END_STATE(); - case 249: + case 240: ACCEPT_TOKEN(anon_sym_BSLASH); END_STATE(); - case 250: + case 241: ACCEPT_TOKEN(sym_escape_sequence); END_STATE(); - case 251: + case 242: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(250); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(241); END_STATE(); - case 252: + case 243: ACCEPT_TOKEN(sym_escape_sequence); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(251); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(242); END_STATE(); - case 253: + case 244: ACCEPT_TOKEN(sym__non_newline_whitespace); - if (lookahead == '\n') ADVANCE(164); + if (lookahead == '\n') ADVANCE(162); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(253); + lookahead == ' ') ADVANCE(244); END_STATE(); - case 254: + case 245: ACCEPT_TOKEN(sym__non_newline_whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(254); + lookahead == ' ') ADVANCE(245); END_STATE(); default: return false; @@ -2663,275 +2544,255 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0}, - [1] = {.lex_state = 159}, - [2] = {.lex_state = 159}, - [3] = {.lex_state = 159}, - [4] = {.lex_state = 159}, - [5] = {.lex_state = 159}, - [6] = {.lex_state = 18}, - [7] = {.lex_state = 45}, - [8] = {.lex_state = 18}, - [9] = {.lex_state = 27}, - [10] = {.lex_state = 27}, - [11] = {.lex_state = 27}, - [12] = {.lex_state = 27}, - [13] = {.lex_state = 37}, - [14] = {.lex_state = 37}, - [15] = {.lex_state = 21}, - [16] = {.lex_state = 19}, - [17] = {.lex_state = 37}, - [18] = {.lex_state = 37}, - [19] = {.lex_state = 19}, - [20] = {.lex_state = 20}, - [21] = {.lex_state = 37}, - [22] = {.lex_state = 21}, - [23] = {.lex_state = 20}, - [24] = {.lex_state = 5}, - [25] = {.lex_state = 23}, - [26] = {.lex_state = 18}, + [1] = {.lex_state = 157}, + [2] = {.lex_state = 157}, + [3] = {.lex_state = 157}, + [4] = {.lex_state = 157}, + [5] = {.lex_state = 157}, + [6] = {.lex_state = 27}, + [7] = {.lex_state = 26}, + [8] = {.lex_state = 8}, + [9] = {.lex_state = 8}, + [10] = {.lex_state = 26}, + [11] = {.lex_state = 26}, + [12] = {.lex_state = 26}, + [13] = {.lex_state = 27}, + [14] = {.lex_state = 30}, + [15] = {.lex_state = 10}, + [16] = {.lex_state = 16}, + [17] = {.lex_state = 10}, + [18] = {.lex_state = 17}, + [19] = {.lex_state = 17}, + [20] = {.lex_state = 27}, + [21] = {.lex_state = 27}, + [22] = {.lex_state = 27}, + [23] = {.lex_state = 16}, + [24] = {.lex_state = 9}, + [25] = {.lex_state = 5}, + [26] = {.lex_state = 24}, [27] = {.lex_state = 24}, - [28] = {.lex_state = 24}, - [29] = {.lex_state = 18}, - [30] = {.lex_state = 23}, - [31] = {.lex_state = 7}, - [32] = {.lex_state = 7}, - [33] = {.lex_state = 24}, - [34] = {.lex_state = 5}, - [35] = {.lex_state = 5}, - [36] = {.lex_state = 28}, - [37] = {.lex_state = 28}, - [38] = {.lex_state = 23}, - [39] = {.lex_state = 30}, - [40] = {.lex_state = 46}, - [41] = {.lex_state = 13}, - [42] = {.lex_state = 23}, - [43] = {.lex_state = 18}, - [44] = {.lex_state = 159}, - [45] = {.lex_state = 5}, - [46] = {.lex_state = 23}, - [47] = {.lex_state = 23}, - [48] = {.lex_state = 23}, - [49] = {.lex_state = 11}, - [50] = {.lex_state = 5}, - [51] = {.lex_state = 20}, - [52] = {.lex_state = 19}, - [53] = {.lex_state = 33}, - [54] = {.lex_state = 48}, - [55] = {.lex_state = 5}, - [56] = {.lex_state = 159}, - [57] = {.lex_state = 40}, - [58] = {.lex_state = 5}, - [59] = {.lex_state = 21}, - [60] = {.lex_state = 11}, - [61] = {.lex_state = 12}, - [62] = {.lex_state = 37}, - [63] = {.lex_state = 19}, - [64] = {.lex_state = 48}, - [65] = {.lex_state = 22}, - [66] = {.lex_state = 22}, - [67] = {.lex_state = 5}, - [68] = {.lex_state = 33}, - [69] = {.lex_state = 22}, - [70] = {.lex_state = 21}, - [71] = {.lex_state = 15}, - [72] = {.lex_state = 21}, - [73] = {.lex_state = 20}, - [74] = {.lex_state = 15}, - [75] = {.lex_state = 48}, - [76] = {.lex_state = 20}, - [77] = {.lex_state = 12}, - [78] = {.lex_state = 19}, - [79] = {.lex_state = 159}, - [80] = {.lex_state = 16}, - [81] = {.lex_state = 23}, - [82] = {.lex_state = 34}, + [28] = {.lex_state = 8}, + [29] = {.lex_state = 27}, + [30] = {.lex_state = 5}, + [31] = {.lex_state = 5}, + [32] = {.lex_state = 6}, + [33] = {.lex_state = 5}, + [34] = {.lex_state = 28}, + [35] = {.lex_state = 28}, + [36] = {.lex_state = 31}, + [37] = {.lex_state = 5}, + [38] = {.lex_state = 24}, + [39] = {.lex_state = 5}, + [40] = {.lex_state = 5}, + [41] = {.lex_state = 6}, + [42] = {.lex_state = 157}, + [43] = {.lex_state = 6}, + [44] = {.lex_state = 6}, + [45] = {.lex_state = 9}, + [46] = {.lex_state = 37}, + [47] = {.lex_state = 19}, + [48] = {.lex_state = 8}, + [49] = {.lex_state = 10}, + [50] = {.lex_state = 6}, + [51] = {.lex_state = 34}, + [52] = {.lex_state = 6}, + [53] = {.lex_state = 16}, + [54] = {.lex_state = 18}, + [55] = {.lex_state = 16}, + [56] = {.lex_state = 14}, + [57] = {.lex_state = 15}, + [58] = {.lex_state = 17}, + [59] = {.lex_state = 18}, + [60] = {.lex_state = 17}, + [61] = {.lex_state = 6}, + [62] = {.lex_state = 10}, + [63] = {.lex_state = 157}, + [64] = {.lex_state = 39}, + [65] = {.lex_state = 6}, + [66] = {.lex_state = 18}, + [67] = {.lex_state = 21}, + [68] = {.lex_state = 39}, + [69] = {.lex_state = 15}, + [70] = {.lex_state = 14}, + [71] = {.lex_state = 157}, + [72] = {.lex_state = 39}, + [73] = {.lex_state = 46}, + [74] = {.lex_state = 34}, + [75] = {.lex_state = 21}, + [76] = {.lex_state = 22}, + [77] = {.lex_state = 35}, + [78] = {.lex_state = 28}, + [79] = {.lex_state = 6}, + [80] = {.lex_state = 35}, + [81] = {.lex_state = 28}, + [82] = {.lex_state = 35}, [83] = {.lex_state = 28}, - [84] = {.lex_state = 24}, - [85] = {.lex_state = 28}, - [86] = {.lex_state = 28}, - [87] = {.lex_state = 34}, - [88] = {.lex_state = 24}, - [89] = {.lex_state = 28}, - [90] = {.lex_state = 23}, - [91] = {.lex_state = 28}, - [92] = {.lex_state = 7}, - [93] = {.lex_state = 24}, - [94] = {.lex_state = 17}, - [95] = {.lex_state = 5}, - [96] = {.lex_state = 159}, - [97] = {.lex_state = 28}, - [98] = {.lex_state = 34}, - [99] = {.lex_state = 17}, - [100] = {.lex_state = 16}, - [101] = {.lex_state = 23}, - [102] = {.lex_state = 7}, - [103] = {.lex_state = 28}, - [104] = {.lex_state = 47}, - [105] = {.lex_state = 32}, - [106] = {.lex_state = 13}, - [107] = {.lex_state = 28}, - [108] = {.lex_state = 7}, - [109] = {.lex_state = 12}, - [110] = {.lex_state = 25}, - [111] = {.lex_state = 159}, - [112] = {.lex_state = 12}, - [113] = {.lex_state = 5}, - [114] = {.lex_state = 5}, - [115] = {.lex_state = 41}, - [116] = {.lex_state = 25}, - [117] = {.lex_state = 48}, - [118] = {.lex_state = 22}, - [119] = {.lex_state = 159}, - [120] = {.lex_state = 48}, - [121] = {.lex_state = 48}, - [122] = {.lex_state = 11}, - [123] = {.lex_state = 25}, - [124] = {.lex_state = 11}, - [125] = {.lex_state = 12}, - [126] = {.lex_state = 159}, - [127] = {.lex_state = 17}, - [128] = {.lex_state = 159}, - [129] = {.lex_state = 22}, - [130] = {.lex_state = 11}, - [131] = {.lex_state = 22}, - [132] = {.lex_state = 38}, - [133] = {.lex_state = 0}, - [134] = {.lex_state = 38}, - [135] = {.lex_state = 38}, - [136] = {.lex_state = 5}, - [137] = {.lex_state = 38}, - [138] = {.lex_state = 13}, - [139] = {.lex_state = 159}, - [140] = {.lex_state = 5}, - [141] = {.lex_state = 13}, - [142] = {.lex_state = 159}, - [143] = {.lex_state = 38}, - [144] = {.lex_state = 38}, - [145] = {.lex_state = 15}, - [146] = {.lex_state = 159}, - [147] = {.lex_state = 16}, - [148] = {.lex_state = 15}, - [149] = {.lex_state = 5}, - [150] = {.lex_state = 5}, - [151] = {.lex_state = 16}, - [152] = {.lex_state = 13}, - [153] = {.lex_state = 37}, - [154] = {.lex_state = 15}, - [155] = {.lex_state = 16}, - [156] = {.lex_state = 38}, - [157] = {.lex_state = 28}, - [158] = {.lex_state = 36}, - [159] = {.lex_state = 16}, - [160] = {.lex_state = 38}, - [161] = {.lex_state = 25}, - [162] = {.lex_state = 13}, - [163] = {.lex_state = 15}, - [164] = {.lex_state = 38}, - [165] = {.lex_state = 46}, - [166] = {.lex_state = 36}, - [167] = {.lex_state = 38}, - [168] = {.lex_state = 159}, - [169] = {.lex_state = 159}, - [170] = {.lex_state = 38}, - [171] = {.lex_state = 159}, - [172] = {.lex_state = 38}, - [173] = {.lex_state = 5}, - [174] = {.lex_state = 5}, - [175] = {.lex_state = 5}, - [176] = {.lex_state = 5}, - [177] = {.lex_state = 5}, - [178] = {.lex_state = 49}, - [179] = {.lex_state = 5}, - [180] = {.lex_state = 5}, - [181] = {.lex_state = 5}, - [182] = {.lex_state = 159}, - [183] = {.lex_state = 5}, - [184] = {.lex_state = 5}, - [185] = {.lex_state = 0}, - [186] = {.lex_state = 42}, - [187] = {.lex_state = 192}, - [188] = {.lex_state = 192}, - [189] = {.lex_state = 39}, - [190] = {.lex_state = 39}, - [191] = {.lex_state = 5}, - [192] = {.lex_state = 5}, + [84] = {.lex_state = 28}, + [85] = {.lex_state = 24}, + [86] = {.lex_state = 24}, + [87] = {.lex_state = 23}, + [88] = {.lex_state = 157}, + [89] = {.lex_state = 23}, + [90] = {.lex_state = 22}, + [91] = {.lex_state = 5}, + [92] = {.lex_state = 5}, + [93] = {.lex_state = 28}, + [94] = {.lex_state = 9}, + [95] = {.lex_state = 38}, + [96] = {.lex_state = 33}, + [97] = {.lex_state = 19}, + [98] = {.lex_state = 28}, + [99] = {.lex_state = 9}, + [100] = {.lex_state = 28}, + [101] = {.lex_state = 28}, + [102] = {.lex_state = 14}, + [103] = {.lex_state = 18}, + [104] = {.lex_state = 24}, + [105] = {.lex_state = 157}, + [106] = {.lex_state = 27}, + [107] = {.lex_state = 24}, + [108] = {.lex_state = 47}, + [109] = {.lex_state = 39}, + [110] = {.lex_state = 39}, + [111] = {.lex_state = 157}, + [112] = {.lex_state = 157}, + [113] = {.lex_state = 157}, + [114] = {.lex_state = 24}, + [115] = {.lex_state = 14}, + [116] = {.lex_state = 15}, + [117] = {.lex_state = 15}, + [118] = {.lex_state = 6}, + [119] = {.lex_state = 18}, + [120] = {.lex_state = 157}, + [121] = {.lex_state = 19}, + [122] = {.lex_state = 45}, + [123] = {.lex_state = 8}, + [124] = {.lex_state = 45}, + [125] = {.lex_state = 19}, + [126] = {.lex_state = 157}, + [127] = {.lex_state = 19}, + [128] = {.lex_state = 45}, + [129] = {.lex_state = 45}, + [130] = {.lex_state = 9}, + [131] = {.lex_state = 21}, + [132] = {.lex_state = 157}, + [133] = {.lex_state = 45}, + [134] = {.lex_state = 21}, + [135] = {.lex_state = 8}, + [136] = {.lex_state = 22}, + [137] = {.lex_state = 8}, + [138] = {.lex_state = 22}, + [139] = {.lex_state = 21}, + [140] = {.lex_state = 28}, + [141] = {.lex_state = 22}, + [142] = {.lex_state = 19}, + [143] = {.lex_state = 45}, + [144] = {.lex_state = 45}, + [145] = {.lex_state = 41}, + [146] = {.lex_state = 24}, + [147] = {.lex_state = 45}, + [148] = {.lex_state = 0}, + [149] = {.lex_state = 45}, + [150] = {.lex_state = 37}, + [151] = {.lex_state = 45}, + [152] = {.lex_state = 45}, + [153] = {.lex_state = 157}, + [154] = {.lex_state = 157}, + [155] = {.lex_state = 45}, + [156] = {.lex_state = 8}, + [157] = {.lex_state = 39}, + [158] = {.lex_state = 8}, + [159] = {.lex_state = 8}, + [160] = {.lex_state = 51}, + [161] = {.lex_state = 48}, + [162] = {.lex_state = 8}, + [163] = {.lex_state = 8}, + [164] = {.lex_state = 8}, + [165] = {.lex_state = 8}, + [166] = {.lex_state = 8}, + [167] = {.lex_state = 8}, + [168] = {.lex_state = 0}, + [169] = {.lex_state = 190}, + [170] = {.lex_state = 8}, + [171] = {.lex_state = 190}, + [172] = {.lex_state = 190}, + [173] = {.lex_state = 39}, + [174] = {.lex_state = 8}, + [175] = {.lex_state = 8}, + [176] = {.lex_state = 39}, + [177] = {.lex_state = 8}, + [178] = {.lex_state = 39}, + [179] = {.lex_state = 39}, + [180] = {.lex_state = 8}, + [181] = {.lex_state = 50}, + [182] = {.lex_state = 39}, + [183] = {.lex_state = 8}, + [184] = {.lex_state = 8}, + [185] = {.lex_state = 190}, + [186] = {.lex_state = 8}, + [187] = {.lex_state = 8}, + [188] = {.lex_state = 8}, + [189] = {.lex_state = 52}, + [190] = {.lex_state = 8}, + [191] = {.lex_state = 8}, + [192] = {.lex_state = 157}, [193] = {.lex_state = 39}, - [194] = {.lex_state = 5}, + [194] = {.lex_state = 39}, [195] = {.lex_state = 39}, - [196] = {.lex_state = 5}, + [196] = {.lex_state = 39}, [197] = {.lex_state = 39}, - [198] = {.lex_state = 5}, - [199] = {.lex_state = 44}, + [198] = {.lex_state = 157}, + [199] = {.lex_state = 39}, [200] = {.lex_state = 39}, - [201] = {.lex_state = 5}, - [202] = {.lex_state = 5}, - [203] = {.lex_state = 192}, - [204] = {.lex_state = 5}, - [205] = {.lex_state = 5}, - [206] = {.lex_state = 5}, - [207] = {.lex_state = 50}, - [208] = {.lex_state = 5}, - [209] = {.lex_state = 159}, - [210] = {.lex_state = 192}, - [211] = {.lex_state = 39}, + [201] = {.lex_state = 8}, + [202] = {.lex_state = 39}, + [203] = {.lex_state = 157}, + [204] = {.lex_state = 39}, + [205] = {.lex_state = 157}, + [206] = {.lex_state = 52}, + [207] = {.lex_state = 39}, + [208] = {.lex_state = 8}, + [209] = {.lex_state = 39}, + [210] = {.lex_state = 157}, + [211] = {.lex_state = 52}, [212] = {.lex_state = 39}, - [213] = {.lex_state = 39}, - [214] = {.lex_state = 39}, - [215] = {.lex_state = 159}, - [216] = {.lex_state = 159}, - [217] = {.lex_state = 39}, - [218] = {.lex_state = 39}, - [219] = {.lex_state = 39}, - [220] = {.lex_state = 39}, - [221] = {.lex_state = 5}, - [222] = {.lex_state = 39}, - [223] = {.lex_state = 159}, - [224] = {.lex_state = 50}, - [225] = {.lex_state = 39}, - [226] = {.lex_state = 159}, + [213] = {.lex_state = 157}, + [214] = {.lex_state = 157}, + [215] = {.lex_state = 8}, + [216] = {.lex_state = 157}, + [217] = {.lex_state = 8}, + [218] = {.lex_state = 157}, + [219] = {.lex_state = 8}, + [220] = {.lex_state = 157}, + [221] = {.lex_state = 8}, + [222] = {.lex_state = 157}, + [223] = {.lex_state = 8}, + [224] = {.lex_state = 157}, + [225] = {.lex_state = 8}, + [226] = {.lex_state = 157}, [227] = {.lex_state = 39}, - [228] = {.lex_state = 159}, - [229] = {.lex_state = 50}, - [230] = {.lex_state = 39}, - [231] = {.lex_state = 5}, - [232] = {.lex_state = 159}, - [233] = {.lex_state = 5}, - [234] = {.lex_state = 159}, - [235] = {.lex_state = 5}, - [236] = {.lex_state = 159}, - [237] = {.lex_state = 5}, - [238] = {.lex_state = 159}, - [239] = {.lex_state = 5}, - [240] = {.lex_state = 159}, - [241] = {.lex_state = 5}, - [242] = {.lex_state = 159}, - [243] = {.lex_state = 39}, - [244] = {.lex_state = 159}, - [245] = {.lex_state = 39}, - [246] = {.lex_state = 159}, - [247] = {.lex_state = 5}, - [248] = {.lex_state = 159}, - [249] = {.lex_state = 49}, - [250] = {.lex_state = 159}, - [251] = {.lex_state = 49}, - [252] = {.lex_state = 159}, - [253] = {.lex_state = 49}, - [254] = {.lex_state = 49}, - [255] = {.lex_state = 49}, - [256] = {.lex_state = 49}, - [257] = {.lex_state = 49}, - [258] = {.lex_state = 49}, - [259] = {.lex_state = 49}, - [260] = {.lex_state = 49}, - [261] = {.lex_state = 49}, - [262] = {.lex_state = 44}, - [263] = {.lex_state = 44}, - [264] = {(TSStateId)(-1)}, + [228] = {.lex_state = 157}, + [229] = {.lex_state = 39}, + [230] = {.lex_state = 157}, + [231] = {.lex_state = 51}, + [232] = {.lex_state = 157}, + [233] = {.lex_state = 51}, + [234] = {.lex_state = 157}, + [235] = {.lex_state = 51}, + [236] = {.lex_state = 51}, + [237] = {.lex_state = 51}, + [238] = {.lex_state = 51}, + [239] = {.lex_state = 51}, + [240] = {.lex_state = 51}, + [241] = {.lex_state = 51}, + [242] = {.lex_state = 51}, + [243] = {.lex_state = 51}, + [244] = {.lex_state = 50}, + [245] = {.lex_state = 50}, }; static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [0] = { - [sym_comment] = STATE(0), [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [aux_sym__user_name_group_token1] = ACTIONS(1), @@ -2947,181 +2808,108 @@ static uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_COMMA] = ACTIONS(1), [anon_sym_RBRACK] = ACTIONS(1), [sym_line_continuation] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(1), [anon_sym_DQUOTE] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(185), - [sym__instruction] = STATE(183), - [sym_from_instruction] = STATE(181), - [sym_run_instruction] = STATE(181), - [sym_cmd_instruction] = STATE(181), - [sym_label_instruction] = STATE(181), - [sym_expose_instruction] = STATE(181), - [sym_env_instruction] = STATE(181), - [sym_add_instruction] = STATE(181), - [sym_copy_instruction] = STATE(181), - [sym_entrypoint_instruction] = STATE(181), - [sym_volume_instruction] = STATE(181), - [sym_user_instruction] = STATE(181), - [sym_workdir_instruction] = STATE(181), - [sym_arg_instruction] = STATE(181), - [sym_onbuild_instruction] = STATE(181), - [sym_stopsignal_instruction] = STATE(181), - [sym_healthcheck_instruction] = STATE(181), - [sym_shell_instruction] = STATE(181), - [sym_maintainer_instruction] = STATE(181), - [sym_cross_build_instruction] = STATE(181), - [sym_comment] = STATE(1), - [aux_sym_source_file_repeat1] = STATE(3), - [ts_builtin_sym_end] = ACTIONS(7), - [aux_sym_from_instruction_token1] = ACTIONS(9), - [aux_sym_run_instruction_token1] = ACTIONS(11), - [aux_sym_cmd_instruction_token1] = ACTIONS(13), - [aux_sym_label_instruction_token1] = ACTIONS(15), - [aux_sym_expose_instruction_token1] = ACTIONS(17), - [aux_sym_env_instruction_token1] = ACTIONS(19), - [aux_sym_add_instruction_token1] = ACTIONS(21), - [aux_sym_copy_instruction_token1] = ACTIONS(23), - [aux_sym_entrypoint_instruction_token1] = ACTIONS(25), - [aux_sym_volume_instruction_token1] = ACTIONS(27), - [aux_sym_user_instruction_token1] = ACTIONS(29), - [aux_sym_workdir_instruction_token1] = ACTIONS(31), - [aux_sym_arg_instruction_token1] = ACTIONS(33), - [aux_sym_onbuild_instruction_token1] = ACTIONS(35), - [aux_sym_stopsignal_instruction_token1] = ACTIONS(37), - [aux_sym_healthcheck_instruction_token1] = ACTIONS(39), - [aux_sym_shell_instruction_token1] = ACTIONS(41), - [aux_sym_maintainer_instruction_token1] = ACTIONS(43), - [aux_sym_cross_build_instruction_token1] = ACTIONS(45), + [sym_source_file] = STATE(168), + [sym__instruction] = STATE(167), + [sym_from_instruction] = STATE(167), + [sym_run_instruction] = STATE(167), + [sym_cmd_instruction] = STATE(167), + [sym_label_instruction] = STATE(167), + [sym_expose_instruction] = STATE(167), + [sym_env_instruction] = STATE(167), + [sym_add_instruction] = STATE(167), + [sym_copy_instruction] = STATE(167), + [sym_entrypoint_instruction] = STATE(167), + [sym_volume_instruction] = STATE(167), + [sym_user_instruction] = STATE(167), + [sym_workdir_instruction] = STATE(167), + [sym_arg_instruction] = STATE(167), + [sym_onbuild_instruction] = STATE(167), + [sym_stopsignal_instruction] = STATE(167), + [sym_healthcheck_instruction] = STATE(167), + [sym_shell_instruction] = STATE(167), + [sym_maintainer_instruction] = STATE(167), + [sym_cross_build_instruction] = STATE(167), + [sym_comment] = STATE(167), + [aux_sym_source_file_repeat1] = STATE(2), + [ts_builtin_sym_end] = ACTIONS(5), + [aux_sym_from_instruction_token1] = ACTIONS(7), + [aux_sym_run_instruction_token1] = ACTIONS(9), + [aux_sym_cmd_instruction_token1] = ACTIONS(11), + [aux_sym_label_instruction_token1] = ACTIONS(13), + [aux_sym_expose_instruction_token1] = ACTIONS(15), + [aux_sym_env_instruction_token1] = ACTIONS(17), + [aux_sym_add_instruction_token1] = ACTIONS(19), + [aux_sym_copy_instruction_token1] = ACTIONS(21), + [aux_sym_entrypoint_instruction_token1] = ACTIONS(23), + [aux_sym_volume_instruction_token1] = ACTIONS(25), + [aux_sym_user_instruction_token1] = ACTIONS(27), + [aux_sym_workdir_instruction_token1] = ACTIONS(29), + [aux_sym_arg_instruction_token1] = ACTIONS(31), + [aux_sym_onbuild_instruction_token1] = ACTIONS(33), + [aux_sym_stopsignal_instruction_token1] = ACTIONS(35), + [aux_sym_healthcheck_instruction_token1] = ACTIONS(37), + [aux_sym_shell_instruction_token1] = ACTIONS(39), + [aux_sym_maintainer_instruction_token1] = ACTIONS(41), + [aux_sym_cross_build_instruction_token1] = ACTIONS(43), [sym_line_continuation] = ACTIONS(3), - [anon_sym_POUND] = ACTIONS(5), + [anon_sym_POUND] = ACTIONS(45), }, }; static uint16_t ts_small_parse_table[] = { - [0] = 25, + [0] = 24, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, + ACTIONS(7), 1, + aux_sym_from_instruction_token1, + ACTIONS(9), 1, + aux_sym_run_instruction_token1, + ACTIONS(11), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(13), 1, + aux_sym_label_instruction_token1, + ACTIONS(15), 1, + aux_sym_expose_instruction_token1, + ACTIONS(17), 1, + aux_sym_env_instruction_token1, + ACTIONS(19), 1, + aux_sym_add_instruction_token1, + ACTIONS(21), 1, + aux_sym_copy_instruction_token1, + ACTIONS(23), 1, + aux_sym_entrypoint_instruction_token1, + ACTIONS(25), 1, + aux_sym_volume_instruction_token1, + ACTIONS(27), 1, + aux_sym_user_instruction_token1, + ACTIONS(29), 1, + aux_sym_workdir_instruction_token1, + ACTIONS(31), 1, + aux_sym_arg_instruction_token1, + ACTIONS(33), 1, + aux_sym_onbuild_instruction_token1, + ACTIONS(35), 1, + aux_sym_stopsignal_instruction_token1, + ACTIONS(37), 1, + aux_sym_healthcheck_instruction_token1, + ACTIONS(39), 1, + aux_sym_shell_instruction_token1, + ACTIONS(41), 1, + aux_sym_maintainer_instruction_token1, + ACTIONS(43), 1, + aux_sym_cross_build_instruction_token1, + ACTIONS(45), 1, anon_sym_POUND, ACTIONS(47), 1, ts_builtin_sym_end, - ACTIONS(49), 1, - aux_sym_from_instruction_token1, - ACTIONS(52), 1, - aux_sym_run_instruction_token1, - ACTIONS(55), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(58), 1, - aux_sym_label_instruction_token1, - ACTIONS(61), 1, - aux_sym_expose_instruction_token1, - ACTIONS(64), 1, - aux_sym_env_instruction_token1, - ACTIONS(67), 1, - aux_sym_add_instruction_token1, - ACTIONS(70), 1, - aux_sym_copy_instruction_token1, - ACTIONS(73), 1, - aux_sym_entrypoint_instruction_token1, - ACTIONS(76), 1, - aux_sym_volume_instruction_token1, - ACTIONS(79), 1, - aux_sym_user_instruction_token1, - ACTIONS(82), 1, - aux_sym_workdir_instruction_token1, - ACTIONS(85), 1, - aux_sym_arg_instruction_token1, - ACTIONS(88), 1, - aux_sym_onbuild_instruction_token1, - ACTIONS(91), 1, - aux_sym_stopsignal_instruction_token1, - ACTIONS(94), 1, - aux_sym_healthcheck_instruction_token1, - ACTIONS(97), 1, - aux_sym_shell_instruction_token1, - ACTIONS(100), 1, - aux_sym_maintainer_instruction_token1, - ACTIONS(103), 1, - aux_sym_cross_build_instruction_token1, - STATE(183), 1, - sym__instruction, - STATE(2), 2, - sym_comment, - aux_sym_source_file_repeat1, - STATE(181), 19, - sym_from_instruction, - sym_run_instruction, - sym_cmd_instruction, - sym_label_instruction, - sym_expose_instruction, - sym_env_instruction, - sym_add_instruction, - sym_copy_instruction, - sym_entrypoint_instruction, - sym_volume_instruction, - sym_user_instruction, - sym_workdir_instruction, - sym_arg_instruction, - sym_onbuild_instruction, - sym_stopsignal_instruction, - sym_healthcheck_instruction, - sym_shell_instruction, - sym_maintainer_instruction, - sym_cross_build_instruction, - [95] = 26, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(9), 1, - aux_sym_from_instruction_token1, - ACTIONS(11), 1, - aux_sym_run_instruction_token1, - ACTIONS(13), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(15), 1, - aux_sym_label_instruction_token1, - ACTIONS(17), 1, - aux_sym_expose_instruction_token1, - ACTIONS(19), 1, - aux_sym_env_instruction_token1, - ACTIONS(21), 1, - aux_sym_add_instruction_token1, - ACTIONS(23), 1, - aux_sym_copy_instruction_token1, - ACTIONS(25), 1, - aux_sym_entrypoint_instruction_token1, - ACTIONS(27), 1, - aux_sym_volume_instruction_token1, - ACTIONS(29), 1, - aux_sym_user_instruction_token1, - ACTIONS(31), 1, - aux_sym_workdir_instruction_token1, - ACTIONS(33), 1, - aux_sym_arg_instruction_token1, - ACTIONS(35), 1, - aux_sym_onbuild_instruction_token1, - ACTIONS(37), 1, - aux_sym_stopsignal_instruction_token1, - ACTIONS(39), 1, - aux_sym_healthcheck_instruction_token1, - ACTIONS(41), 1, - aux_sym_shell_instruction_token1, - ACTIONS(43), 1, - aux_sym_maintainer_instruction_token1, - ACTIONS(45), 1, - aux_sym_cross_build_instruction_token1, - ACTIONS(106), 1, - ts_builtin_sym_end, - STATE(2), 1, - aux_sym_source_file_repeat1, STATE(3), 1, - sym_comment, - STATE(183), 1, + aux_sym_source_file_repeat1, + STATE(167), 21, sym__instruction, - STATE(181), 19, sym_from_instruction, sym_run_instruction, sym_cmd_instruction, @@ -3141,54 +2929,56 @@ static uint16_t ts_small_parse_table[] = { sym_shell_instruction, sym_maintainer_instruction, sym_cross_build_instruction, - [192] = 24, + sym_comment, + [93] = 24, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(9), 1, + ACTIONS(49), 1, + ts_builtin_sym_end, + ACTIONS(51), 1, aux_sym_from_instruction_token1, - ACTIONS(11), 1, + ACTIONS(54), 1, aux_sym_run_instruction_token1, - ACTIONS(13), 1, + ACTIONS(57), 1, aux_sym_cmd_instruction_token1, - ACTIONS(15), 1, + ACTIONS(60), 1, aux_sym_label_instruction_token1, - ACTIONS(17), 1, + ACTIONS(63), 1, aux_sym_expose_instruction_token1, - ACTIONS(19), 1, + ACTIONS(66), 1, aux_sym_env_instruction_token1, - ACTIONS(21), 1, + ACTIONS(69), 1, aux_sym_add_instruction_token1, - ACTIONS(23), 1, + ACTIONS(72), 1, aux_sym_copy_instruction_token1, - ACTIONS(25), 1, + ACTIONS(75), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(27), 1, + ACTIONS(78), 1, aux_sym_volume_instruction_token1, - ACTIONS(29), 1, + ACTIONS(81), 1, aux_sym_user_instruction_token1, - ACTIONS(31), 1, + ACTIONS(84), 1, aux_sym_workdir_instruction_token1, - ACTIONS(33), 1, + ACTIONS(87), 1, aux_sym_arg_instruction_token1, - ACTIONS(35), 1, + ACTIONS(90), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(37), 1, + ACTIONS(93), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(39), 1, + ACTIONS(96), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(41), 1, + ACTIONS(99), 1, aux_sym_shell_instruction_token1, - ACTIONS(43), 1, + ACTIONS(102), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(45), 1, + ACTIONS(105), 1, aux_sym_cross_build_instruction_token1, - STATE(4), 1, - sym_comment, - STATE(235), 1, + ACTIONS(108), 1, + anon_sym_POUND, + STATE(3), 1, + aux_sym_source_file_repeat1, + STATE(167), 21, sym__instruction, - STATE(181), 19, sym_from_instruction, sym_run_instruction, sym_cmd_instruction, @@ -3208,14 +2998,73 @@ static uint16_t ts_small_parse_table[] = { sym_shell_instruction, sym_maintainer_instruction, sym_cross_build_instruction, - [283] = 4, + sym_comment, + [186] = 21, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(5), 1, - sym_comment, - ACTIONS(47), 20, + ACTIONS(7), 1, + aux_sym_from_instruction_token1, + ACTIONS(9), 1, + aux_sym_run_instruction_token1, + ACTIONS(11), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(13), 1, + aux_sym_label_instruction_token1, + ACTIONS(15), 1, + aux_sym_expose_instruction_token1, + ACTIONS(17), 1, + aux_sym_env_instruction_token1, + ACTIONS(19), 1, + aux_sym_add_instruction_token1, + ACTIONS(21), 1, + aux_sym_copy_instruction_token1, + ACTIONS(23), 1, + aux_sym_entrypoint_instruction_token1, + ACTIONS(25), 1, + aux_sym_volume_instruction_token1, + ACTIONS(27), 1, + aux_sym_user_instruction_token1, + ACTIONS(29), 1, + aux_sym_workdir_instruction_token1, + ACTIONS(31), 1, + aux_sym_arg_instruction_token1, + ACTIONS(33), 1, + aux_sym_onbuild_instruction_token1, + ACTIONS(35), 1, + aux_sym_stopsignal_instruction_token1, + ACTIONS(37), 1, + aux_sym_healthcheck_instruction_token1, + ACTIONS(39), 1, + aux_sym_shell_instruction_token1, + ACTIONS(41), 1, + aux_sym_maintainer_instruction_token1, + ACTIONS(43), 1, + aux_sym_cross_build_instruction_token1, + STATE(219), 20, + sym__instruction, + sym_from_instruction, + sym_run_instruction, + sym_cmd_instruction, + sym_label_instruction, + sym_expose_instruction, + sym_env_instruction, + sym_add_instruction, + sym_copy_instruction, + sym_entrypoint_instruction, + sym_volume_instruction, + sym_user_instruction, + sym_workdir_instruction, + sym_arg_instruction, + sym_onbuild_instruction, + sym_stopsignal_instruction, + sym_healthcheck_instruction, + sym_shell_instruction, + sym_maintainer_instruction, + sym_cross_build_instruction, + [269] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(49), 21, ts_builtin_sym_end, aux_sym_from_instruction_token1, aux_sym_run_instruction_token1, @@ -3236,3916 +3085,2669 @@ static uint16_t ts_small_parse_table[] = { aux_sym_shell_instruction_token1, aux_sym_maintainer_instruction_token1, aux_sym_cross_build_instruction_token1, - [315] = 9, - ACTIONS(110), 1, - aux_sym_from_instruction_token2, - ACTIONS(112), 1, - anon_sym_DOLLAR, - ACTIONS(114), 1, - aux_sym_image_name_token1, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, anon_sym_POUND, - STATE(6), 1, - sym_comment, - STATE(8), 1, - aux_sym_image_name_repeat1, - STATE(43), 1, - sym_expansion, - ACTIONS(108), 3, - anon_sym_LF, - anon_sym_COLON, - anon_sym_AT, - [345] = 11, + [296] = 7, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(114), 1, - aux_sym_image_name_token1, - ACTIONS(118), 1, + ACTIONS(113), 1, anon_sym_POUND, - ACTIONS(120), 1, - anon_sym_DOLLAR, - ACTIONS(122), 1, - anon_sym_DASH_DASH, - STATE(6), 1, - aux_sym_image_name_repeat1, - STATE(7), 1, - sym_comment, - STATE(40), 1, - sym_param, - STATE(41), 1, - sym_image_name, - STATE(43), 1, - sym_expansion, - STATE(141), 1, - sym_image_spec, - [379] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(126), 1, - aux_sym_from_instruction_token2, - ACTIONS(128), 1, - anon_sym_DOLLAR, - ACTIONS(131), 1, - aux_sym_image_name_token1, - STATE(43), 1, - sym_expansion, - STATE(8), 2, - sym_comment, - aux_sym_image_name_repeat1, - ACTIONS(124), 3, - anon_sym_LF, - anon_sym_COLON, - anon_sym_AT, - [407] = 10, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(134), 1, - anon_sym_DOLLAR, - ACTIONS(136), 1, - anon_sym_DQUOTE, - ACTIONS(138), 1, - aux_sym_unquoted_string_token1, - ACTIONS(140), 1, - anon_sym_BSLASH, - STATE(9), 1, - sym_comment, - STATE(23), 1, - aux_sym_unquoted_string_repeat1, - STATE(51), 1, - sym_expansion, - STATE(151), 2, - sym_double_quoted_string, - sym_unquoted_string, - [439] = 10, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(134), 1, - anon_sym_DOLLAR, - ACTIONS(136), 1, - anon_sym_DQUOTE, - ACTIONS(138), 1, - aux_sym_unquoted_string_token1, - ACTIONS(140), 1, - anon_sym_BSLASH, - STATE(10), 1, - sym_comment, - STATE(23), 1, - aux_sym_unquoted_string_repeat1, - STATE(51), 1, - sym_expansion, - STATE(194), 2, - sym_double_quoted_string, - sym_unquoted_string, - [471] = 10, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(142), 1, - anon_sym_DOLLAR, - ACTIONS(144), 1, - anon_sym_DQUOTE, - ACTIONS(146), 1, - aux_sym_unquoted_string_token1, - ACTIONS(148), 1, - anon_sym_BSLASH, - STATE(11), 1, - sym_comment, - STATE(19), 1, - aux_sym_unquoted_string_repeat1, - STATE(63), 1, - sym_expansion, - STATE(154), 2, - sym_double_quoted_string, - sym_unquoted_string, - [503] = 10, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(134), 1, - anon_sym_DOLLAR, - ACTIONS(136), 1, - anon_sym_DQUOTE, - ACTIONS(138), 1, - aux_sym_unquoted_string_token1, - ACTIONS(140), 1, - anon_sym_BSLASH, - STATE(12), 1, - sym_comment, - STATE(23), 1, - aux_sym_unquoted_string_repeat1, - STATE(51), 1, - sym_expansion, - STATE(184), 2, - sym_double_quoted_string, - sym_unquoted_string, - [535] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(150), 1, - anon_sym_LBRACK, - STATE(13), 1, - sym_comment, - STATE(94), 1, + STATE(87), 1, aux_sym_shell_fragment_repeat1, - STATE(136), 1, + STATE(162), 1, sym_shell_fragment, - ACTIONS(152), 2, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - STATE(241), 2, - sym_string_array, - sym_shell_command, - [562] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(154), 1, - anon_sym_POUND, - STATE(14), 1, - sym_comment, - STATE(94), 1, - aux_sym_shell_fragment_repeat1, - STATE(177), 1, - sym_shell_fragment, - STATE(201), 1, + STATE(183), 1, sym__anon_comment, - ACTIONS(152), 2, + ACTIONS(111), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, - STATE(62), 2, + STATE(29), 2, sym__comment_line, aux_sym_shell_command_repeat1, - [589] = 8, - ACTIONS(116), 1, + [320] = 6, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(158), 1, - aux_sym_from_instruction_token2, - ACTIONS(160), 1, + ACTIONS(115), 1, anon_sym_DOLLAR, - ACTIONS(163), 1, - aux_sym_image_tag_token1, - STATE(59), 1, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(16), 2, sym_expansion, - ACTIONS(156), 2, + aux_sym_unquoted_string_repeat1, + STATE(163), 2, + sym_double_quoted_string, + sym_unquoted_string, + [342] = 6, + ACTIONS(123), 1, + aux_sym_from_instruction_token2, + ACTIONS(125), 1, + anon_sym_DOLLAR, + ACTIONS(127), 1, + aux_sym_image_name_token1, + ACTIONS(129), 1, + sym_line_continuation, + STATE(9), 2, + sym_expansion, + aux_sym_image_name_repeat1, + ACTIONS(121), 3, + anon_sym_LF, + anon_sym_COLON, + anon_sym_AT, + [364] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(133), 1, + aux_sym_from_instruction_token2, + ACTIONS(135), 1, + anon_sym_DOLLAR, + ACTIONS(138), 1, + aux_sym_image_name_token1, + STATE(9), 2, + sym_expansion, + aux_sym_image_name_repeat1, + ACTIONS(131), 3, + anon_sym_LF, + anon_sym_COLON, + anon_sym_AT, + [386] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(141), 1, + anon_sym_DOLLAR, + ACTIONS(143), 1, + anon_sym_DQUOTE, + ACTIONS(145), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(19), 2, + sym_expansion, + aux_sym_unquoted_string_repeat1, + STATE(139), 2, + sym_double_quoted_string, + sym_unquoted_string, + [408] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(16), 2, + sym_expansion, + aux_sym_unquoted_string_repeat1, + STATE(175), 2, + sym_double_quoted_string, + sym_unquoted_string, + [430] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(115), 1, + anon_sym_DOLLAR, + ACTIONS(117), 1, + anon_sym_DQUOTE, + ACTIONS(119), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(16), 2, + sym_expansion, + aux_sym_unquoted_string_repeat1, + STATE(136), 2, + sym_double_quoted_string, + sym_unquoted_string, + [452] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(113), 1, + anon_sym_POUND, + STATE(87), 1, + aux_sym_shell_fragment_repeat1, + STATE(183), 1, + sym__anon_comment, + STATE(184), 1, + sym_shell_fragment, + ACTIONS(111), 2, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, + STATE(6), 2, + sym__comment_line, + aux_sym_shell_command_repeat1, + [476] = 8, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(147), 1, + anon_sym_DOLLAR, + ACTIONS(149), 1, + aux_sym_image_name_token1, + ACTIONS(151), 1, + anon_sym_DASH_DASH, + STATE(46), 1, + sym_param, + STATE(47), 1, + sym_image_name, + STATE(127), 1, + sym_image_spec, + STATE(8), 2, + sym_expansion, + aux_sym_image_name_repeat1, + [502] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(155), 1, + aux_sym_from_instruction_token2, + ACTIONS(157), 1, + anon_sym_DOLLAR, + ACTIONS(159), 1, + aux_sym_image_tag_token1, + ACTIONS(153), 2, anon_sym_LF, anon_sym_AT, - STATE(15), 2, - sym_comment, - aux_sym_image_tag_repeat1, - [616] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(166), 1, - anon_sym_LF, - ACTIONS(168), 1, - anon_sym_DOLLAR, - ACTIONS(171), 1, - aux_sym__env_key_token1, - ACTIONS(173), 1, - aux_sym_unquoted_string_token1, - ACTIONS(176), 1, - anon_sym_BSLASH, - STATE(63), 1, + STATE(17), 2, sym_expansion, - STATE(16), 2, - sym_comment, - aux_sym_unquoted_string_repeat1, - [645] = 8, - ACTIONS(3), 1, + aux_sym_image_tag_repeat1, + [523] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(150), 1, - anon_sym_LBRACK, - STATE(17), 1, - sym_comment, - STATE(94), 1, - aux_sym_shell_fragment_repeat1, - STATE(136), 1, - sym_shell_fragment, - ACTIONS(152), 2, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - STATE(173), 2, - sym_string_array, - sym_shell_command, - [672] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(150), 1, - anon_sym_LBRACK, - STATE(18), 1, - sym_comment, - STATE(94), 1, - aux_sym_shell_fragment_repeat1, - STATE(136), 1, - sym_shell_fragment, - ACTIONS(152), 2, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - STATE(205), 2, - sym_string_array, - sym_shell_command, - [699] = 10, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(146), 1, + ACTIONS(161), 1, + anon_sym_LF, + ACTIONS(163), 1, + anon_sym_DOLLAR, + ACTIONS(165), 1, + aux_sym_label_pair_token1, + ACTIONS(167), 2, aux_sym_unquoted_string_token1, - ACTIONS(148), 1, anon_sym_BSLASH, + STATE(23), 2, + sym_expansion, + aux_sym_unquoted_string_repeat1, + [544] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(171), 1, + aux_sym_from_instruction_token2, + ACTIONS(173), 1, + anon_sym_DOLLAR, + ACTIONS(176), 1, + aux_sym_image_tag_token1, + ACTIONS(169), 2, + anon_sym_LF, + anon_sym_AT, + STATE(17), 2, + sym_expansion, + aux_sym_image_tag_repeat1, + [565] = 6, + ACTIONS(129), 1, + sym_line_continuation, ACTIONS(179), 1, anon_sym_LF, ACTIONS(181), 1, anon_sym_DOLLAR, - ACTIONS(183), 1, + ACTIONS(184), 1, aux_sym__env_key_token1, - STATE(16), 1, - aux_sym_unquoted_string_repeat1, - STATE(19), 1, - sym_comment, - STATE(63), 1, - sym_expansion, - [730] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(166), 1, - anon_sym_LF, - ACTIONS(171), 1, - aux_sym_label_pair_token1, - ACTIONS(185), 1, - anon_sym_DOLLAR, - ACTIONS(188), 1, + ACTIONS(186), 2, aux_sym_unquoted_string_token1, - ACTIONS(191), 1, anon_sym_BSLASH, - STATE(51), 1, + STATE(18), 2, sym_expansion, - STATE(20), 2, - sym_comment, aux_sym_unquoted_string_repeat1, - [759] = 8, + [586] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(161), 1, + anon_sym_LF, + ACTIONS(165), 1, + aux_sym__env_key_token1, + ACTIONS(189), 1, + anon_sym_DOLLAR, + ACTIONS(191), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(18), 2, + sym_expansion, + aux_sym_unquoted_string_repeat1, + [607] = 6, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(154), 1, - anon_sym_POUND, - STATE(21), 1, - sym_comment, - STATE(94), 1, + ACTIONS(193), 1, + anon_sym_LBRACK, + STATE(87), 1, aux_sym_shell_fragment_repeat1, - STATE(201), 1, - sym__anon_comment, - STATE(202), 1, + STATE(123), 1, sym_shell_fragment, - ACTIONS(152), 2, + ACTIONS(111), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, - STATE(14), 2, - sym__comment_line, - aux_sym_shell_command_repeat1, - [786] = 9, - ACTIONS(116), 1, + STATE(187), 2, + sym_string_array, + sym_shell_command, + [628] = 6, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(196), 1, - aux_sym_from_instruction_token2, - ACTIONS(198), 1, - anon_sym_DOLLAR, - ACTIONS(200), 1, - aux_sym_image_tag_token1, - STATE(15), 1, - aux_sym_image_tag_repeat1, - STATE(22), 1, - sym_comment, - STATE(59), 1, - sym_expansion, - ACTIONS(194), 2, - anon_sym_LF, - anon_sym_AT, - [815] = 10, - ACTIONS(116), 1, + ACTIONS(193), 1, + anon_sym_LBRACK, + STATE(87), 1, + aux_sym_shell_fragment_repeat1, + STATE(123), 1, + sym_shell_fragment, + ACTIONS(111), 2, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, + STATE(191), 2, + sym_string_array, + sym_shell_command, + [649] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(193), 1, + anon_sym_LBRACK, + STATE(87), 1, + aux_sym_shell_fragment_repeat1, + STATE(123), 1, + sym_shell_fragment, + ACTIONS(111), 2, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, + STATE(225), 2, + sym_string_array, + sym_shell_command, + [670] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(138), 1, - aux_sym_unquoted_string_token1, - ACTIONS(140), 1, - anon_sym_BSLASH, ACTIONS(179), 1, anon_sym_LF, - ACTIONS(183), 1, + ACTIONS(184), 1, aux_sym_label_pair_token1, - ACTIONS(202), 1, + ACTIONS(195), 1, anon_sym_DOLLAR, - STATE(20), 1, - aux_sym_unquoted_string_repeat1, - STATE(23), 1, - sym_comment, - STATE(51), 1, + ACTIONS(198), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + STATE(23), 2, sym_expansion, - [846] = 7, - ACTIONS(116), 1, + aux_sym_unquoted_string_repeat1, + [691] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(204), 1, + ACTIONS(201), 1, anon_sym_LF, - ACTIONS(206), 1, + ACTIONS(203), 1, + aux_sym_from_instruction_token2, + ACTIONS(205), 1, anon_sym_DOLLAR, - ACTIONS(209), 1, - aux_sym_expose_port_token1, + ACTIONS(208), 1, + aux_sym_image_digest_token1, STATE(24), 2, - sym_comment, - aux_sym_expose_instruction_repeat1, - STATE(113), 2, + sym_expansion, + aux_sym_image_digest_repeat1, + [711] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(213), 1, + anon_sym_DQUOTE, + ACTIONS(215), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(217), 1, + sym_escape_sequence, + STATE(30), 2, + sym_expansion, + aux_sym_double_quoted_string_repeat1, + [731] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(221), 1, + aux_sym_path_token2, + ACTIONS(223), 1, + anon_sym_DOLLAR, + ACTIONS(219), 2, + anon_sym_LF, + sym__non_newline_whitespace, + STATE(38), 2, + sym_expansion, + aux_sym_path_repeat1, + [749] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(223), 1, + anon_sym_DOLLAR, + ACTIONS(227), 1, + aux_sym_path_token2, + ACTIONS(225), 2, + anon_sym_LF, + sym__non_newline_whitespace, + STATE(26), 2, + sym_expansion, + aux_sym_path_repeat1, + [767] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(229), 3, + anon_sym_LF, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(231), 3, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + aux_sym_image_name_token1, + [781] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(235), 1, + anon_sym_POUND, + STATE(183), 1, + sym__anon_comment, + ACTIONS(233), 2, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, + STATE(29), 2, + sym__comment_line, + aux_sym_shell_command_repeat1, + [799] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(238), 1, + anon_sym_DOLLAR, + ACTIONS(241), 1, + anon_sym_DQUOTE, + ACTIONS(243), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(246), 1, + sym_escape_sequence, + STATE(30), 2, + sym_expansion, + aux_sym_double_quoted_string_repeat1, + [819] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(249), 1, + anon_sym_DQUOTE, + ACTIONS(251), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(253), 1, + sym_escape_sequence, + STATE(25), 2, + sym_expansion, + aux_sym_double_quoted_string_repeat1, + [839] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(255), 1, + anon_sym_LF, + ACTIONS(257), 1, + anon_sym_DOLLAR, + ACTIONS(259), 1, + aux_sym_expose_port_token1, + STATE(41), 3, sym_expansion, sym_expose_port, - [870] = 9, - ACTIONS(116), 1, + aux_sym_expose_instruction_repeat1, + [857] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, + ACTIONS(211), 1, anon_sym_DOLLAR, - ACTIONS(214), 1, - anon_sym_DQUOTE, - ACTIONS(216), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, - sym_escape_sequence, - STATE(25), 1, - sym_comment, - STATE(30), 1, - aux_sym_double_quoted_string_repeat1, - STATE(90), 1, - sym_expansion, - [898] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(26), 1, - sym_comment, - ACTIONS(220), 3, - 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, - [918] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(226), 1, - aux_sym_path_token2, - ACTIONS(228), 1, - anon_sym_DOLLAR, - STATE(27), 1, - sym_comment, - STATE(28), 1, - aux_sym_path_repeat1, - STATE(84), 1, - sym_expansion, - ACTIONS(224), 2, - anon_sym_LF, - sym__non_newline_whitespace, - [944] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(226), 1, - aux_sym_path_token2, - ACTIONS(228), 1, - anon_sym_DOLLAR, - STATE(28), 1, - sym_comment, - STATE(33), 1, - aux_sym_path_repeat1, - STATE(84), 1, - sym_expansion, - ACTIONS(230), 2, - anon_sym_LF, - sym__non_newline_whitespace, - [970] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(29), 1, - sym_comment, - ACTIONS(232), 3, - anon_sym_LF, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(234), 3, - aux_sym_from_instruction_token2, - anon_sym_DOLLAR, - aux_sym_image_name_token1, - [990] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(236), 1, - anon_sym_DOLLAR, - ACTIONS(239), 1, - anon_sym_DQUOTE, - ACTIONS(241), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(244), 1, - sym_escape_sequence, - STATE(90), 1, - sym_expansion, - STATE(30), 2, - sym_comment, - aux_sym_double_quoted_string_repeat1, - [1016] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(247), 1, - anon_sym_LF, - ACTIONS(249), 1, - aux_sym_from_instruction_token2, - ACTIONS(251), 1, - anon_sym_DOLLAR, - ACTIONS(254), 1, - aux_sym_image_digest_token1, - STATE(92), 1, - sym_expansion, - STATE(31), 2, - sym_comment, - aux_sym_image_digest_repeat1, - [1042] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(257), 1, - anon_sym_LF, - ACTIONS(259), 1, - aux_sym_from_instruction_token2, ACTIONS(261), 1, - anon_sym_DOLLAR, + anon_sym_DQUOTE, ACTIONS(263), 1, - aux_sym_image_digest_token1, - STATE(31), 1, - aux_sym_image_digest_repeat1, - STATE(32), 1, - sym_comment, - STATE(92), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(265), 1, + sym_escape_sequence, + STATE(37), 2, sym_expansion, - [1070] = 7, - ACTIONS(116), 1, + aux_sym_double_quoted_string_repeat1, + [877] = 7, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(267), 1, - aux_sym_path_token2, - ACTIONS(270), 1, + aux_sym_path_token1, + ACTIONS(269), 1, anon_sym_DOLLAR, - STATE(84), 1, + ACTIONS(271), 1, + anon_sym_DASH_DASH, + STATE(68), 1, sym_expansion, - ACTIONS(265), 2, - anon_sym_LF, - sym__non_newline_whitespace, - STATE(33), 2, - sym_comment, - aux_sym_path_repeat1, - [1094] = 8, - ACTIONS(116), 1, + STATE(101), 1, + sym_param, + STATE(229), 1, + sym_path, + [899] = 7, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, + ACTIONS(267), 1, + aux_sym_path_token1, + ACTIONS(269), 1, + anon_sym_DOLLAR, + ACTIONS(271), 1, + anon_sym_DASH_DASH, + STATE(68), 1, + sym_expansion, + STATE(78), 1, + sym_param, + STATE(227), 1, + sym_path, + [921] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(193), 1, + anon_sym_LBRACK, ACTIONS(273), 1, - anon_sym_LF, + aux_sym_path_token1, ACTIONS(275), 1, anon_sym_DOLLAR, - ACTIONS(277), 1, - aux_sym_expose_port_token1, - STATE(24), 1, - aux_sym_expose_instruction_repeat1, - STATE(34), 1, - sym_comment, - STATE(113), 2, + STATE(27), 1, sym_expansion, - sym_expose_port, - [1120] = 7, - ACTIONS(116), 1, + STATE(104), 1, + sym_path, + STATE(223), 1, + sym_string_array, + [943] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(215), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(217), 1, + sym_escape_sequence, + ACTIONS(277), 1, + anon_sym_DQUOTE, + STATE(30), 2, + sym_expansion, + aux_sym_double_quoted_string_repeat1, + [963] = 5, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(281), 1, - aux_sym__user_name_group_token1, + aux_sym_path_token2, ACTIONS(284), 1, anon_sym_DOLLAR, - STATE(95), 1, - sym_expansion, ACTIONS(279), 2, anon_sym_LF, - anon_sym_COLON, - STATE(35), 2, - aux_sym__user_name_group, - sym_comment, - [1144] = 9, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(287), 1, - aux_sym_path_token1, - ACTIONS(289), 1, - anon_sym_DOLLAR, - ACTIONS(291), 1, - anon_sym_DASH_DASH, - STATE(36), 1, - sym_comment, - STATE(75), 1, + sym__non_newline_whitespace, + STATE(38), 2, sym_expansion, - STATE(89), 1, - sym_param, - STATE(245), 1, - sym_path, - [1172] = 9, - ACTIONS(3), 1, + aux_sym_path_repeat1, + [981] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(287), 1, - aux_sym_path_token1, - ACTIONS(289), 1, + ACTIONS(211), 1, anon_sym_DOLLAR, - ACTIONS(291), 1, - anon_sym_DASH_DASH, - STATE(37), 1, - sym_comment, - STATE(75), 1, - sym_expansion, - STATE(91), 1, - sym_param, - STATE(243), 1, - sym_path, - [1200] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, + ACTIONS(215), 1, aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, + ACTIONS(217), 1, sym_escape_sequence, - ACTIONS(293), 1, + ACTIONS(287), 1, anon_sym_DQUOTE, - STATE(38), 1, - sym_comment, - STATE(42), 1, - aux_sym_double_quoted_string_repeat1, - STATE(90), 1, + STATE(30), 2, sym_expansion, - [1228] = 9, - ACTIONS(3), 1, + aux_sym_double_quoted_string_repeat1, + [1001] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(211), 1, + anon_sym_DOLLAR, + ACTIONS(289), 1, + anon_sym_DQUOTE, + ACTIONS(291), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(293), 1, + sym_escape_sequence, + STATE(39), 2, + sym_expansion, + aux_sym_double_quoted_string_repeat1, + [1021] = 5, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(150), 1, - anon_sym_LBRACK, ACTIONS(295), 1, - aux_sym_path_token1, + anon_sym_LF, ACTIONS(297), 1, anon_sym_DOLLAR, - STATE(27), 1, + ACTIONS(300), 1, + aux_sym_expose_port_token1, + STATE(41), 3, sym_expansion, - STATE(39), 1, - sym_comment, - STATE(110), 1, - sym_path, - STATE(239), 1, - sym_string_array, - [1256] = 9, + sym_expose_port, + aux_sym_expose_instruction_repeat1, + [1039] = 6, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(114), 1, - aux_sym_image_name_token1, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(120), 1, - anon_sym_DOLLAR, - STATE(6), 1, - aux_sym_image_name_repeat1, - STATE(40), 1, - sym_comment, - STATE(41), 1, - sym_image_name, - STATE(43), 1, - sym_expansion, - STATE(152), 1, - sym_image_spec, - [1284] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(299), 1, - anon_sym_LF, - ACTIONS(301), 1, - aux_sym_from_instruction_token2, - ACTIONS(303), 1, - anon_sym_COLON, - ACTIONS(305), 1, - anon_sym_AT, - STATE(41), 1, - sym_comment, - STATE(106), 1, - sym_image_tag, - STATE(162), 1, - sym_image_digest, - [1312] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, - sym_escape_sequence, - ACTIONS(307), 1, - anon_sym_DQUOTE, - STATE(30), 1, - aux_sym_double_quoted_string_repeat1, - STATE(42), 1, - sym_comment, - STATE(90), 1, - sym_expansion, - [1340] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(43), 1, - sym_comment, - ACTIONS(309), 3, - anon_sym_LF, - anon_sym_COLON, - anon_sym_AT, - ACTIONS(311), 3, - aux_sym_from_instruction_token2, - anon_sym_DOLLAR, - aux_sym_image_name_token1, - [1360] = 9, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(13), 1, + ACTIONS(11), 1, aux_sym_cmd_instruction_token1, - ACTIONS(313), 1, + ACTIONS(303), 1, anon_sym_NONE, - ACTIONS(315), 1, + ACTIONS(305), 1, anon_sym_DASH_DASH, - STATE(44), 1, - sym_comment, - STATE(56), 1, - aux_sym_healthcheck_instruction_repeat1, - STATE(168), 1, - sym_param, - STATE(233), 1, + STATE(217), 1, sym_cmd_instruction, - [1388] = 9, - ACTIONS(116), 1, + STATE(71), 2, + sym_param, + aux_sym_healthcheck_instruction_repeat1, + [1059] = 7, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(275), 1, + ACTIONS(257), 1, anon_sym_DOLLAR, - ACTIONS(317), 1, + ACTIONS(307), 1, anon_sym_LF, - ACTIONS(319), 1, + ACTIONS(309), 1, anon_sym_COLON, - ACTIONS(321), 1, + ACTIONS(311), 1, aux_sym__user_name_group_token1, - STATE(35), 1, + STATE(44), 1, aux_sym__user_name_group, - STATE(45), 1, - sym_comment, - STATE(95), 1, + STATE(79), 1, sym_expansion, - [1416] = 9, - ACTIONS(116), 1, + [1081] = 6, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, + ACTIONS(315), 1, + aux_sym__user_name_group_token1, + ACTIONS(318), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, - sym_escape_sequence, + STATE(44), 1, + aux_sym__user_name_group, + STATE(79), 1, + sym_expansion, + ACTIONS(313), 2, + anon_sym_LF, + anon_sym_COLON, + [1101] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(321), 1, + anon_sym_LF, ACTIONS(323), 1, - anon_sym_DQUOTE, - STATE(46), 1, - sym_comment, - STATE(47), 1, - aux_sym_double_quoted_string_repeat1, - STATE(90), 1, - sym_expansion, - [1444] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, - anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, - sym_escape_sequence, + aux_sym_from_instruction_token2, ACTIONS(325), 1, - anon_sym_DQUOTE, - STATE(30), 1, - aux_sym_double_quoted_string_repeat1, - STATE(47), 1, - sym_comment, - STATE(90), 1, - sym_expansion, - [1472] = 9, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(212), 1, anon_sym_DOLLAR, - ACTIONS(216), 1, - aux_sym_double_quoted_string_token1, - ACTIONS(218), 1, - sym_escape_sequence, ACTIONS(327), 1, - anon_sym_DQUOTE, - STATE(25), 1, - aux_sym_double_quoted_string_repeat1, - STATE(48), 1, - sym_comment, - STATE(90), 1, + aux_sym_image_digest_token1, + STATE(24), 2, sym_expansion, - [1500] = 7, - ACTIONS(116), 1, + aux_sym_image_digest_repeat1, + [1121] = 6, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(147), 1, + anon_sym_DOLLAR, + ACTIONS(149), 1, + aux_sym_image_name_token1, + STATE(47), 1, + sym_image_name, + STATE(121), 1, + sym_image_spec, + STATE(8), 2, + sym_expansion, + aux_sym_image_name_repeat1, + [1141] = 7, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(329), 1, anon_sym_LF, ACTIONS(331), 1, - anon_sym_DOLLAR, - ACTIONS(334), 1, - aux_sym_image_alias_token1, - STATE(130), 1, - sym_expansion, - STATE(49), 2, - sym_comment, - aux_sym_image_alias_repeat1, - [1523] = 5, - ACTIONS(116), 1, + aux_sym_from_instruction_token2, + ACTIONS(333), 1, + anon_sym_COLON, + ACTIONS(335), 1, + anon_sym_AT, + STATE(97), 1, + sym_image_tag, + STATE(142), 1, + sym_image_digest, + [1163] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(50), 1, - sym_comment, - ACTIONS(234), 2, + ACTIONS(337), 3, + anon_sym_LF, + anon_sym_COLON, + anon_sym_AT, + ACTIONS(339), 3, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + aux_sym_image_name_token1, + [1177] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(337), 2, + anon_sym_LF, + anon_sym_AT, + ACTIONS(339), 3, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + aux_sym_image_tag_token1, + [1190] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(231), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - ACTIONS(232), 3, + ACTIONS(229), 3, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, - [1542] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(51), 1, - sym_comment, - ACTIONS(337), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(339), 3, - anon_sym_DOLLAR, - aux_sym_label_pair_token1, - aux_sym_unquoted_string_token1, - [1561] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(52), 1, - sym_comment, - ACTIONS(232), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(234), 3, - anon_sym_DOLLAR, - aux_sym__env_key_token1, - aux_sym_unquoted_string_token1, - [1580] = 8, + [1203] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, ACTIONS(341), 1, anon_sym_DOLLAR, ACTIONS(343), 1, aux_sym_image_alias_token1, - STATE(53), 1, - sym_comment, - STATE(60), 1, - aux_sym_image_alias_repeat1, - STATE(130), 1, - sym_expansion, - STATE(174), 1, + STATE(201), 1, sym_image_alias, - [1605] = 7, - ACTIONS(116), 1, + STATE(56), 2, + sym_expansion, + aux_sym_image_alias_repeat1, + [1220] = 4, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(345), 1, - aux_sym_path_token2, - ACTIONS(348), 1, - anon_sym_DOLLAR, - ACTIONS(351), 1, - sym__non_newline_whitespace, - STATE(121), 1, - sym_expansion, - STATE(54), 2, - sym_comment, - aux_sym_path_repeat1, - [1628] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(275), 1, - anon_sym_DOLLAR, - ACTIONS(321), 1, - aux_sym__user_name_group_token1, - ACTIONS(353), 1, anon_sym_LF, - STATE(35), 1, - aux_sym__user_name_group, - STATE(55), 1, - sym_comment, - STATE(95), 1, - sym_expansion, - [1653] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(13), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(315), 1, - anon_sym_DASH_DASH, - STATE(56), 1, - sym_comment, - STATE(96), 1, - aux_sym_healthcheck_instruction_repeat1, - STATE(168), 1, - sym_param, - STATE(208), 1, - sym_cmd_instruction, - [1678] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(355), 1, - aux_sym__env_key_token1, - STATE(57), 1, - sym_comment, - STATE(74), 1, - aux_sym_env_instruction_repeat1, - STATE(158), 1, - sym__env_key, - STATE(163), 1, - sym_env_pair, - STATE(247), 1, - sym__spaced_env_pair, - [1703] = 6, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(357), 1, - anon_sym_LF, - STATE(58), 1, - sym_comment, - ACTIONS(359), 2, + ACTIONS(347), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - ACTIONS(361), 2, + ACTIONS(349), 2, anon_sym_SLASHtcp, anon_sym_SLASHudp, - [1724] = 5, - ACTIONS(116), 1, + [1235] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(59), 1, - sym_comment, - ACTIONS(363), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(365), 3, - aux_sym_from_instruction_token2, + ACTIONS(231), 2, anon_sym_DOLLAR, - aux_sym_image_tag_token1, - [1743] = 8, - ACTIONS(116), 1, + aux_sym_label_pair_token1, + ACTIONS(229), 3, + anon_sym_LF, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + [1248] = 5, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(367), 1, + ACTIONS(351), 1, anon_sym_LF, - ACTIONS(369), 1, + ACTIONS(353), 1, + aux_sym_path_token2, + ACTIONS(356), 1, anon_sym_DOLLAR, - ACTIONS(371), 1, - aux_sym_image_alias_token1, - STATE(49), 1, - aux_sym_image_alias_repeat1, - STATE(60), 1, - sym_comment, - STATE(130), 1, + STATE(54), 2, sym_expansion, - [1768] = 7, - ACTIONS(116), 1, + aux_sym_path_repeat1, + [1265] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(339), 2, + anon_sym_DOLLAR, + aux_sym_label_pair_token1, + ACTIONS(337), 3, + anon_sym_LF, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + [1278] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(359), 1, + anon_sym_LF, + ACTIONS(361), 1, + anon_sym_DOLLAR, + ACTIONS(363), 1, + aux_sym_image_alias_token1, + STATE(70), 2, + sym_expansion, + aux_sym_image_alias_repeat1, + [1295] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(365), 1, + anon_sym_LF, + ACTIONS(367), 1, + aux_sym__stopsignal_value_token1, + ACTIONS(370), 1, + anon_sym_DOLLAR, + STATE(57), 2, + aux_sym__stopsignal_value, + sym_expansion, + [1312] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(231), 2, + anon_sym_DOLLAR, + aux_sym__env_key_token1, + ACTIONS(229), 3, + anon_sym_LF, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH, + [1325] = 5, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(373), 1, anon_sym_LF, ACTIONS(375), 1, - aux_sym__stopsignal_value_token1, - ACTIONS(378), 1, + aux_sym_path_token2, + ACTIONS(377), 1, anon_sym_DOLLAR, - STATE(112), 1, + STATE(54), 2, sym_expansion, - STATE(61), 2, - aux_sym__stopsignal_value, - sym_comment, - [1791] = 5, - ACTIONS(3), 1, + aux_sym_path_repeat1, + [1342] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(383), 1, - anon_sym_POUND, - STATE(201), 1, - sym__anon_comment, - ACTIONS(381), 2, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - STATE(62), 3, - sym__comment_line, - sym_comment, - aux_sym_shell_command_repeat1, - [1810] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(63), 1, - sym_comment, - ACTIONS(337), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(339), 3, + ACTIONS(339), 2, anon_sym_DOLLAR, aux_sym__env_key_token1, + ACTIONS(337), 3, + anon_sym_LF, aux_sym_unquoted_string_token1, - [1829] = 8, - ACTIONS(116), 1, + anon_sym_BSLASH, + [1355] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(386), 1, - aux_sym_path_token2, - ACTIONS(388), 1, - anon_sym_DOLLAR, - ACTIONS(390), 1, - sym__non_newline_whitespace, - STATE(54), 1, - aux_sym_path_repeat1, - STATE(64), 1, - sym_comment, - STATE(121), 1, - sym_expansion, - [1854] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(392), 1, - anon_sym_LF, - ACTIONS(394), 1, - aux_sym_path_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR, - STATE(65), 1, - sym_comment, - STATE(66), 1, - aux_sym_path_repeat1, - STATE(118), 1, - sym_expansion, - [1879] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(390), 1, - anon_sym_LF, - ACTIONS(394), 1, - aux_sym_path_token2, - ACTIONS(396), 1, - anon_sym_DOLLAR, - STATE(66), 1, - sym_comment, - STATE(69), 1, - aux_sym_path_repeat1, - STATE(118), 1, - sym_expansion, - [1904] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(67), 1, - sym_comment, - ACTIONS(222), 2, + ACTIONS(339), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - ACTIONS(220), 3, + ACTIONS(337), 3, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, - [1923] = 8, + [1368] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(229), 2, + anon_sym_LF, + anon_sym_AT, + ACTIONS(231), 3, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + aux_sym_image_tag_token1, + [1381] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(379), 1, + anon_sym_DOLLAR, + ACTIONS(381), 1, + aux_sym_expose_port_token1, + STATE(32), 3, + sym_expansion, + sym_expose_port, + aux_sym_expose_instruction_repeat1, + [1396] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(351), 1, + sym__non_newline_whitespace, + ACTIONS(383), 1, + aux_sym_path_token2, + ACTIONS(386), 1, + anon_sym_DOLLAR, + STATE(64), 2, + sym_expansion, + aux_sym_path_repeat1, + [1413] = 6, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(257), 1, + anon_sym_DOLLAR, + ACTIONS(311), 1, + aux_sym__user_name_group_token1, + ACTIONS(389), 1, + anon_sym_LF, + STATE(44), 1, + aux_sym__user_name_group, + STATE(79), 1, + sym_expansion, + [1432] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(377), 1, + anon_sym_DOLLAR, + ACTIONS(391), 1, + anon_sym_LF, + ACTIONS(393), 1, + aux_sym_path_token2, + STATE(59), 2, + sym_expansion, + aux_sym_path_repeat1, + [1449] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(395), 1, + anon_sym_LF, + ACTIONS(397), 1, + aux_sym__env_key_token1, + STATE(198), 1, + sym__env_key, + STATE(75), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [1466] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(391), 1, + sym__non_newline_whitespace, + ACTIONS(399), 1, + aux_sym_path_token2, + ACTIONS(401), 1, + anon_sym_DOLLAR, + STATE(72), 2, + sym_expansion, + aux_sym_path_repeat1, + [1483] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(403), 1, + anon_sym_LF, + ACTIONS(405), 1, + aux_sym__stopsignal_value_token1, + ACTIONS(407), 1, + anon_sym_DOLLAR, + STATE(57), 2, + aux_sym__stopsignal_value, + sym_expansion, + [1500] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(409), 1, + anon_sym_LF, + ACTIONS(411), 1, + anon_sym_DOLLAR, + ACTIONS(414), 1, + aux_sym_image_alias_token1, + STATE(70), 2, + sym_expansion, + aux_sym_image_alias_repeat1, + [1517] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(11), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(305), 1, + anon_sym_DASH_DASH, + STATE(190), 1, + sym_cmd_instruction, + STATE(88), 2, + sym_param, + aux_sym_healthcheck_instruction_repeat1, + [1534] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(373), 1, + sym__non_newline_whitespace, + ACTIONS(401), 1, + anon_sym_DOLLAR, + ACTIONS(417), 1, + aux_sym_path_token2, + STATE(64), 2, + sym_expansion, + aux_sym_path_repeat1, + [1551] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(419), 1, + aux_sym__env_key_token1, + STATE(145), 1, + sym__env_key, + STATE(159), 1, + sym__spaced_env_pair, + STATE(67), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [1568] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, ACTIONS(341), 1, anon_sym_DOLLAR, ACTIONS(343), 1, aux_sym_image_alias_token1, - STATE(60), 1, - aux_sym_image_alias_repeat1, - STATE(68), 1, - sym_comment, - STATE(130), 1, - sym_expansion, - STATE(206), 1, + STATE(188), 1, sym_image_alias, - [1948] = 7, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(351), 1, - anon_sym_LF, - ACTIONS(398), 1, - aux_sym_path_token2, - ACTIONS(401), 1, - anon_sym_DOLLAR, - STATE(118), 1, + STATE(56), 2, sym_expansion, - STATE(69), 2, - sym_comment, - aux_sym_path_repeat1, - [1971] = 5, - ACTIONS(116), 1, + aux_sym_image_alias_repeat1, + [1585] = 5, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(70), 1, - sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(222), 3, - aux_sym_from_instruction_token2, - anon_sym_DOLLAR, - aux_sym_image_tag_token1, - [1990] = 7, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(404), 1, - anon_sym_LF, - ACTIONS(406), 1, - aux_sym__env_key_token1, - STATE(163), 1, - sym_env_pair, - STATE(215), 1, - sym__env_key, - STATE(71), 2, - sym_comment, - aux_sym_env_instruction_repeat1, - [2013] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(72), 1, - sym_comment, - ACTIONS(232), 2, - anon_sym_LF, - anon_sym_AT, - ACTIONS(234), 3, - aux_sym_from_instruction_token2, - anon_sym_DOLLAR, - aux_sym_image_tag_token1, - [2032] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(73), 1, - sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(222), 3, - anon_sym_DOLLAR, - aux_sym_label_pair_token1, - aux_sym_unquoted_string_token1, - [2051] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(409), 1, - anon_sym_LF, - ACTIONS(411), 1, - aux_sym__env_key_token1, - STATE(71), 1, - aux_sym_env_instruction_repeat1, - STATE(74), 1, - sym_comment, - STATE(163), 1, - sym_env_pair, - STATE(215), 1, - sym__env_key, - [2076] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(386), 1, - aux_sym_path_token2, - ACTIONS(388), 1, - anon_sym_DOLLAR, - ACTIONS(392), 1, - sym__non_newline_whitespace, - STATE(64), 1, - aux_sym_path_repeat1, - STATE(75), 1, - sym_comment, - STATE(121), 1, - sym_expansion, - [2101] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(76), 1, - sym_comment, - ACTIONS(232), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(234), 3, - anon_sym_DOLLAR, - aux_sym_label_pair_token1, - aux_sym_unquoted_string_token1, - [2120] = 8, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(413), 1, - anon_sym_LF, - ACTIONS(415), 1, - aux_sym__stopsignal_value_token1, - ACTIONS(417), 1, - anon_sym_DOLLAR, - STATE(61), 1, - aux_sym__stopsignal_value, - STATE(77), 1, - sym_comment, - STATE(112), 1, - sym_expansion, - [2145] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(78), 1, - sym_comment, - ACTIONS(220), 2, - anon_sym_LF, - anon_sym_BSLASH, - ACTIONS(222), 3, - anon_sym_DOLLAR, - aux_sym__env_key_token1, - aux_sym_unquoted_string_token1, - [2164] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(419), 1, - anon_sym_DOLLAR, ACTIONS(421), 1, - aux_sym_expose_port_token1, - STATE(34), 1, - aux_sym_expose_instruction_repeat1, - STATE(79), 1, - sym_comment, - STATE(113), 2, - sym_expansion, - sym_expose_port, - [2187] = 7, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, + anon_sym_LF, ACTIONS(423), 1, + aux_sym__env_key_token1, + STATE(198), 1, + sym__env_key, + STATE(75), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [1602] = 4, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(426), 1, anon_sym_LF, - ACTIONS(425), 1, + ACTIONS(428), 1, aux_sym_label_pair_token1, - STATE(80), 1, - sym_comment, - STATE(100), 1, - aux_sym_label_instruction_repeat1, - STATE(147), 1, + STATE(90), 2, sym_label_pair, - [2209] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(232), 1, - aux_sym_double_quoted_string_token1, - STATE(81), 1, - sym_comment, - ACTIONS(234), 3, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - [2227] = 7, + aux_sym_label_instruction_repeat1, + [1616] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(321), 1, + ACTIONS(311), 1, aux_sym__user_name_group_token1, - ACTIONS(419), 1, + ACTIONS(379), 1, anon_sym_DOLLAR, - STATE(45), 1, + STATE(65), 1, aux_sym__user_name_group, - STATE(82), 1, - sym_comment, - STATE(95), 1, + STATE(79), 1, sym_expansion, - [2249] = 7, + [1632] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(267), 1, aux_sym_path_token1, - ACTIONS(429), 1, + ACTIONS(269), 1, anon_sym_DOLLAR, - STATE(65), 1, + STATE(68), 1, sym_expansion, - STATE(83), 1, - sym_comment, - STATE(237), 1, + STATE(196), 1, sym_path, - [2271] = 4, - ACTIONS(116), 1, + [1648] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(84), 1, - sym_comment, - ACTIONS(431), 4, - anon_sym_LF, - aux_sym_path_token2, + ACTIONS(432), 1, anon_sym_DOLLAR, - sym__non_newline_whitespace, - [2287] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(427), 1, - aux_sym_path_token1, - ACTIONS(429), 1, - anon_sym_DOLLAR, - STATE(65), 1, - sym_expansion, - STATE(85), 1, - sym_comment, - STATE(180), 1, - sym_path, - [2309] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(427), 1, - aux_sym_path_token1, - ACTIONS(429), 1, - anon_sym_DOLLAR, - STATE(65), 1, - sym_expansion, - STATE(86), 1, - sym_comment, - STATE(179), 1, - sym_path, - [2331] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(433), 1, - aux_sym__stopsignal_value_token1, - ACTIONS(435), 1, - anon_sym_DOLLAR, - STATE(77), 1, - aux_sym__stopsignal_value, - STATE(87), 1, - sym_comment, - STATE(112), 1, - sym_expansion, - [2353] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(88), 1, - sym_comment, - ACTIONS(222), 4, - anon_sym_LF, - aux_sym_path_token2, - anon_sym_DOLLAR, - sym__non_newline_whitespace, - [2369] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(287), 1, - aux_sym_path_token1, - ACTIONS(289), 1, - anon_sym_DOLLAR, - STATE(75), 1, - sym_expansion, - STATE(89), 1, - sym_comment, - STATE(214), 1, - sym_path, - [2391] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(439), 1, - aux_sym_double_quoted_string_token1, - STATE(90), 1, - sym_comment, - ACTIONS(437), 3, - anon_sym_DOLLAR, - anon_sym_DQUOTE, - sym_escape_sequence, - [2409] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(287), 1, - aux_sym_path_token1, - ACTIONS(289), 1, - anon_sym_DOLLAR, - STATE(75), 1, - sym_expansion, - STATE(91), 1, - sym_comment, - STATE(213), 1, - sym_path, - [2431] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(92), 1, - sym_comment, - ACTIONS(441), 2, - anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(443), 2, - aux_sym_from_instruction_token2, - anon_sym_DOLLAR, - [2449] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(93), 1, - sym_comment, - ACTIONS(234), 4, - anon_sym_LF, - aux_sym_path_token2, - anon_sym_DOLLAR, - sym__non_newline_whitespace, - [2465] = 6, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(445), 1, - anon_sym_LF, - ACTIONS(449), 1, - sym_line_continuation, - STATE(94), 1, - sym_comment, - STATE(99), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(447), 2, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - [2485] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(453), 1, - anon_sym_DOLLAR, - STATE(95), 1, - sym_comment, - ACTIONS(451), 3, + ACTIONS(430), 3, anon_sym_LF, anon_sym_COLON, aux_sym__user_name_group_token1, - [2503] = 6, + [1660] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(455), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(457), 1, - anon_sym_DASH_DASH, - STATE(168), 1, - sym_param, - STATE(96), 2, - sym_comment, - aux_sym_healthcheck_instruction_repeat1, - [2523] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(427), 1, - aux_sym_path_token1, - ACTIONS(429), 1, - anon_sym_DOLLAR, - STATE(65), 1, - sym_expansion, - STATE(97), 1, - sym_comment, - STATE(191), 1, - sym_path, - [2545] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(321), 1, + ACTIONS(311), 1, aux_sym__user_name_group_token1, - ACTIONS(419), 1, + ACTIONS(379), 1, anon_sym_DOLLAR, - STATE(55), 1, + STATE(43), 1, aux_sym__user_name_group, - STATE(95), 1, + STATE(79), 1, sym_expansion, - STATE(98), 1, - sym_comment, - [2567] = 5, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(460), 1, - anon_sym_LF, - ACTIONS(465), 1, + [1676] = 5, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(462), 2, + ACTIONS(434), 1, + aux_sym_path_token1, + ACTIONS(436), 1, + anon_sym_DOLLAR, + STATE(66), 1, + sym_expansion, + STATE(221), 1, + sym_path, + [1692] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(438), 1, + aux_sym__stopsignal_value_token1, + ACTIONS(440), 1, + anon_sym_DOLLAR, + STATE(69), 2, + aux_sym__stopsignal_value, + sym_expansion, + [1706] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(434), 1, + aux_sym_path_token1, + ACTIONS(436), 1, + anon_sym_DOLLAR, + STATE(66), 1, + sym_expansion, + STATE(166), 1, + sym_path, + [1722] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(434), 1, + aux_sym_path_token1, + ACTIONS(436), 1, + anon_sym_DOLLAR, + STATE(66), 1, + sym_expansion, + STATE(165), 1, + sym_path, + [1738] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(231), 4, + anon_sym_LF, + aux_sym_path_token2, + anon_sym_DOLLAR, + sym__non_newline_whitespace, + [1748] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(339), 4, + anon_sym_LF, + aux_sym_path_token2, + anon_sym_DOLLAR, + sym__non_newline_whitespace, + [1758] = 4, + ACTIONS(442), 1, + anon_sym_LF, + ACTIONS(446), 1, + sym_line_continuation, + STATE(89), 1, + aux_sym_shell_fragment_repeat1, + ACTIONS(444), 2, aux_sym_shell_fragment_token1, aux_sym_shell_fragment_token2, - STATE(99), 2, - sym_comment, - aux_sym_shell_fragment_repeat1, - [2585] = 6, - ACTIONS(116), 1, + [1772] = 4, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(467), 1, + ACTIONS(448), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(450), 1, + anon_sym_DASH_DASH, + STATE(88), 2, + sym_param, + aux_sym_healthcheck_instruction_repeat1, + [1786] = 4, + ACTIONS(453), 1, anon_sym_LF, - ACTIONS(469), 1, - aux_sym_label_pair_token1, - STATE(147), 1, - sym_label_pair, - STATE(100), 2, - sym_comment, - aux_sym_label_instruction_repeat1, - [2605] = 5, - ACTIONS(116), 1, + ACTIONS(458), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(220), 1, + STATE(89), 1, + aux_sym_shell_fragment_repeat1, + ACTIONS(455), 2, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, + [1800] = 4, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(460), 1, + anon_sym_LF, + ACTIONS(462), 1, + aux_sym_label_pair_token1, + STATE(90), 2, + sym_label_pair, + aux_sym_label_instruction_repeat1, + [1814] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(337), 1, aux_sym_double_quoted_string_token1, - STATE(101), 1, - sym_comment, - ACTIONS(222), 3, + ACTIONS(339), 3, anon_sym_DOLLAR, anon_sym_DQUOTE, sym_escape_sequence, - [2623] = 5, - ACTIONS(116), 1, + [1826] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(102), 1, - sym_comment, - ACTIONS(232), 2, - anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(234), 2, - aux_sym_from_instruction_token2, + ACTIONS(229), 1, + aux_sym_double_quoted_string_token1, + ACTIONS(231), 3, anon_sym_DOLLAR, - [2641] = 7, + anon_sym_DQUOTE, + sym_escape_sequence, + [1838] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(295), 1, + ACTIONS(434), 1, aux_sym_path_token1, - ACTIONS(297), 1, + ACTIONS(436), 1, + anon_sym_DOLLAR, + STATE(66), 1, + sym_expansion, + STATE(170), 1, + sym_path, + [1854] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(337), 2, + anon_sym_LF, + aux_sym_image_digest_token1, + ACTIONS(339), 2, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + [1866] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(465), 1, + anon_sym_DOLLAR, + ACTIONS(467), 1, + aux_sym_image_tag_token1, + STATE(15), 2, + sym_expansion, + aux_sym_image_tag_repeat1, + [1880] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(469), 1, + anon_sym_DOLLAR, + ACTIONS(471), 1, + aux_sym_image_digest_token1, + STATE(45), 2, + sym_expansion, + aux_sym_image_digest_repeat1, + [1894] = 5, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(335), 1, + anon_sym_AT, + ACTIONS(473), 1, + anon_sym_LF, + ACTIONS(475), 1, + aux_sym_from_instruction_token2, + STATE(125), 1, + sym_image_digest, + [1910] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(434), 1, + aux_sym_path_token1, + ACTIONS(436), 1, + anon_sym_DOLLAR, + STATE(66), 1, + sym_expansion, + STATE(164), 1, + sym_path, + [1926] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(229), 2, + anon_sym_LF, + aux_sym_image_digest_token1, + ACTIONS(231), 2, + aux_sym_from_instruction_token2, + anon_sym_DOLLAR, + [1938] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(273), 1, + aux_sym_path_token1, + ACTIONS(275), 1, anon_sym_DOLLAR, STATE(27), 1, sym_expansion, - STATE(103), 1, - sym_comment, - STATE(161), 1, + STATE(146), 1, sym_path, - [2663] = 7, + [1954] = 5, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(200), 1, - aux_sym_image_tag_token1, - ACTIONS(472), 1, - anon_sym_DOLLAR, - STATE(22), 1, - aux_sym_image_tag_repeat1, - STATE(59), 1, - sym_expansion, - STATE(104), 1, - sym_comment, - [2685] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(263), 1, - aux_sym_image_digest_token1, - ACTIONS(474), 1, - anon_sym_DOLLAR, - STATE(32), 1, - aux_sym_image_digest_repeat1, - STATE(92), 1, - sym_expansion, - STATE(105), 1, - sym_comment, - [2707] = 7, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(305), 1, - anon_sym_AT, - ACTIONS(476), 1, - anon_sym_LF, - ACTIONS(478), 1, - aux_sym_from_instruction_token2, - STATE(106), 1, - sym_comment, - STATE(138), 1, - sym_image_digest, - [2729] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(427), 1, + ACTIONS(267), 1, aux_sym_path_token1, - ACTIONS(429), 1, + ACTIONS(269), 1, anon_sym_DOLLAR, - STATE(65), 1, + STATE(68), 1, sym_expansion, - STATE(107), 1, - sym_comment, - STATE(192), 1, + STATE(197), 1, sym_path, - [2751] = 5, - ACTIONS(116), 1, + [1970] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(108), 1, - sym_comment, - ACTIONS(220), 2, + ACTIONS(229), 1, anon_sym_LF, - aux_sym_image_digest_token1, - ACTIONS(222), 2, - aux_sym_from_instruction_token2, + ACTIONS(231), 2, anon_sym_DOLLAR, - [2769] = 5, - ACTIONS(116), 1, + aux_sym_image_alias_token1, + [1981] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(220), 1, + ACTIONS(229), 1, anon_sym_LF, - STATE(109), 1, - sym_comment, - ACTIONS(222), 2, - aux_sym__stopsignal_value_token1, + ACTIONS(231), 2, + aux_sym_path_token2, anon_sym_DOLLAR, - [2786] = 6, - ACTIONS(116), 1, + [1992] = 4, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(480), 1, + ACTIONS(477), 1, anon_sym_LF, - ACTIONS(482), 1, + ACTIONS(479), 1, sym__non_newline_whitespace, - STATE(110), 1, - sym_comment, - STATE(123), 1, - aux_sym_volume_instruction_repeat1, - [2805] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(484), 1, - anon_sym_COMMA, - ACTIONS(487), 1, - anon_sym_RBRACK, - STATE(111), 2, - sym_comment, - aux_sym_string_array_repeat1, - [2822] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(489), 1, - anon_sym_LF, - STATE(112), 1, - sym_comment, - ACTIONS(491), 2, - aux_sym__stopsignal_value_token1, - anon_sym_DOLLAR, - [2839] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(493), 1, - anon_sym_LF, - STATE(113), 1, - sym_comment, - ACTIONS(495), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [2856] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(497), 1, - anon_sym_LF, STATE(114), 1, - sym_comment, - ACTIONS(499), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [2873] = 6, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(501), 1, - aux_sym_label_pair_token1, - STATE(80), 1, - aux_sym_label_instruction_repeat1, - STATE(115), 1, - sym_comment, - STATE(147), 1, - sym_label_pair, - [2892] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(503), 1, - anon_sym_LF, - ACTIONS(505), 1, - sym__non_newline_whitespace, - STATE(116), 2, - sym_comment, aux_sym_volume_instruction_repeat1, - [2909] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(220), 1, - sym__non_newline_whitespace, - STATE(117), 1, - sym_comment, - ACTIONS(222), 2, - aux_sym_path_token2, - anon_sym_DOLLAR, - [2926] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(508), 1, - anon_sym_LF, - STATE(118), 1, - sym_comment, - ACTIONS(431), 2, - aux_sym_path_token2, - anon_sym_DOLLAR, - [2943] = 6, + [2005] = 4, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(510), 1, + ACTIONS(481), 1, anon_sym_COMMA, - ACTIONS(512), 1, + ACTIONS(484), 1, anon_sym_RBRACK, - STATE(119), 1, - sym_comment, - STATE(126), 1, + STATE(105), 1, aux_sym_string_array_repeat1, - [2962] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(232), 1, - sym__non_newline_whitespace, - STATE(120), 1, - sym_comment, - ACTIONS(234), 2, - aux_sym_path_token2, - anon_sym_DOLLAR, - [2979] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(508), 1, - sym__non_newline_whitespace, - STATE(121), 1, - sym_comment, - ACTIONS(431), 2, - aux_sym_path_token2, - anon_sym_DOLLAR, - [2996] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(232), 1, - anon_sym_LF, - STATE(122), 1, - sym_comment, - ACTIONS(234), 2, - anon_sym_DOLLAR, - aux_sym_image_alias_token1, - [3013] = 6, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(482), 1, - sym__non_newline_whitespace, - ACTIONS(514), 1, - anon_sym_LF, - STATE(116), 1, - aux_sym_volume_instruction_repeat1, - STATE(123), 1, - sym_comment, - [3032] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(220), 1, - anon_sym_LF, - STATE(124), 1, - sym_comment, - ACTIONS(222), 2, - anon_sym_DOLLAR, - aux_sym_image_alias_token1, - [3049] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(232), 1, - anon_sym_LF, - STATE(125), 1, - sym_comment, - ACTIONS(234), 2, - aux_sym__stopsignal_value_token1, - anon_sym_DOLLAR, - [3066] = 6, + [2018] = 2, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, + ACTIONS(486), 3, + aux_sym_shell_fragment_token1, + aux_sym_shell_fragment_token2, anon_sym_POUND, - ACTIONS(510), 1, + [2027] = 4, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(488), 1, + anon_sym_LF, + ACTIONS(490), 1, + sym__non_newline_whitespace, + STATE(107), 1, + aux_sym_volume_instruction_repeat1, + [2040] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(493), 1, + aux_sym_label_pair_token1, + STATE(76), 2, + sym_label_pair, + aux_sym_label_instruction_repeat1, + [2051] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(229), 1, + sym__non_newline_whitespace, + ACTIONS(231), 2, + aux_sym_path_token2, + anon_sym_DOLLAR, + [2062] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(337), 1, + sym__non_newline_whitespace, + ACTIONS(339), 2, + aux_sym_path_token2, + anon_sym_DOLLAR, + [2073] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(495), 1, anon_sym_COMMA, - ACTIONS(516), 1, + ACTIONS(497), 1, + anon_sym_RBRACK, + STATE(105), 1, + aux_sym_string_array_repeat1, + [2086] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(495), 1, + anon_sym_COMMA, + ACTIONS(499), 1, anon_sym_RBRACK, STATE(111), 1, aux_sym_string_array_repeat1, - STATE(126), 1, - sym_comment, - [3085] = 4, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(518), 1, - anon_sym_LF, - STATE(127), 1, - sym_comment, - ACTIONS(520), 3, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - sym_line_continuation, - [3100] = 6, + [2099] = 4, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(522), 1, + ACTIONS(501), 1, anon_sym_RBRACK, - ACTIONS(524), 1, + ACTIONS(503), 1, anon_sym_DQUOTE, - STATE(119), 1, + STATE(112), 1, sym_double_quoted_string, - STATE(128), 1, - sym_comment, - [3119] = 5, - ACTIONS(116), 1, + [2112] = 4, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(232), 1, + ACTIONS(479), 1, + sym__non_newline_whitespace, + ACTIONS(505), 1, anon_sym_LF, - STATE(129), 1, - sym_comment, - ACTIONS(234), 2, - aux_sym_path_token2, - anon_sym_DOLLAR, - [3136] = 5, - ACTIONS(116), 1, + STATE(107), 1, + aux_sym_volume_instruction_repeat1, + [2125] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(526), 1, + ACTIONS(337), 1, anon_sym_LF, - STATE(130), 1, - sym_comment, - ACTIONS(528), 2, + ACTIONS(339), 2, anon_sym_DOLLAR, aux_sym_image_alias_token1, - [3153] = 5, - ACTIONS(116), 1, + [2136] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(220), 1, + ACTIONS(337), 1, anon_sym_LF, - STATE(131), 1, - sym_comment, - ACTIONS(222), 2, + ACTIONS(339), 2, + aux_sym__stopsignal_value_token1, + anon_sym_DOLLAR, + [2147] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(229), 1, + anon_sym_LF, + ACTIONS(231), 2, + aux_sym__stopsignal_value_token1, + anon_sym_DOLLAR, + [2158] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(507), 1, + anon_sym_LF, + ACTIONS(509), 2, + anon_sym_DOLLAR, + aux_sym_expose_port_token1, + [2169] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(337), 1, + anon_sym_LF, + ACTIONS(339), 2, aux_sym_path_token2, anon_sym_DOLLAR, - [3170] = 5, + [2180] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(530), 1, - anon_sym_LBRACE, - ACTIONS(532), 1, - sym_variable, - STATE(132), 1, - sym_comment, - [3186] = 5, - ACTIONS(3), 1, + ACTIONS(503), 1, + anon_sym_DQUOTE, + STATE(153), 1, + sym_double_quoted_string, + [2190] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(150), 1, - anon_sym_LBRACK, - STATE(133), 1, - sym_comment, - STATE(231), 1, - sym_string_array, - [3202] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(534), 1, - anon_sym_LBRACE, - ACTIONS(536), 1, - sym_variable, - STATE(134), 1, - sym_comment, - [3218] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(538), 1, - anon_sym_LBRACE, - ACTIONS(540), 1, - sym_variable, - STATE(135), 1, - sym_comment, - [3234] = 5, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(542), 1, + ACTIONS(511), 1, anon_sym_LF, - ACTIONS(544), 1, - sym_line_continuation, - STATE(136), 1, - sym_comment, - STATE(150), 1, - aux_sym_shell_command_repeat2, - [3250] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(546), 1, - anon_sym_LBRACE, - ACTIONS(548), 1, - sym_variable, - STATE(137), 1, - sym_comment, - [3266] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(550), 1, - anon_sym_LF, - ACTIONS(552), 1, + ACTIONS(513), 1, aux_sym_from_instruction_token2, - STATE(138), 1, - sym_comment, - [3282] = 4, + [2200] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(139), 1, - sym_comment, - ACTIONS(554), 2, + ACTIONS(515), 1, + anon_sym_LBRACE, + ACTIONS(517), 1, + sym_variable, + [2210] = 3, + ACTIONS(519), 1, + anon_sym_LF, + ACTIONS(521), 1, + sym_line_continuation, + STATE(137), 1, + aux_sym_shell_command_repeat2, + [2220] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(523), 1, + anon_sym_LBRACE, + ACTIONS(525), 1, + sym_variable, + [2230] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(527), 1, + anon_sym_LF, + ACTIONS(529), 1, + aux_sym_from_instruction_token2, + [2240] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(531), 2, anon_sym_COMMA, anon_sym_RBRACK, - [3296] = 5, - ACTIONS(116), 1, + [2248] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(556), 1, + ACTIONS(533), 1, anon_sym_LF, - ACTIONS(558), 1, - anon_sym_EQ, - STATE(140), 1, - sym_comment, - [3312] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(560), 1, - anon_sym_LF, - ACTIONS(562), 1, + ACTIONS(535), 1, aux_sym_from_instruction_token2, - STATE(141), 1, - sym_comment, - [3328] = 5, + [2258] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(524), 1, - anon_sym_DQUOTE, - STATE(142), 1, - sym_comment, - STATE(171), 1, - sym_double_quoted_string, - [3344] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(564), 1, + ACTIONS(537), 1, anon_sym_LBRACE, + ACTIONS(539), 1, + sym_variable, + [2268] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(541), 1, + anon_sym_LBRACE, + ACTIONS(543), 1, + sym_variable, + [2278] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(545), 1, + anon_sym_LF, + ACTIONS(547), 1, + anon_sym_EQ, + [2288] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(549), 1, + anon_sym_LF, + ACTIONS(551), 1, + aux_sym__env_key_token1, + [2298] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(553), 2, + aux_sym_cmd_instruction_token1, + anon_sym_DASH_DASH, + [2306] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(555), 1, + anon_sym_LBRACE, + ACTIONS(557), 1, + sym_variable, + [2316] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(531), 1, + anon_sym_LF, + ACTIONS(559), 1, + aux_sym__env_key_token1, + [2326] = 3, + ACTIONS(561), 1, + anon_sym_LF, + ACTIONS(563), 1, + sym_line_continuation, + STATE(135), 1, + aux_sym_shell_command_repeat2, + [2336] = 3, + ACTIONS(129), 1, + sym_line_continuation, ACTIONS(566), 1, - sym_variable, - STATE(143), 1, - sym_comment, - [3360] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, + anon_sym_LF, ACTIONS(568), 1, - anon_sym_LBRACE, - ACTIONS(570), 1, - sym_variable, - STATE(144), 1, - sym_comment, - [3376] = 5, - ACTIONS(116), 1, + aux_sym_label_pair_token1, + [2346] = 3, + ACTIONS(521), 1, + sym_line_continuation, + ACTIONS(570), 1, + anon_sym_LF, + STATE(135), 1, + aux_sym_shell_command_repeat2, + [2356] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(549), 1, + anon_sym_LF, + ACTIONS(551), 1, + aux_sym_label_pair_token1, + [2366] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(572), 1, anon_sym_LF, ACTIONS(574), 1, aux_sym__env_key_token1, - STATE(145), 1, - sym_comment, - [3392] = 4, + [2376] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(146), 1, - sym_comment, - ACTIONS(576), 2, - aux_sym_cmd_instruction_token1, - anon_sym_DASH_DASH, - [3406] = 5, - ACTIONS(116), 1, + ACTIONS(553), 1, + anon_sym_DOLLAR, + ACTIONS(576), 1, + aux_sym_path_token1, + [2386] = 3, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(531), 1, + anon_sym_LF, + ACTIONS(559), 1, + aux_sym_label_pair_token1, + [2396] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, ACTIONS(578), 1, anon_sym_LF, ACTIONS(580), 1, - aux_sym_label_pair_token1, - STATE(147), 1, - sym_comment, - [3422] = 5, - ACTIONS(116), 1, + aux_sym_from_instruction_token2, + [2406] = 3, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(554), 1, - anon_sym_LF, ACTIONS(582), 1, - aux_sym__env_key_token1, - STATE(148), 1, - sym_comment, - [3438] = 4, - ACTIONS(118), 1, - anon_sym_POUND, + anon_sym_LBRACE, ACTIONS(584), 1, - anon_sym_LF, + sym_variable, + [2416] = 3, + ACTIONS(3), 1, + sym_line_continuation, ACTIONS(586), 1, - sym_line_continuation, - STATE(149), 2, - sym_comment, - aux_sym_shell_command_repeat2, - [3452] = 5, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(544), 1, - sym_line_continuation, - ACTIONS(589), 1, - anon_sym_LF, - STATE(149), 1, - aux_sym_shell_command_repeat2, - STATE(150), 1, - sym_comment, - [3468] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(591), 1, - anon_sym_LF, - ACTIONS(593), 1, - aux_sym_label_pair_token1, - STATE(151), 1, - sym_comment, - [3484] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(595), 1, - anon_sym_LF, - ACTIONS(597), 1, - aux_sym_from_instruction_token2, - STATE(152), 1, - sym_comment, - [3500] = 3, - ACTIONS(3), 1, - sym_line_continuation, - STATE(153), 1, - sym_comment, - ACTIONS(599), 3, - aux_sym_shell_fragment_token1, - aux_sym_shell_fragment_token2, - anon_sym_POUND, - [3512] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(601), 1, - anon_sym_LF, - ACTIONS(603), 1, - aux_sym__env_key_token1, - STATE(154), 1, - sym_comment, - [3528] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(572), 1, - anon_sym_LF, - ACTIONS(574), 1, - aux_sym_label_pair_token1, - STATE(155), 1, - sym_comment, - [3544] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(605), 1, anon_sym_LBRACE, - ACTIONS(607), 1, + ACTIONS(588), 1, sym_variable, - STATE(156), 1, - sym_comment, - [3560] = 5, - ACTIONS(3), 1, + [2426] = 3, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(609), 1, - aux_sym_path_token1, - STATE(157), 1, - sym_comment, - [3576] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(611), 1, + ACTIONS(590), 1, anon_sym_EQ, - ACTIONS(613), 1, + ACTIONS(592), 1, aux_sym__spaced_env_pair_token1, - STATE(158), 1, - sym_comment, - [3592] = 5, - ACTIONS(116), 1, + [2436] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(554), 1, + ACTIONS(488), 2, anon_sym_LF, - ACTIONS(582), 1, - aux_sym_label_pair_token1, - STATE(159), 1, - sym_comment, - [3608] = 5, + sym__non_newline_whitespace, + [2444] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(615), 1, + ACTIONS(594), 1, anon_sym_LBRACE, - ACTIONS(617), 1, + ACTIONS(596), 1, sym_variable, - STATE(160), 1, - sym_comment, - [3624] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(161), 1, - sym_comment, - ACTIONS(503), 2, - anon_sym_LF, - sym__non_newline_whitespace, - [3638] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(619), 1, - anon_sym_LF, - ACTIONS(621), 1, - aux_sym_from_instruction_token2, - STATE(162), 1, - sym_comment, - [3654] = 5, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(623), 1, - anon_sym_LF, - ACTIONS(625), 1, - aux_sym__env_key_token1, - STATE(163), 1, - sym_comment, - [3670] = 5, + [2454] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(627), 1, - anon_sym_LBRACE, - ACTIONS(629), 1, - sym_variable, - STATE(164), 1, - sym_comment, - [3686] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(576), 1, - anon_sym_DOLLAR, - ACTIONS(609), 1, - aux_sym_image_name_token1, - STATE(165), 1, - sym_comment, - [3702] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - STATE(166), 1, - sym_comment, - ACTIONS(631), 2, - anon_sym_EQ, - aux_sym__spaced_env_pair_token1, - [3716] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(633), 1, - anon_sym_LBRACE, - ACTIONS(635), 1, - sym_variable, - STATE(167), 1, - sym_comment, - [3732] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(168), 1, - sym_comment, - ACTIONS(637), 2, - aux_sym_cmd_instruction_token1, - anon_sym_DASH_DASH, - [3746] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(169), 1, - sym_comment, - ACTIONS(572), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [3760] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(639), 1, - anon_sym_LBRACE, - ACTIONS(641), 1, - sym_variable, - STATE(170), 1, - sym_comment, - [3776] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - STATE(171), 1, - sym_comment, - ACTIONS(487), 2, - anon_sym_COMMA, - anon_sym_RBRACK, - [3790] = 5, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(643), 1, - anon_sym_LBRACE, - ACTIONS(645), 1, - sym_variable, - STATE(172), 1, - sym_comment, - [3806] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(647), 1, - anon_sym_LF, - STATE(173), 1, - sym_comment, - [3819] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(649), 1, - anon_sym_LF, - STATE(174), 1, - sym_comment, - [3832] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(651), 1, - anon_sym_LF, - STATE(175), 1, - sym_comment, - [3845] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(653), 1, - anon_sym_LF, - STATE(176), 1, - sym_comment, - [3858] = 4, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(655), 1, - anon_sym_LF, - ACTIONS(657), 1, - sym_line_continuation, - STATE(177), 1, - sym_comment, - [3871] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(659), 1, - aux_sym_expansion_token1, - STATE(178), 1, - sym_comment, - [3884] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(661), 1, - anon_sym_LF, - STATE(179), 1, - sym_comment, - [3897] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(663), 1, - anon_sym_LF, - STATE(180), 1, - sym_comment, - [3910] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(665), 1, - anon_sym_LF, - STATE(181), 1, - sym_comment, - [3923] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(631), 1, - anon_sym_EQ, - STATE(182), 1, - sym_comment, - [3936] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(667), 1, - anon_sym_LF, - STATE(183), 1, - sym_comment, - [3949] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(669), 1, - anon_sym_LF, - STATE(184), 1, - sym_comment, - [3962] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(671), 1, - ts_builtin_sym_end, - STATE(185), 1, - sym_comment, - [3975] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(673), 1, - aux_sym_arg_instruction_token2, - STATE(186), 1, - sym_comment, - [3988] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(675), 1, - aux_sym_maintainer_instruction_token2, - STATE(187), 1, - sym_comment, - [4001] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(677), 1, - aux_sym_maintainer_instruction_token2, - STATE(188), 1, - sym_comment, - [4014] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(679), 1, - sym__non_newline_whitespace, - STATE(189), 1, - sym_comment, - [4027] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(681), 1, - sym__non_newline_whitespace, - STATE(190), 1, - sym_comment, - [4040] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(683), 1, - anon_sym_LF, - STATE(191), 1, - sym_comment, - [4053] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(685), 1, - anon_sym_LF, - STATE(192), 1, - sym_comment, - [4066] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(687), 1, - sym__non_newline_whitespace, - STATE(193), 1, - sym_comment, - [4079] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(689), 1, - anon_sym_LF, - STATE(194), 1, - sym_comment, - [4092] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(691), 1, - sym__non_newline_whitespace, - STATE(195), 1, - sym_comment, - [4105] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(693), 1, - anon_sym_LF, - STATE(196), 1, - sym_comment, - [4118] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(695), 1, - sym__non_newline_whitespace, - STATE(197), 1, - sym_comment, - [4131] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(697), 1, - anon_sym_LF, - STATE(198), 1, - sym_comment, - [4144] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(699), 1, - aux_sym_param_token1, - STATE(199), 1, - sym_comment, - [4157] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(701), 1, - sym__non_newline_whitespace, - STATE(200), 1, - sym_comment, - [4170] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(703), 1, - anon_sym_LF, - STATE(201), 1, - sym_comment, - [4183] = 4, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(584), 1, - anon_sym_LF, - ACTIONS(705), 1, - sym_line_continuation, - STATE(202), 1, - sym_comment, - [4196] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(707), 1, - aux_sym_maintainer_instruction_token2, - STATE(203), 1, - sym_comment, - [4209] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(709), 1, - anon_sym_LF, - STATE(204), 1, - sym_comment, - [4222] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(711), 1, - anon_sym_LF, - STATE(205), 1, - sym_comment, - [4235] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(713), 1, - anon_sym_LF, - STATE(206), 1, - sym_comment, - [4248] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(715), 1, - aux_sym_param_token2, - STATE(207), 1, - sym_comment, - [4261] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(717), 1, - anon_sym_LF, - STATE(208), 1, - sym_comment, - [4274] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(719), 1, - anon_sym_EQ, - STATE(209), 1, - sym_comment, - [4287] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(721), 1, - aux_sym_maintainer_instruction_token2, - STATE(210), 1, - sym_comment, - [4300] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(723), 1, - sym__non_newline_whitespace, - STATE(211), 1, - sym_comment, - [4313] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(725), 1, - sym__non_newline_whitespace, - STATE(212), 1, - sym_comment, - [4326] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(727), 1, - sym__non_newline_whitespace, - STATE(213), 1, - sym_comment, - [4339] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(729), 1, - sym__non_newline_whitespace, - STATE(214), 1, - sym_comment, - [4352] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(611), 1, - anon_sym_EQ, + ACTIONS(193), 1, + anon_sym_LBRACK, STATE(215), 1, - sym_comment, - [4365] = 4, + sym_string_array, + [2464] = 3, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(731), 1, - anon_sym_RBRACE, - STATE(216), 1, - sym_comment, - [4378] = 4, - ACTIONS(116), 1, + ACTIONS(598), 1, + anon_sym_LBRACE, + ACTIONS(600), 1, + sym_variable, + [2474] = 3, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(733), 1, - sym__non_newline_whitespace, - STATE(217), 1, - sym_comment, - [4391] = 4, - ACTIONS(116), 1, + ACTIONS(553), 1, + anon_sym_DOLLAR, + ACTIONS(576), 1, + aux_sym_image_name_token1, + [2484] = 3, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(735), 1, - sym__non_newline_whitespace, - STATE(218), 1, - sym_comment, - [4404] = 4, - ACTIONS(116), 1, + ACTIONS(602), 1, + anon_sym_LBRACE, + ACTIONS(604), 1, + sym_variable, + [2494] = 3, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(737), 1, - sym__non_newline_whitespace, - STATE(219), 1, - sym_comment, - [4417] = 4, - ACTIONS(116), 1, + ACTIONS(606), 1, + anon_sym_LBRACE, + ACTIONS(608), 1, + sym_variable, + [2504] = 2, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(739), 1, - sym__non_newline_whitespace, - STATE(220), 1, - sym_comment, - [4430] = 4, - ACTIONS(116), 1, + ACTIONS(484), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [2512] = 2, + ACTIONS(3), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(741), 1, + ACTIONS(549), 2, + anon_sym_COMMA, + anon_sym_RBRACK, + [2520] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(610), 1, + anon_sym_LBRACE, + ACTIONS(612), 1, + sym_variable, + [2530] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(614), 1, anon_sym_LF, - STATE(221), 1, - sym_comment, - [4443] = 4, - ACTIONS(116), 1, + [2537] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(743), 1, + ACTIONS(616), 1, sym__non_newline_whitespace, - STATE(222), 1, - sym_comment, - [4456] = 4, - ACTIONS(3), 1, + [2544] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(745), 1, - anon_sym_RBRACE, - STATE(223), 1, - sym_comment, - [4469] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(747), 1, - aux_sym_param_token2, - STATE(224), 1, - sym_comment, - [4482] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(749), 1, - sym__non_newline_whitespace, - STATE(225), 1, - sym_comment, - [4495] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(751), 1, - anon_sym_EQ, - STATE(226), 1, - sym_comment, - [4508] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(753), 1, - sym__non_newline_whitespace, - STATE(227), 1, - sym_comment, - [4521] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(755), 1, - anon_sym_RBRACE, - STATE(228), 1, - sym_comment, - [4534] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(757), 1, - aux_sym_param_token2, - STATE(229), 1, - sym_comment, - [4547] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(759), 1, - sym__non_newline_whitespace, - STATE(230), 1, - sym_comment, - [4560] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(761), 1, + ACTIONS(618), 1, anon_sym_LF, - STATE(231), 1, - sym_comment, - [4573] = 4, - ACTIONS(3), 1, + [2551] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(763), 1, - anon_sym_RBRACE, - STATE(232), 1, - sym_comment, - [4586] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(765), 1, + ACTIONS(620), 1, anon_sym_LF, - STATE(233), 1, - sym_comment, - [4599] = 4, + [2558] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(622), 1, + aux_sym_expansion_token1, + [2565] = 2, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(767), 1, - anon_sym_RBRACE, - STATE(234), 1, - sym_comment, - [4612] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(769), 1, + ACTIONS(624), 1, + aux_sym_arg_instruction_token2, + [2572] = 2, + ACTIONS(626), 1, anon_sym_LF, - STATE(235), 1, - sym_comment, - [4625] = 4, - ACTIONS(3), 1, + ACTIONS(628), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(771), 1, - anon_sym_RBRACE, - STATE(236), 1, - sym_comment, - [4638] = 4, - ACTIONS(116), 1, + [2579] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(773), 1, + ACTIONS(630), 1, anon_sym_LF, - STATE(237), 1, - sym_comment, - [4651] = 4, - ACTIONS(3), 1, + [2586] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(775), 1, - anon_sym_RBRACE, - STATE(238), 1, - sym_comment, - [4664] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(777), 1, + ACTIONS(632), 1, anon_sym_LF, - STATE(239), 1, - sym_comment, - [4677] = 4, - ACTIONS(3), 1, + [2593] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(779), 1, - anon_sym_RBRACE, - STATE(240), 1, - sym_comment, - [4690] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(781), 1, + ACTIONS(634), 1, anon_sym_LF, - STATE(241), 1, - sym_comment, - [4703] = 4, - ACTIONS(3), 1, + [2600] = 2, + ACTIONS(129), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(783), 1, - anon_sym_RBRACE, - STATE(242), 1, - sym_comment, - [4716] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(785), 1, - sym__non_newline_whitespace, - STATE(243), 1, - sym_comment, - [4729] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(787), 1, - anon_sym_RBRACE, - STATE(244), 1, - sym_comment, - [4742] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(789), 1, - sym__non_newline_whitespace, - STATE(245), 1, - sym_comment, - [4755] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(791), 1, - anon_sym_RBRACE, - STATE(246), 1, - sym_comment, - [4768] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(793), 1, + ACTIONS(636), 1, anon_sym_LF, - STATE(247), 1, - sym_comment, - [4781] = 4, + [2607] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(638), 1, + anon_sym_LF, + [2614] = 2, ACTIONS(3), 1, sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(795), 1, - anon_sym_RBRACE, - STATE(248), 1, - sym_comment, - [4794] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(797), 1, - aux_sym_expansion_token1, - STATE(249), 1, - sym_comment, - [4807] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(799), 1, - anon_sym_EQ, - STATE(250), 1, - sym_comment, - [4820] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(801), 1, - aux_sym_expansion_token1, - STATE(251), 1, - sym_comment, - [4833] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(803), 1, - anon_sym_EQ, - STATE(252), 1, - sym_comment, - [4846] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(805), 1, - aux_sym_expansion_token1, - STATE(253), 1, - sym_comment, - [4859] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(807), 1, - aux_sym_expansion_token1, - STATE(254), 1, - sym_comment, - [4872] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(809), 1, - aux_sym_expansion_token1, - STATE(255), 1, - sym_comment, - [4885] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(811), 1, - aux_sym_expansion_token1, - STATE(256), 1, - sym_comment, - [4898] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(813), 1, - aux_sym_expansion_token1, - STATE(257), 1, - sym_comment, - [4911] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(815), 1, - aux_sym_expansion_token1, - STATE(258), 1, - sym_comment, - [4924] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(817), 1, - aux_sym_expansion_token1, - STATE(259), 1, - sym_comment, - [4937] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(819), 1, - aux_sym_expansion_token1, - STATE(260), 1, - sym_comment, - [4950] = 4, - ACTIONS(116), 1, - sym_line_continuation, - ACTIONS(118), 1, - anon_sym_POUND, - ACTIONS(821), 1, - aux_sym_expansion_token1, - STATE(261), 1, - sym_comment, - [4963] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(823), 1, - aux_sym_param_token1, - STATE(262), 1, - sym_comment, - [4976] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - anon_sym_POUND, - ACTIONS(825), 1, - aux_sym_param_token1, - STATE(263), 1, - sym_comment, - [4989] = 1, - ACTIONS(827), 1, + ACTIONS(640), 1, ts_builtin_sym_end, + [2621] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(642), 1, + aux_sym_maintainer_instruction_token2, + [2628] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(644), 1, + anon_sym_LF, + [2635] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(646), 1, + aux_sym_maintainer_instruction_token2, + [2642] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(648), 1, + aux_sym_maintainer_instruction_token2, + [2649] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(650), 1, + sym__non_newline_whitespace, + [2656] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(652), 1, + anon_sym_LF, + [2663] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(654), 1, + anon_sym_LF, + [2670] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(656), 1, + sym__non_newline_whitespace, + [2677] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(658), 1, + anon_sym_LF, + [2684] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(660), 1, + sym__non_newline_whitespace, + [2691] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(662), 1, + sym__non_newline_whitespace, + [2698] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(664), 1, + anon_sym_LF, + [2705] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(666), 1, + aux_sym_param_token1, + [2712] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(668), 1, + sym__non_newline_whitespace, + [2719] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(670), 1, + anon_sym_LF, + [2726] = 2, + ACTIONS(561), 1, + anon_sym_LF, + ACTIONS(672), 1, + sym_line_continuation, + [2733] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(674), 1, + aux_sym_maintainer_instruction_token2, + [2740] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(676), 1, + anon_sym_LF, + [2747] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(678), 1, + anon_sym_LF, + [2754] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(680), 1, + anon_sym_LF, + [2761] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(682), 1, + aux_sym_param_token2, + [2768] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(684), 1, + anon_sym_LF, + [2775] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(686), 1, + anon_sym_LF, + [2782] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(688), 1, + anon_sym_EQ, + [2789] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(690), 1, + sym__non_newline_whitespace, + [2796] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(692), 1, + sym__non_newline_whitespace, + [2803] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(694), 1, + sym__non_newline_whitespace, + [2810] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(696), 1, + sym__non_newline_whitespace, + [2817] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(698), 1, + sym__non_newline_whitespace, + [2824] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(590), 1, + anon_sym_EQ, + [2831] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(700), 1, + sym__non_newline_whitespace, + [2838] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(702), 1, + sym__non_newline_whitespace, + [2845] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(704), 1, + anon_sym_LF, + [2852] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(706), 1, + sym__non_newline_whitespace, + [2859] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(708), 1, + anon_sym_RBRACE, + [2866] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(710), 1, + sym__non_newline_whitespace, + [2873] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(712), 1, + anon_sym_RBRACE, + [2880] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(714), 1, + aux_sym_param_token2, + [2887] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(716), 1, + sym__non_newline_whitespace, + [2894] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(718), 1, + anon_sym_LF, + [2901] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(720), 1, + sym__non_newline_whitespace, + [2908] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(722), 1, + anon_sym_RBRACE, + [2915] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(724), 1, + aux_sym_param_token2, + [2922] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(726), 1, + sym__non_newline_whitespace, + [2929] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(728), 1, + anon_sym_EQ, + [2936] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(730), 1, + anon_sym_RBRACE, + [2943] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(732), 1, + anon_sym_LF, + [2950] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(734), 1, + anon_sym_RBRACE, + [2957] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(736), 1, + anon_sym_LF, + [2964] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(738), 1, + anon_sym_RBRACE, + [2971] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(740), 1, + anon_sym_LF, + [2978] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(742), 1, + anon_sym_RBRACE, + [2985] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(744), 1, + anon_sym_LF, + [2992] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(746), 1, + anon_sym_RBRACE, + [2999] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(748), 1, + anon_sym_LF, + [3006] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(750), 1, + anon_sym_RBRACE, + [3013] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(752), 1, + anon_sym_LF, + [3020] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(754), 1, + anon_sym_RBRACE, + [3027] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(756), 1, + sym__non_newline_whitespace, + [3034] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(758), 1, + anon_sym_RBRACE, + [3041] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(760), 1, + sym__non_newline_whitespace, + [3048] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(762), 1, + anon_sym_RBRACE, + [3055] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(764), 1, + aux_sym_expansion_token1, + [3062] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(766), 1, + anon_sym_EQ, + [3069] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(768), 1, + aux_sym_expansion_token1, + [3076] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(770), 1, + anon_sym_EQ, + [3083] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(772), 1, + aux_sym_expansion_token1, + [3090] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(774), 1, + aux_sym_expansion_token1, + [3097] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(776), 1, + aux_sym_expansion_token1, + [3104] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(778), 1, + aux_sym_expansion_token1, + [3111] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(780), 1, + aux_sym_expansion_token1, + [3118] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(782), 1, + aux_sym_expansion_token1, + [3125] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(784), 1, + aux_sym_expansion_token1, + [3132] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(786), 1, + aux_sym_expansion_token1, + [3139] = 2, + ACTIONS(129), 1, + sym_line_continuation, + ACTIONS(788), 1, + aux_sym_expansion_token1, + [3146] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(790), 1, + aux_sym_param_token1, + [3153] = 2, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(792), 1, + aux_sym_param_token1, }; static uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(2)] = 0, - [SMALL_STATE(3)] = 95, - [SMALL_STATE(4)] = 192, - [SMALL_STATE(5)] = 283, - [SMALL_STATE(6)] = 315, - [SMALL_STATE(7)] = 345, - [SMALL_STATE(8)] = 379, - [SMALL_STATE(9)] = 407, - [SMALL_STATE(10)] = 439, - [SMALL_STATE(11)] = 471, - [SMALL_STATE(12)] = 503, - [SMALL_STATE(13)] = 535, - [SMALL_STATE(14)] = 562, - [SMALL_STATE(15)] = 589, - [SMALL_STATE(16)] = 616, - [SMALL_STATE(17)] = 645, - [SMALL_STATE(18)] = 672, - [SMALL_STATE(19)] = 699, - [SMALL_STATE(20)] = 730, - [SMALL_STATE(21)] = 759, - [SMALL_STATE(22)] = 786, - [SMALL_STATE(23)] = 815, - [SMALL_STATE(24)] = 846, - [SMALL_STATE(25)] = 870, - [SMALL_STATE(26)] = 898, - [SMALL_STATE(27)] = 918, - [SMALL_STATE(28)] = 944, - [SMALL_STATE(29)] = 970, - [SMALL_STATE(30)] = 990, - [SMALL_STATE(31)] = 1016, - [SMALL_STATE(32)] = 1042, - [SMALL_STATE(33)] = 1070, - [SMALL_STATE(34)] = 1094, - [SMALL_STATE(35)] = 1120, - [SMALL_STATE(36)] = 1144, - [SMALL_STATE(37)] = 1172, - [SMALL_STATE(38)] = 1200, - [SMALL_STATE(39)] = 1228, - [SMALL_STATE(40)] = 1256, - [SMALL_STATE(41)] = 1284, - [SMALL_STATE(42)] = 1312, - [SMALL_STATE(43)] = 1340, - [SMALL_STATE(44)] = 1360, - [SMALL_STATE(45)] = 1388, - [SMALL_STATE(46)] = 1416, - [SMALL_STATE(47)] = 1444, - [SMALL_STATE(48)] = 1472, - [SMALL_STATE(49)] = 1500, - [SMALL_STATE(50)] = 1523, - [SMALL_STATE(51)] = 1542, - [SMALL_STATE(52)] = 1561, - [SMALL_STATE(53)] = 1580, - [SMALL_STATE(54)] = 1605, - [SMALL_STATE(55)] = 1628, - [SMALL_STATE(56)] = 1653, - [SMALL_STATE(57)] = 1678, - [SMALL_STATE(58)] = 1703, - [SMALL_STATE(59)] = 1724, - [SMALL_STATE(60)] = 1743, - [SMALL_STATE(61)] = 1768, - [SMALL_STATE(62)] = 1791, - [SMALL_STATE(63)] = 1810, - [SMALL_STATE(64)] = 1829, - [SMALL_STATE(65)] = 1854, - [SMALL_STATE(66)] = 1879, - [SMALL_STATE(67)] = 1904, - [SMALL_STATE(68)] = 1923, - [SMALL_STATE(69)] = 1948, - [SMALL_STATE(70)] = 1971, - [SMALL_STATE(71)] = 1990, - [SMALL_STATE(72)] = 2013, - [SMALL_STATE(73)] = 2032, - [SMALL_STATE(74)] = 2051, - [SMALL_STATE(75)] = 2076, - [SMALL_STATE(76)] = 2101, - [SMALL_STATE(77)] = 2120, - [SMALL_STATE(78)] = 2145, - [SMALL_STATE(79)] = 2164, - [SMALL_STATE(80)] = 2187, - [SMALL_STATE(81)] = 2209, - [SMALL_STATE(82)] = 2227, - [SMALL_STATE(83)] = 2249, - [SMALL_STATE(84)] = 2271, - [SMALL_STATE(85)] = 2287, - [SMALL_STATE(86)] = 2309, - [SMALL_STATE(87)] = 2331, - [SMALL_STATE(88)] = 2353, - [SMALL_STATE(89)] = 2369, - [SMALL_STATE(90)] = 2391, - [SMALL_STATE(91)] = 2409, - [SMALL_STATE(92)] = 2431, - [SMALL_STATE(93)] = 2449, - [SMALL_STATE(94)] = 2465, - [SMALL_STATE(95)] = 2485, - [SMALL_STATE(96)] = 2503, - [SMALL_STATE(97)] = 2523, - [SMALL_STATE(98)] = 2545, - [SMALL_STATE(99)] = 2567, - [SMALL_STATE(100)] = 2585, - [SMALL_STATE(101)] = 2605, - [SMALL_STATE(102)] = 2623, - [SMALL_STATE(103)] = 2641, - [SMALL_STATE(104)] = 2663, - [SMALL_STATE(105)] = 2685, - [SMALL_STATE(106)] = 2707, - [SMALL_STATE(107)] = 2729, - [SMALL_STATE(108)] = 2751, - [SMALL_STATE(109)] = 2769, - [SMALL_STATE(110)] = 2786, - [SMALL_STATE(111)] = 2805, - [SMALL_STATE(112)] = 2822, - [SMALL_STATE(113)] = 2839, - [SMALL_STATE(114)] = 2856, - [SMALL_STATE(115)] = 2873, - [SMALL_STATE(116)] = 2892, - [SMALL_STATE(117)] = 2909, - [SMALL_STATE(118)] = 2926, - [SMALL_STATE(119)] = 2943, - [SMALL_STATE(120)] = 2962, - [SMALL_STATE(121)] = 2979, - [SMALL_STATE(122)] = 2996, - [SMALL_STATE(123)] = 3013, - [SMALL_STATE(124)] = 3032, - [SMALL_STATE(125)] = 3049, - [SMALL_STATE(126)] = 3066, - [SMALL_STATE(127)] = 3085, - [SMALL_STATE(128)] = 3100, - [SMALL_STATE(129)] = 3119, - [SMALL_STATE(130)] = 3136, - [SMALL_STATE(131)] = 3153, - [SMALL_STATE(132)] = 3170, - [SMALL_STATE(133)] = 3186, - [SMALL_STATE(134)] = 3202, - [SMALL_STATE(135)] = 3218, - [SMALL_STATE(136)] = 3234, - [SMALL_STATE(137)] = 3250, - [SMALL_STATE(138)] = 3266, - [SMALL_STATE(139)] = 3282, - [SMALL_STATE(140)] = 3296, - [SMALL_STATE(141)] = 3312, - [SMALL_STATE(142)] = 3328, - [SMALL_STATE(143)] = 3344, - [SMALL_STATE(144)] = 3360, - [SMALL_STATE(145)] = 3376, - [SMALL_STATE(146)] = 3392, - [SMALL_STATE(147)] = 3406, - [SMALL_STATE(148)] = 3422, - [SMALL_STATE(149)] = 3438, - [SMALL_STATE(150)] = 3452, - [SMALL_STATE(151)] = 3468, - [SMALL_STATE(152)] = 3484, - [SMALL_STATE(153)] = 3500, - [SMALL_STATE(154)] = 3512, - [SMALL_STATE(155)] = 3528, - [SMALL_STATE(156)] = 3544, - [SMALL_STATE(157)] = 3560, - [SMALL_STATE(158)] = 3576, - [SMALL_STATE(159)] = 3592, - [SMALL_STATE(160)] = 3608, - [SMALL_STATE(161)] = 3624, - [SMALL_STATE(162)] = 3638, - [SMALL_STATE(163)] = 3654, - [SMALL_STATE(164)] = 3670, - [SMALL_STATE(165)] = 3686, - [SMALL_STATE(166)] = 3702, - [SMALL_STATE(167)] = 3716, - [SMALL_STATE(168)] = 3732, - [SMALL_STATE(169)] = 3746, - [SMALL_STATE(170)] = 3760, - [SMALL_STATE(171)] = 3776, - [SMALL_STATE(172)] = 3790, - [SMALL_STATE(173)] = 3806, - [SMALL_STATE(174)] = 3819, - [SMALL_STATE(175)] = 3832, - [SMALL_STATE(176)] = 3845, - [SMALL_STATE(177)] = 3858, - [SMALL_STATE(178)] = 3871, - [SMALL_STATE(179)] = 3884, - [SMALL_STATE(180)] = 3897, - [SMALL_STATE(181)] = 3910, - [SMALL_STATE(182)] = 3923, - [SMALL_STATE(183)] = 3936, - [SMALL_STATE(184)] = 3949, - [SMALL_STATE(185)] = 3962, - [SMALL_STATE(186)] = 3975, - [SMALL_STATE(187)] = 3988, - [SMALL_STATE(188)] = 4001, - [SMALL_STATE(189)] = 4014, - [SMALL_STATE(190)] = 4027, - [SMALL_STATE(191)] = 4040, - [SMALL_STATE(192)] = 4053, - [SMALL_STATE(193)] = 4066, - [SMALL_STATE(194)] = 4079, - [SMALL_STATE(195)] = 4092, - [SMALL_STATE(196)] = 4105, - [SMALL_STATE(197)] = 4118, - [SMALL_STATE(198)] = 4131, - [SMALL_STATE(199)] = 4144, - [SMALL_STATE(200)] = 4157, - [SMALL_STATE(201)] = 4170, - [SMALL_STATE(202)] = 4183, - [SMALL_STATE(203)] = 4196, - [SMALL_STATE(204)] = 4209, - [SMALL_STATE(205)] = 4222, - [SMALL_STATE(206)] = 4235, - [SMALL_STATE(207)] = 4248, - [SMALL_STATE(208)] = 4261, - [SMALL_STATE(209)] = 4274, - [SMALL_STATE(210)] = 4287, - [SMALL_STATE(211)] = 4300, - [SMALL_STATE(212)] = 4313, - [SMALL_STATE(213)] = 4326, - [SMALL_STATE(214)] = 4339, - [SMALL_STATE(215)] = 4352, - [SMALL_STATE(216)] = 4365, - [SMALL_STATE(217)] = 4378, - [SMALL_STATE(218)] = 4391, - [SMALL_STATE(219)] = 4404, - [SMALL_STATE(220)] = 4417, - [SMALL_STATE(221)] = 4430, - [SMALL_STATE(222)] = 4443, - [SMALL_STATE(223)] = 4456, - [SMALL_STATE(224)] = 4469, - [SMALL_STATE(225)] = 4482, - [SMALL_STATE(226)] = 4495, - [SMALL_STATE(227)] = 4508, - [SMALL_STATE(228)] = 4521, - [SMALL_STATE(229)] = 4534, - [SMALL_STATE(230)] = 4547, - [SMALL_STATE(231)] = 4560, - [SMALL_STATE(232)] = 4573, - [SMALL_STATE(233)] = 4586, - [SMALL_STATE(234)] = 4599, - [SMALL_STATE(235)] = 4612, - [SMALL_STATE(236)] = 4625, - [SMALL_STATE(237)] = 4638, - [SMALL_STATE(238)] = 4651, - [SMALL_STATE(239)] = 4664, - [SMALL_STATE(240)] = 4677, - [SMALL_STATE(241)] = 4690, - [SMALL_STATE(242)] = 4703, - [SMALL_STATE(243)] = 4716, - [SMALL_STATE(244)] = 4729, - [SMALL_STATE(245)] = 4742, - [SMALL_STATE(246)] = 4755, - [SMALL_STATE(247)] = 4768, - [SMALL_STATE(248)] = 4781, - [SMALL_STATE(249)] = 4794, - [SMALL_STATE(250)] = 4807, - [SMALL_STATE(251)] = 4820, - [SMALL_STATE(252)] = 4833, - [SMALL_STATE(253)] = 4846, - [SMALL_STATE(254)] = 4859, - [SMALL_STATE(255)] = 4872, - [SMALL_STATE(256)] = 4885, - [SMALL_STATE(257)] = 4898, - [SMALL_STATE(258)] = 4911, - [SMALL_STATE(259)] = 4924, - [SMALL_STATE(260)] = 4937, - [SMALL_STATE(261)] = 4950, - [SMALL_STATE(262)] = 4963, - [SMALL_STATE(263)] = 4976, - [SMALL_STATE(264)] = 4989, + [SMALL_STATE(3)] = 93, + [SMALL_STATE(4)] = 186, + [SMALL_STATE(5)] = 269, + [SMALL_STATE(6)] = 296, + [SMALL_STATE(7)] = 320, + [SMALL_STATE(8)] = 342, + [SMALL_STATE(9)] = 364, + [SMALL_STATE(10)] = 386, + [SMALL_STATE(11)] = 408, + [SMALL_STATE(12)] = 430, + [SMALL_STATE(13)] = 452, + [SMALL_STATE(14)] = 476, + [SMALL_STATE(15)] = 502, + [SMALL_STATE(16)] = 523, + [SMALL_STATE(17)] = 544, + [SMALL_STATE(18)] = 565, + [SMALL_STATE(19)] = 586, + [SMALL_STATE(20)] = 607, + [SMALL_STATE(21)] = 628, + [SMALL_STATE(22)] = 649, + [SMALL_STATE(23)] = 670, + [SMALL_STATE(24)] = 691, + [SMALL_STATE(25)] = 711, + [SMALL_STATE(26)] = 731, + [SMALL_STATE(27)] = 749, + [SMALL_STATE(28)] = 767, + [SMALL_STATE(29)] = 781, + [SMALL_STATE(30)] = 799, + [SMALL_STATE(31)] = 819, + [SMALL_STATE(32)] = 839, + [SMALL_STATE(33)] = 857, + [SMALL_STATE(34)] = 877, + [SMALL_STATE(35)] = 899, + [SMALL_STATE(36)] = 921, + [SMALL_STATE(37)] = 943, + [SMALL_STATE(38)] = 963, + [SMALL_STATE(39)] = 981, + [SMALL_STATE(40)] = 1001, + [SMALL_STATE(41)] = 1021, + [SMALL_STATE(42)] = 1039, + [SMALL_STATE(43)] = 1059, + [SMALL_STATE(44)] = 1081, + [SMALL_STATE(45)] = 1101, + [SMALL_STATE(46)] = 1121, + [SMALL_STATE(47)] = 1141, + [SMALL_STATE(48)] = 1163, + [SMALL_STATE(49)] = 1177, + [SMALL_STATE(50)] = 1190, + [SMALL_STATE(51)] = 1203, + [SMALL_STATE(52)] = 1220, + [SMALL_STATE(53)] = 1235, + [SMALL_STATE(54)] = 1248, + [SMALL_STATE(55)] = 1265, + [SMALL_STATE(56)] = 1278, + [SMALL_STATE(57)] = 1295, + [SMALL_STATE(58)] = 1312, + [SMALL_STATE(59)] = 1325, + [SMALL_STATE(60)] = 1342, + [SMALL_STATE(61)] = 1355, + [SMALL_STATE(62)] = 1368, + [SMALL_STATE(63)] = 1381, + [SMALL_STATE(64)] = 1396, + [SMALL_STATE(65)] = 1413, + [SMALL_STATE(66)] = 1432, + [SMALL_STATE(67)] = 1449, + [SMALL_STATE(68)] = 1466, + [SMALL_STATE(69)] = 1483, + [SMALL_STATE(70)] = 1500, + [SMALL_STATE(71)] = 1517, + [SMALL_STATE(72)] = 1534, + [SMALL_STATE(73)] = 1551, + [SMALL_STATE(74)] = 1568, + [SMALL_STATE(75)] = 1585, + [SMALL_STATE(76)] = 1602, + [SMALL_STATE(77)] = 1616, + [SMALL_STATE(78)] = 1632, + [SMALL_STATE(79)] = 1648, + [SMALL_STATE(80)] = 1660, + [SMALL_STATE(81)] = 1676, + [SMALL_STATE(82)] = 1692, + [SMALL_STATE(83)] = 1706, + [SMALL_STATE(84)] = 1722, + [SMALL_STATE(85)] = 1738, + [SMALL_STATE(86)] = 1748, + [SMALL_STATE(87)] = 1758, + [SMALL_STATE(88)] = 1772, + [SMALL_STATE(89)] = 1786, + [SMALL_STATE(90)] = 1800, + [SMALL_STATE(91)] = 1814, + [SMALL_STATE(92)] = 1826, + [SMALL_STATE(93)] = 1838, + [SMALL_STATE(94)] = 1854, + [SMALL_STATE(95)] = 1866, + [SMALL_STATE(96)] = 1880, + [SMALL_STATE(97)] = 1894, + [SMALL_STATE(98)] = 1910, + [SMALL_STATE(99)] = 1926, + [SMALL_STATE(100)] = 1938, + [SMALL_STATE(101)] = 1954, + [SMALL_STATE(102)] = 1970, + [SMALL_STATE(103)] = 1981, + [SMALL_STATE(104)] = 1992, + [SMALL_STATE(105)] = 2005, + [SMALL_STATE(106)] = 2018, + [SMALL_STATE(107)] = 2027, + [SMALL_STATE(108)] = 2040, + [SMALL_STATE(109)] = 2051, + [SMALL_STATE(110)] = 2062, + [SMALL_STATE(111)] = 2073, + [SMALL_STATE(112)] = 2086, + [SMALL_STATE(113)] = 2099, + [SMALL_STATE(114)] = 2112, + [SMALL_STATE(115)] = 2125, + [SMALL_STATE(116)] = 2136, + [SMALL_STATE(117)] = 2147, + [SMALL_STATE(118)] = 2158, + [SMALL_STATE(119)] = 2169, + [SMALL_STATE(120)] = 2180, + [SMALL_STATE(121)] = 2190, + [SMALL_STATE(122)] = 2200, + [SMALL_STATE(123)] = 2210, + [SMALL_STATE(124)] = 2220, + [SMALL_STATE(125)] = 2230, + [SMALL_STATE(126)] = 2240, + [SMALL_STATE(127)] = 2248, + [SMALL_STATE(128)] = 2258, + [SMALL_STATE(129)] = 2268, + [SMALL_STATE(130)] = 2278, + [SMALL_STATE(131)] = 2288, + [SMALL_STATE(132)] = 2298, + [SMALL_STATE(133)] = 2306, + [SMALL_STATE(134)] = 2316, + [SMALL_STATE(135)] = 2326, + [SMALL_STATE(136)] = 2336, + [SMALL_STATE(137)] = 2346, + [SMALL_STATE(138)] = 2356, + [SMALL_STATE(139)] = 2366, + [SMALL_STATE(140)] = 2376, + [SMALL_STATE(141)] = 2386, + [SMALL_STATE(142)] = 2396, + [SMALL_STATE(143)] = 2406, + [SMALL_STATE(144)] = 2416, + [SMALL_STATE(145)] = 2426, + [SMALL_STATE(146)] = 2436, + [SMALL_STATE(147)] = 2444, + [SMALL_STATE(148)] = 2454, + [SMALL_STATE(149)] = 2464, + [SMALL_STATE(150)] = 2474, + [SMALL_STATE(151)] = 2484, + [SMALL_STATE(152)] = 2494, + [SMALL_STATE(153)] = 2504, + [SMALL_STATE(154)] = 2512, + [SMALL_STATE(155)] = 2520, + [SMALL_STATE(156)] = 2530, + [SMALL_STATE(157)] = 2537, + [SMALL_STATE(158)] = 2544, + [SMALL_STATE(159)] = 2551, + [SMALL_STATE(160)] = 2558, + [SMALL_STATE(161)] = 2565, + [SMALL_STATE(162)] = 2572, + [SMALL_STATE(163)] = 2579, + [SMALL_STATE(164)] = 2586, + [SMALL_STATE(165)] = 2593, + [SMALL_STATE(166)] = 2600, + [SMALL_STATE(167)] = 2607, + [SMALL_STATE(168)] = 2614, + [SMALL_STATE(169)] = 2621, + [SMALL_STATE(170)] = 2628, + [SMALL_STATE(171)] = 2635, + [SMALL_STATE(172)] = 2642, + [SMALL_STATE(173)] = 2649, + [SMALL_STATE(174)] = 2656, + [SMALL_STATE(175)] = 2663, + [SMALL_STATE(176)] = 2670, + [SMALL_STATE(177)] = 2677, + [SMALL_STATE(178)] = 2684, + [SMALL_STATE(179)] = 2691, + [SMALL_STATE(180)] = 2698, + [SMALL_STATE(181)] = 2705, + [SMALL_STATE(182)] = 2712, + [SMALL_STATE(183)] = 2719, + [SMALL_STATE(184)] = 2726, + [SMALL_STATE(185)] = 2733, + [SMALL_STATE(186)] = 2740, + [SMALL_STATE(187)] = 2747, + [SMALL_STATE(188)] = 2754, + [SMALL_STATE(189)] = 2761, + [SMALL_STATE(190)] = 2768, + [SMALL_STATE(191)] = 2775, + [SMALL_STATE(192)] = 2782, + [SMALL_STATE(193)] = 2789, + [SMALL_STATE(194)] = 2796, + [SMALL_STATE(195)] = 2803, + [SMALL_STATE(196)] = 2810, + [SMALL_STATE(197)] = 2817, + [SMALL_STATE(198)] = 2824, + [SMALL_STATE(199)] = 2831, + [SMALL_STATE(200)] = 2838, + [SMALL_STATE(201)] = 2845, + [SMALL_STATE(202)] = 2852, + [SMALL_STATE(203)] = 2859, + [SMALL_STATE(204)] = 2866, + [SMALL_STATE(205)] = 2873, + [SMALL_STATE(206)] = 2880, + [SMALL_STATE(207)] = 2887, + [SMALL_STATE(208)] = 2894, + [SMALL_STATE(209)] = 2901, + [SMALL_STATE(210)] = 2908, + [SMALL_STATE(211)] = 2915, + [SMALL_STATE(212)] = 2922, + [SMALL_STATE(213)] = 2929, + [SMALL_STATE(214)] = 2936, + [SMALL_STATE(215)] = 2943, + [SMALL_STATE(216)] = 2950, + [SMALL_STATE(217)] = 2957, + [SMALL_STATE(218)] = 2964, + [SMALL_STATE(219)] = 2971, + [SMALL_STATE(220)] = 2978, + [SMALL_STATE(221)] = 2985, + [SMALL_STATE(222)] = 2992, + [SMALL_STATE(223)] = 2999, + [SMALL_STATE(224)] = 3006, + [SMALL_STATE(225)] = 3013, + [SMALL_STATE(226)] = 3020, + [SMALL_STATE(227)] = 3027, + [SMALL_STATE(228)] = 3034, + [SMALL_STATE(229)] = 3041, + [SMALL_STATE(230)] = 3048, + [SMALL_STATE(231)] = 3055, + [SMALL_STATE(232)] = 3062, + [SMALL_STATE(233)] = 3069, + [SMALL_STATE(234)] = 3076, + [SMALL_STATE(235)] = 3083, + [SMALL_STATE(236)] = 3090, + [SMALL_STATE(237)] = 3097, + [SMALL_STATE(238)] = 3104, + [SMALL_STATE(239)] = 3111, + [SMALL_STATE(240)] = 3118, + [SMALL_STATE(241)] = 3125, + [SMALL_STATE(242)] = 3132, + [SMALL_STATE(243)] = 3139, + [SMALL_STATE(244)] = 3146, + [SMALL_STATE(245)] = 3153, }; static TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(230), - [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(227), - [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(225), - [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(222), - [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(79), - [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(220), - [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(219), - [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(218), - [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(217), - [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(212), - [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(211), - [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(200), - [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(197), - [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(195), - [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(193), - [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(190), - [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(189), - [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(188), - [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(187), - [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [108] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1), - [110] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1), - [112] = {.entry = {.count = 1, .reusable = false}}, SHIFT(164), - [114] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [116] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [124] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2), - [126] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), - [128] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(164), - [131] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(43), - [134] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2), - [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(132), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(59), - [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), - [168] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(134), - [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), - [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(63), - [176] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(63), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1), - [181] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [183] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1), - [185] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(160), - [188] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(51), - [191] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(51), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2), - [198] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [200] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), - [202] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [204] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), - [206] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(170), - [209] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(58), - [212] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [214] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [216] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), - [218] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), - [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}}, REDUCE(sym_path, 1), - [226] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [228] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), - [230] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2), - [232] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), - [234] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), - [236] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(156), - [239] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), - [241] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(90), - [244] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(90), - [247] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), - [249] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), - [251] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(143), - [254] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(92), - [257] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2), - [259] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2), - [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [265] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), - [267] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(84), - [270] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(172), - [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), - [281] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(95), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(170), - [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), - [289] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(139), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [297] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [299] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, .production_id = 1), - [301] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, .production_id = 1), - [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 1), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 1), - [313] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [315] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 3, .production_id = 3), - [319] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [321] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [323] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [327] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(137), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(130), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 1), - [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(121), - [348] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(167), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(195), + [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(212), + [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(209), + [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(207), + [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(63), + [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(204), + [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(202), + [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(157), + [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(200), + [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(199), + [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(194), + [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(193), + [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(182), + [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(179), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(178), + [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(176), + [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(173), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(172), + [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(171), + [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(169), + [111] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [113] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [115] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [117] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [119] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [121] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1), + [123] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1), + [125] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [127] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [129] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [131] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2), + [133] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), + [135] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(133), + [138] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2), SHIFT_REPEAT(9), + [141] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [143] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [149] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), + [151] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2), + [155] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2), + [157] = {.entry = {.count = 1, .reusable = false}}, SHIFT(122), + [159] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), + [165] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1), + [167] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), + [173] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(122), + [176] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2), SHIFT_REPEAT(17), + [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), + [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(151), + [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), + [186] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(18), + [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [195] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(143), + [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2), SHIFT_REPEAT(23), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), + [205] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(124), + [208] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2), SHIFT_REPEAT(24), + [211] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(154), + [215] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2), + [221] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [223] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1), + [227] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), + [235] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), SHIFT_REPEAT(185), + [238] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(129), + [241] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), + [243] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(30), + [246] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2), SHIFT_REPEAT(30), + [249] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [253] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [255] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), + [259] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [261] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [265] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [277] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [279] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), + [281] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(38), + [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(149), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [289] = {.entry = {.count = 1, .reusable = false}}, SHIFT(141), + [291] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [293] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [295] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), + [297] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(144), + [300] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2), SHIFT_REPEAT(52), + [303] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 3, .production_id = 3), + [309] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [311] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), + [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(79), + [318] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__user_name_group, 2), SHIFT_REPEAT(144), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2), + [325] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, .production_id = 1), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, .production_id = 1), + [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 4), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 4), + [341] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1), + [349] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), [351] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 5, .production_id = 11), - [355] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [357] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1), - [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(114), - [363] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 1), - [365] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 1), - [367] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1), - [369] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [371] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 2), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(112), - [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(135), - [381] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), - [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2), SHIFT_REPEAT(203), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1), - [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(118), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [398] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(118), - [401] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(144), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2), SHIFT_REPEAT(182), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [413] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 3), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 3), - [425] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), - [427] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), - [429] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [431] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 1), - [433] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [437] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 1), - [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 1), - [443] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 1), - [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_fragment, 1), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [449] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 1), - [453] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__user_name_group, 1), - [455] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), - [457] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), SHIFT_REPEAT(263), - [460] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), - [462] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), SHIFT_REPEAT(127), - [465] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2), - [469] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2), SHIFT_REPEAT(209), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [474] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [476] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 5), - [478] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 5), - [480] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3), - [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), SHIFT_REPEAT(142), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), - [489] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 1), - [491] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 1), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), - [495] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 1), - [497] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2), - [499] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), - [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), SHIFT_REPEAT(103), - [508] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 1), - [510] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [512] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [514] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 4), - [516] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [518] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), - [520] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 1), - [522] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [524] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [526] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 1), - [528] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 1), - [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [532] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [534] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [536] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [540] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [542] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1), - [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [546] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [548] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [550] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, .production_id = 8), - [552] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, .production_id = 8), - [554] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 3, .production_id = 4), - [558] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3), - [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [568] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), - [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), - [576] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, .production_id = 13), - [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 1), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 1), - [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 2), - [586] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), SHIFT_REPEAT(21), - [589] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2), - [591] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, .production_id = 9), - [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, .production_id = 9), - [595] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4), - [597] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [599] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_line, 2), - [601] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, .production_id = 10), - [603] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, .production_id = 10), - [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [607] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [609] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, .production_id = 13), - [611] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [613] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [615] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [617] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [619] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 6), - [621] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 6), - [623] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 1), - [625] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 1), - [627] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [629] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [631] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__env_key, 1), - [633] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [635] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [637] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 1), - [639] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [641] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [643] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [645] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [647] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 3), - [649] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 6, .production_id = 14), - [651] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anon_comment, 2), - [653] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 4), - [655] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 3), - [657] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 3), - [659] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 6), - [663] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 6), - [665] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__instruction, 1), - [667] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [669] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 5, .production_id = 12), - [671] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [673] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5), - [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, .production_id = 10), - [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2), - [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [701] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [705] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(175), - [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 3), - [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3), - [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, .production_id = 7), - [715] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [717] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 4), - [719] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [727] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [729] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [739] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 2), - [743] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [747] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [757] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [761] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 3), - [763] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [765] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3), - [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [769] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 3), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [773] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 3), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [777] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 3), - [779] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [781] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 3), - [783] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), - [785] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [787] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [789] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [791] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [793] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3, .production_id = 2), - [795] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [797] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [801] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [803] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [805] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [807] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), - [809] = {.entry = {.count = 1, .reusable = false}}, SHIFT(236), - [811] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), - [813] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [815] = {.entry = {.count = 1, .reusable = false}}, SHIFT(242), - [817] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [819] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [821] = {.entry = {.count = 1, .reusable = false}}, SHIFT(248), - [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [825] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [827] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(54), + [356] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(152), + [359] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1), + [361] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [363] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), + [365] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value, 2), + [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(57), + [370] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__stopsignal_value, 2), SHIFT_REPEAT(155), + [373] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2), + [375] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [377] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [379] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [381] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(64), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2), SHIFT_REPEAT(147), + [389] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 5, .production_id = 11), + [391] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1), + [393] = {.entry = {.count = 1, .reusable = false}}, SHIFT(59), + [395] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3), + [397] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), + [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [403] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 3), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(57), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2), + [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(128), + [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_alias_repeat1, 2), SHIFT_REPEAT(70), + [417] = {.entry = {.count = 1, .reusable = false}}, SHIFT(64), + [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2), SHIFT_REPEAT(198), + [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 3), + [428] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), + [430] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_group, 1), + [432] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__user_name_group, 1), + [434] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [442] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_fragment, 1), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [446] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1), + [448] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), + [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_healthcheck_instruction_repeat1, 2), SHIFT_REPEAT(245), + [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(89), + [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(192), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [471] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 5), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 5), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), + [481] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), SHIFT_REPEAT(120), + [484] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_array_repeat1, 2), + [486] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__comment_line, 2), + [488] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), + [490] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2), SHIFT_REPEAT(100), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [505] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 4), + [507] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2), + [511] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1), + [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, .production_id = 8), + [529] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, .production_id = 8), + [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3), + [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [545] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 3, .production_id = 4), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3), + [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, .production_id = 13), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [559] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 2), + [563] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), SHIFT_REPEAT(13), + [566] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, .production_id = 9), + [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, .production_id = 9), + [570] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2), + [572] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, .production_id = 10), + [574] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, .production_id = 10), + [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, .production_id = 13), + [578] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, .production_id = 6), + [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, .production_id = 6), + [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [586] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [590] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [596] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [602] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [612] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [614] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__anon_comment, 2), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 4), + [620] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 3, .production_id = 2), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [626] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat2, 3), + [628] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 3), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 5, .production_id = 12), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5), + [634] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 6), + [636] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 6), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [640] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [642] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), + [644] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5), + [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(177), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2), + [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, .production_id = 10), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [672] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat2, 2), + [674] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 3), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3), + [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, .production_id = 7), + [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [684] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 4), + [686] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 3), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 6, .production_id = 14), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_array, 2), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [732] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 3), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [736] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [740] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 3), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [744] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 3), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [748] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 3), + [750] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [752] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 3), + [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [762] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [764] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [768] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [772] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [776] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [784] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [788] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), }; #ifdef __cplusplus