diff --git a/grammar.js b/grammar.js index 2b1109c..39e32e0 100644 --- a/grammar.js +++ b/grammar.js @@ -4,9 +4,9 @@ module.exports = grammar({ extras: ($) => [/\s+/, $.line_continuation, $.comment], externals: ($) => [ $.heredoc_marker, - $.heredoc_line, + $._heredoc_line, $.heredoc_end, - $.heredoc_nl, + $._heredoc_nl, $.error_sentinel, ], @@ -210,8 +210,8 @@ module.exports = grammar({ // \n if there's at least one open heredoc to avoid conflicts. // We also alias this token to hide it from the output like all other // whitespace. - alias($.heredoc_nl, "_heredoc_nl"), - repeat(seq($.heredoc_line, "\n")), + $._heredoc_nl, + repeat(seq($._heredoc_line, "\n")), $.heredoc_end ), @@ -373,16 +373,16 @@ module.exports = grammar({ shell_command: ($) => seq( - $.shell_fragment, + $._shell_fragment, repeat( seq( alias($.required_line_continuation, $.line_continuation), - $.shell_fragment + $._shell_fragment ) ) ), - shell_fragment: ($) => repeat1( + _shell_fragment: ($) => repeat1( choice( // A shell fragment is broken into the same tokens as other // constructs because the lexer prefers the longer tokens @@ -486,6 +486,6 @@ module.exports = grammar({ _non_newline_whitespace: () => token.immediate(/[\t ]+/), - comment: () => /#.*/, + comment: () => /#.*\n/, }, }); diff --git a/queries/highlights.scm b/queries/highlights.scm index a5d6514..9c4388f 100644 --- a/queries/highlights.scm +++ b/queries/highlights.scm @@ -41,7 +41,7 @@ (double_quoted_string) (single_quoted_string) (json_string) - (heredoc_line) + (heredoc_block) ] @string (expansion diff --git a/src/grammar.json b/src/grammar.json index 26bb74f..eae48fd 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -877,13 +877,8 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "heredoc_nl" - }, - "named": false, - "value": "_heredoc_nl" + "type": "SYMBOL", + "name": "_heredoc_nl" }, { "type": "REPEAT", @@ -892,7 +887,7 @@ "members": [ { "type": "SYMBOL", - "name": "heredoc_line" + "name": "_heredoc_line" }, { "type": "STRING", @@ -1585,7 +1580,7 @@ "members": [ { "type": "SYMBOL", - "name": "shell_fragment" + "name": "_shell_fragment" }, { "type": "REPEAT", @@ -1603,14 +1598,14 @@ }, { "type": "SYMBOL", - "name": "shell_fragment" + "name": "_shell_fragment" } ] } } ] }, - "shell_fragment": { + "_shell_fragment": { "type": "REPEAT1", "content": { "type": "CHOICE", @@ -1898,7 +1893,7 @@ }, "comment": { "type": "PATTERN", - "value": "#.*" + "value": "#.*\\n" } }, "extras": [ @@ -1924,7 +1919,7 @@ }, { "type": "SYMBOL", - "name": "heredoc_line" + "name": "_heredoc_line" }, { "type": "SYMBOL", @@ -1932,7 +1927,7 @@ }, { "type": "SYMBOL", - "name": "heredoc_nl" + "name": "_heredoc_nl" }, { "type": "SYMBOL", @@ -1940,5 +1935,6 @@ } ], "inline": [], - "supertypes": [] -} + "supertypes": [], + "reserved": {} +} \ No newline at end of file diff --git a/src/node-types.json b/src/node-types.json index 6dc2763..53f08c6 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -283,16 +283,12 @@ "named": true, "fields": {}, "children": { - "multiple": true, + "multiple": false, "required": true, "types": [ { "type": "heredoc_end", "named": true - }, - { - "type": "heredoc_line", - "named": true } ] } @@ -668,29 +664,14 @@ "fields": {}, "children": { "multiple": true, - "required": true, + "required": false, "types": [ { - "type": "line_continuation", + "type": "heredoc_marker", "named": true }, { - "type": "shell_fragment", - "named": true - } - ] - } - }, - { - "type": "shell_fragment", - "named": true, - "fields": {}, - "children": { - "multiple": true, - "required": false, - "types": [ - { - "type": "heredoc_marker", + "type": "line_continuation", "named": true } ] @@ -1048,13 +1029,10 @@ "type": "]", "named": false }, - { - "type": "_heredoc_nl", - "named": false - }, { "type": "comment", - "named": true + "named": true, + "extra": true }, { "type": "escape_sequence", @@ -1064,17 +1042,14 @@ "type": "heredoc_end", "named": true }, - { - "type": "heredoc_line", - "named": true - }, { "type": "heredoc_marker", "named": true }, { "type": "line_continuation", - "named": true + "named": true, + "extra": true }, { "type": "mount", diff --git a/src/parser.c b/src/parser.c index 6ef71ad..164a3cb 100644 --- a/src/parser.c +++ b/src/parser.c @@ -1,19 +1,23 @@ +/* Automatically generated by tree-sitter v0.25.3 (2a835ee029dca1c325e6f1c01dbce40396f6123e) */ + #include "tree_sitter/parser.h" #if defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic ignored "-Wmissing-field-initializers" #endif -#define LANGUAGE_VERSION 14 -#define STATE_COUNT 325 +#define LANGUAGE_VERSION 15 +#define STATE_COUNT 323 #define LARGE_STATE_COUNT 2 -#define SYMBOL_COUNT 164 +#define SYMBOL_COUNT 163 #define ALIAS_COUNT 0 #define TOKEN_COUNT 87 #define EXTERNAL_TOKEN_COUNT 5 #define FIELD_COUNT 9 #define MAX_ALIAS_SEQUENCE_LENGTH 5 +#define MAX_RESERVED_WORD_SET_SIZE 0 #define PRODUCTION_ID_COUNT 16 +#define SUPERTYPE_COUNT 0 enum ts_symbol_identifiers { anon_sym_LF = 1, @@ -75,10 +79,10 @@ enum ts_symbol_identifiers { aux_sym_mount_param_param_token1 = 57, aux_sym_image_alias_token1 = 58, aux_sym_image_alias_token2 = 59, - aux_sym_shell_fragment_token1 = 60, - aux_sym_shell_fragment_token2 = 61, - aux_sym_shell_fragment_token3 = 62, - aux_sym_shell_fragment_token4 = 63, + aux_sym__shell_fragment_token1 = 60, + aux_sym__shell_fragment_token2 = 61, + aux_sym__shell_fragment_token3 = 62, + aux_sym__shell_fragment_token4 = 63, sym_line_continuation = 64, sym_required_line_continuation = 65, anon_sym_LBRACK = 66, @@ -98,9 +102,9 @@ enum ts_symbol_identifiers { sym__non_newline_whitespace = 80, sym_comment = 81, sym_heredoc_marker = 82, - sym_heredoc_line = 83, + sym__heredoc_line = 83, sym_heredoc_end = 84, - sym_heredoc_nl = 85, + sym__heredoc_nl = 85, sym_error_sentinel = 86, sym_source_file = 87, sym__instruction = 88, @@ -148,7 +152,7 @@ enum ts_symbol_identifiers { sym_mount_param_param = 130, sym_image_alias = 131, sym_shell_command = 132, - sym_shell_fragment = 133, + aux_sym__shell_fragment = 133, sym_json_string_array = 134, sym_json_string = 135, sym_double_quoted_string = 136, @@ -173,12 +177,11 @@ enum ts_symbol_identifiers { aux_sym_mount_param_repeat1 = 155, aux_sym_image_alias_repeat1 = 156, aux_sym_shell_command_repeat1 = 157, - aux_sym_shell_fragment_repeat1 = 158, - aux_sym_json_string_array_repeat1 = 159, - aux_sym_json_string_repeat1 = 160, - aux_sym_double_quoted_string_repeat1 = 161, - aux_sym_single_quoted_string_repeat1 = 162, - aux_sym_unquoted_string_repeat1 = 163, + aux_sym_json_string_array_repeat1 = 158, + aux_sym_json_string_repeat1 = 159, + aux_sym_double_quoted_string_repeat1 = 160, + aux_sym_single_quoted_string_repeat1 = 161, + aux_sym_unquoted_string_repeat1 = 162, }; static const char * const ts_symbol_names[] = { @@ -242,10 +245,10 @@ static const char * const ts_symbol_names[] = { [aux_sym_mount_param_param_token1] = "mount_param_param_token1", [aux_sym_image_alias_token1] = "image_alias_token1", [aux_sym_image_alias_token2] = "image_alias_token2", - [aux_sym_shell_fragment_token1] = "shell_fragment_token1", - [aux_sym_shell_fragment_token2] = "shell_fragment_token2", - [aux_sym_shell_fragment_token3] = "shell_fragment_token3", - [aux_sym_shell_fragment_token4] = "shell_fragment_token4", + [aux_sym__shell_fragment_token1] = "_shell_fragment_token1", + [aux_sym__shell_fragment_token2] = "_shell_fragment_token2", + [aux_sym__shell_fragment_token3] = "_shell_fragment_token3", + [aux_sym__shell_fragment_token4] = "_shell_fragment_token4", [sym_line_continuation] = "line_continuation", [sym_required_line_continuation] = "line_continuation", [anon_sym_LBRACK] = "[", @@ -265,9 +268,9 @@ static const char * const ts_symbol_names[] = { [sym__non_newline_whitespace] = "_non_newline_whitespace", [sym_comment] = "comment", [sym_heredoc_marker] = "heredoc_marker", - [sym_heredoc_line] = "heredoc_line", + [sym__heredoc_line] = "_heredoc_line", [sym_heredoc_end] = "heredoc_end", - [sym_heredoc_nl] = "_heredoc_nl", + [sym__heredoc_nl] = "_heredoc_nl", [sym_error_sentinel] = "error_sentinel", [sym_source_file] = "source_file", [sym__instruction] = "_instruction", @@ -315,7 +318,7 @@ static const char * const ts_symbol_names[] = { [sym_mount_param_param] = "mount_param_param", [sym_image_alias] = "image_alias", [sym_shell_command] = "shell_command", - [sym_shell_fragment] = "shell_fragment", + [aux_sym__shell_fragment] = "_shell_fragment", [sym_json_string_array] = "json_string_array", [sym_json_string] = "json_string", [sym_double_quoted_string] = "double_quoted_string", @@ -340,7 +343,6 @@ static const char * const ts_symbol_names[] = { [aux_sym_mount_param_repeat1] = "mount_param_repeat1", [aux_sym_image_alias_repeat1] = "image_alias_repeat1", [aux_sym_shell_command_repeat1] = "shell_command_repeat1", - [aux_sym_shell_fragment_repeat1] = "shell_fragment_repeat1", [aux_sym_json_string_array_repeat1] = "json_string_array_repeat1", [aux_sym_json_string_repeat1] = "json_string_repeat1", [aux_sym_double_quoted_string_repeat1] = "double_quoted_string_repeat1", @@ -409,10 +411,10 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_mount_param_param_token1] = aux_sym_mount_param_param_token1, [aux_sym_image_alias_token1] = aux_sym_image_alias_token1, [aux_sym_image_alias_token2] = aux_sym_image_alias_token2, - [aux_sym_shell_fragment_token1] = aux_sym_shell_fragment_token1, - [aux_sym_shell_fragment_token2] = aux_sym_shell_fragment_token2, - [aux_sym_shell_fragment_token3] = aux_sym_shell_fragment_token3, - [aux_sym_shell_fragment_token4] = aux_sym_shell_fragment_token4, + [aux_sym__shell_fragment_token1] = aux_sym__shell_fragment_token1, + [aux_sym__shell_fragment_token2] = aux_sym__shell_fragment_token2, + [aux_sym__shell_fragment_token3] = aux_sym__shell_fragment_token3, + [aux_sym__shell_fragment_token4] = aux_sym__shell_fragment_token4, [sym_line_continuation] = sym_line_continuation, [sym_required_line_continuation] = sym_line_continuation, [anon_sym_LBRACK] = anon_sym_LBRACK, @@ -432,9 +434,9 @@ static const TSSymbol ts_symbol_map[] = { [sym__non_newline_whitespace] = sym__non_newline_whitespace, [sym_comment] = sym_comment, [sym_heredoc_marker] = sym_heredoc_marker, - [sym_heredoc_line] = sym_heredoc_line, + [sym__heredoc_line] = sym__heredoc_line, [sym_heredoc_end] = sym_heredoc_end, - [sym_heredoc_nl] = sym_heredoc_nl, + [sym__heredoc_nl] = sym__heredoc_nl, [sym_error_sentinel] = sym_error_sentinel, [sym_source_file] = sym_source_file, [sym__instruction] = sym__instruction, @@ -482,7 +484,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_mount_param_param] = sym_mount_param_param, [sym_image_alias] = sym_image_alias, [sym_shell_command] = sym_shell_command, - [sym_shell_fragment] = sym_shell_fragment, + [aux_sym__shell_fragment] = aux_sym__shell_fragment, [sym_json_string_array] = sym_json_string_array, [sym_json_string] = sym_json_string, [sym_double_quoted_string] = sym_double_quoted_string, @@ -507,7 +509,6 @@ static const TSSymbol ts_symbol_map[] = { [aux_sym_mount_param_repeat1] = aux_sym_mount_param_repeat1, [aux_sym_image_alias_repeat1] = aux_sym_image_alias_repeat1, [aux_sym_shell_command_repeat1] = aux_sym_shell_command_repeat1, - [aux_sym_shell_fragment_repeat1] = aux_sym_shell_fragment_repeat1, [aux_sym_json_string_array_repeat1] = aux_sym_json_string_array_repeat1, [aux_sym_json_string_repeat1] = aux_sym_json_string_repeat1, [aux_sym_double_quoted_string_repeat1] = aux_sym_double_quoted_string_repeat1, @@ -756,19 +757,19 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_shell_fragment_token1] = { + [aux_sym__shell_fragment_token1] = { .visible = false, .named = false, }, - [aux_sym_shell_fragment_token2] = { + [aux_sym__shell_fragment_token2] = { .visible = false, .named = false, }, - [aux_sym_shell_fragment_token3] = { + [aux_sym__shell_fragment_token3] = { .visible = false, .named = false, }, - [aux_sym_shell_fragment_token4] = { + [aux_sym__shell_fragment_token4] = { .visible = false, .named = false, }, @@ -848,17 +849,17 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_heredoc_line] = { - .visible = true, + [sym__heredoc_line] = { + .visible = false, .named = true, }, [sym_heredoc_end] = { .visible = true, .named = true, }, - [sym_heredoc_nl] = { - .visible = true, - .named = false, + [sym__heredoc_nl] = { + .visible = false, + .named = true, }, [sym_error_sentinel] = { .visible = true, @@ -1048,9 +1049,9 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, - [sym_shell_fragment] = { - .visible = true, - .named = true, + [aux_sym__shell_fragment] = { + .visible = false, + .named = false, }, [sym_json_string_array] = { .visible = true, @@ -1148,10 +1149,6 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = false, .named = false, }, - [aux_sym_shell_fragment_repeat1] = { - .visible = false, - .named = false, - }, [aux_sym_json_string_array_repeat1] = { .visible = false, .named = false, @@ -1199,7 +1196,7 @@ static const char * const ts_field_names[] = { [field_value] = "value", }; -static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { +static const TSMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [2] = {.index = 1, .length = 2}, [3] = {.index = 3, .length = 1}, @@ -1298,7 +1295,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [18] = 18, [19] = 19, [20] = 20, - [21] = 21, + [21] = 13, [22] = 22, [23] = 23, [24] = 24, @@ -1310,41 +1307,41 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [30] = 30, [31] = 31, [32] = 32, - [33] = 30, + [33] = 33, [34] = 34, [35] = 35, [36] = 36, [37] = 37, [38] = 38, - [39] = 39, + [39] = 32, [40] = 40, [41] = 41, [42] = 42, - [43] = 22, + [43] = 43, [44] = 44, - [45] = 23, - [46] = 46, - [47] = 18, - [48] = 20, - [49] = 49, - [50] = 36, - [51] = 30, - [52] = 36, - [53] = 53, - [54] = 54, + [45] = 45, + [46] = 23, + [47] = 47, + [48] = 27, + [49] = 18, + [50] = 19, + [51] = 51, + [52] = 34, + [53] = 32, + [54] = 34, [55] = 55, [56] = 56, [57] = 57, [58] = 58, [59] = 59, - [60] = 60, + [60] = 43, [61] = 61, - [62] = 32, - [63] = 58, + [62] = 62, + [63] = 63, [64] = 64, - [65] = 65, + [65] = 51, [66] = 66, - [67] = 49, + [67] = 67, [68] = 68, [69] = 69, [70] = 70, @@ -1352,27 +1349,27 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [72] = 72, [73] = 73, [74] = 74, - [75] = 72, - [76] = 60, + [75] = 67, + [76] = 76, [77] = 77, - [78] = 73, - [79] = 79, + [78] = 78, + [79] = 47, [80] = 80, - [81] = 70, - [82] = 49, + [81] = 81, + [82] = 69, [83] = 83, - [84] = 44, - [85] = 85, - [86] = 49, + [84] = 84, + [85] = 51, + [86] = 44, [87] = 87, - [88] = 88, + [88] = 70, [89] = 89, [90] = 90, [91] = 91, - [92] = 92, - [93] = 46, - [94] = 94, - [95] = 72, + [92] = 76, + [93] = 93, + [94] = 73, + [95] = 51, [96] = 96, [97] = 97, [98] = 98, @@ -1386,130 +1383,130 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [106] = 106, [107] = 107, [108] = 108, - [109] = 72, - [110] = 110, - [111] = 68, + [109] = 109, + [110] = 69, + [111] = 111, [112] = 112, - [113] = 80, - [114] = 73, - [115] = 73, - [116] = 116, - [117] = 72, - [118] = 73, - [119] = 72, - [120] = 73, - [121] = 121, - [122] = 112, - [123] = 106, + [113] = 66, + [114] = 114, + [115] = 96, + [116] = 69, + [117] = 70, + [118] = 118, + [119] = 70, + [120] = 69, + [121] = 70, + [122] = 69, + [123] = 70, [124] = 124, - [125] = 112, + [125] = 103, [126] = 106, - [127] = 127, - [128] = 128, - [129] = 129, + [127] = 103, + [128] = 106, + [129] = 69, [130] = 130, - [131] = 131, + [131] = 56, [132] = 132, - [133] = 80, - [134] = 72, + [133] = 133, + [134] = 134, [135] = 135, - [136] = 73, - [137] = 80, - [138] = 72, - [139] = 73, - [140] = 140, + [136] = 136, + [137] = 137, + [138] = 138, + [139] = 96, + [140] = 69, [141] = 141, - [142] = 142, - [143] = 143, - [144] = 144, + [142] = 70, + [143] = 96, + [144] = 69, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 73, + [149] = 149, [150] = 150, [151] = 151, [152] = 152, - [153] = 64, - [154] = 154, + [153] = 153, + [154] = 70, [155] = 155, [156] = 156, [157] = 157, [158] = 158, [159] = 159, [160] = 160, - [161] = 72, - [162] = 162, - [163] = 163, + [161] = 161, + [162] = 70, + [163] = 96, [164] = 164, [165] = 165, [166] = 166, - [167] = 150, + [167] = 167, [168] = 168, [169] = 169, - [170] = 80, - [171] = 171, - [172] = 171, - [173] = 152, - [174] = 129, - [175] = 73, - [176] = 80, - [177] = 72, - [178] = 73, - [179] = 179, - [180] = 180, - [181] = 80, - [182] = 72, - [183] = 73, - [184] = 80, - [185] = 72, - [186] = 171, - [187] = 187, - [188] = 80, + [170] = 148, + [171] = 160, + [172] = 172, + [173] = 70, + [174] = 96, + [175] = 69, + [176] = 70, + [177] = 177, + [178] = 178, + [179] = 96, + [180] = 69, + [181] = 70, + [182] = 96, + [183] = 69, + [184] = 70, + [185] = 96, + [186] = 186, + [187] = 169, + [188] = 188, [189] = 189, - [190] = 190, - [191] = 191, - [192] = 73, - [193] = 72, - [194] = 162, - [195] = 191, - [196] = 189, - [197] = 162, - [198] = 198, - [199] = 179, - [200] = 171, - [201] = 162, - [202] = 202, - [203] = 171, - [204] = 171, - [205] = 162, - [206] = 171, - [207] = 162, - [208] = 171, - [209] = 162, - [210] = 171, - [211] = 162, - [212] = 171, - [213] = 162, - [214] = 171, - [215] = 171, - [216] = 171, - [217] = 73, + [190] = 69, + [191] = 186, + [192] = 164, + [193] = 193, + [194] = 178, + [195] = 169, + [196] = 196, + [197] = 172, + [198] = 169, + [199] = 186, + [200] = 200, + [201] = 169, + [202] = 186, + [203] = 169, + [204] = 186, + [205] = 169, + [206] = 186, + [207] = 169, + [208] = 186, + [209] = 169, + [210] = 186, + [211] = 169, + [212] = 186, + [213] = 169, + [214] = 169, + [215] = 169, + [216] = 70, + [217] = 217, [218] = 218, [219] = 219, - [220] = 220, - [221] = 68, - [222] = 148, - [223] = 151, + [220] = 145, + [221] = 130, + [222] = 135, + [223] = 136, [224] = 224, - [225] = 159, - [226] = 160, + [225] = 225, + [226] = 226, [227] = 227, [228] = 228, - [229] = 229, - [230] = 230, + [229] = 66, + [230] = 66, [231] = 231, - [232] = 68, + [232] = 232, [233] = 233, [234] = 234, [235] = 235, @@ -1520,7 +1517,7 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [240] = 240, [241] = 241, [242] = 242, - [243] = 187, + [243] = 243, [244] = 244, [245] = 245, [246] = 246, @@ -1528,14 +1525,14 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [248] = 248, [249] = 249, [250] = 250, - [251] = 248, - [252] = 159, + [251] = 130, + [252] = 252, [253] = 253, - [254] = 160, - [255] = 255, - [256] = 256, + [254] = 254, + [255] = 246, + [256] = 135, [257] = 257, - [258] = 258, + [258] = 250, [259] = 259, [260] = 260, [261] = 261, @@ -1543,65 +1540,63 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [263] = 263, [264] = 264, [265] = 265, - [266] = 266, - [267] = 267, + [266] = 261, + [267] = 242, [268] = 268, - [269] = 236, + [269] = 269, [270] = 270, [271] = 271, - [272] = 148, + [272] = 272, [273] = 273, - [274] = 274, - [275] = 275, - [276] = 267, - [277] = 268, - [278] = 278, - [279] = 151, - [280] = 267, - [281] = 268, - [282] = 282, - [283] = 267, - [284] = 267, - [285] = 285, - [286] = 260, - [287] = 267, - [288] = 218, - [289] = 231, - [290] = 267, - [291] = 291, + [274] = 265, + [275] = 261, + [276] = 276, + [277] = 277, + [278] = 265, + [279] = 261, + [280] = 280, + [281] = 281, + [282] = 265, + [283] = 168, + [284] = 136, + [285] = 265, + [286] = 286, + [287] = 287, + [288] = 265, + [289] = 145, + [290] = 265, + [291] = 265, [292] = 292, - [293] = 267, - [294] = 168, + [293] = 293, + [294] = 265, [295] = 295, - [296] = 267, + [296] = 265, [297] = 297, - [298] = 267, + [298] = 265, [299] = 299, - [300] = 267, - [301] = 301, - [302] = 267, - [303] = 303, - [304] = 267, - [305] = 267, - [306] = 248, - [307] = 274, - [308] = 248, - [309] = 274, - [310] = 248, - [311] = 274, - [312] = 248, - [313] = 313, - [314] = 248, - [315] = 248, - [316] = 248, - [317] = 248, - [318] = 248, - [319] = 248, - [320] = 248, - [321] = 248, - [322] = 303, - [323] = 303, - [324] = 268, + [300] = 265, + [301] = 219, + [302] = 265, + [303] = 265, + [304] = 246, + [305] = 272, + [306] = 246, + [307] = 272, + [308] = 246, + [309] = 272, + [310] = 246, + [311] = 246, + [312] = 312, + [313] = 246, + [314] = 246, + [315] = 246, + [316] = 246, + [317] = 246, + [318] = 246, + [319] = 246, + [320] = 292, + [321] = 292, + [322] = 245, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1609,17 +1604,17 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(167); + if (eof) ADVANCE(166); ADVANCE_MAP( '"', 270, - '#', 205, + '#', 204, '$', 213, '\'', 281, ',', 252, '-', 260, - ':', 181, + ':', 180, '<', 228, - '=', 190, + '=', 189, '@', 239, '[', 267, '\\', 278, @@ -1629,23 +1624,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '}', 219, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); + lookahead == ' ') SKIP(163); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); if (lookahead != 0) ADVANCE(203); END_STATE(); case 1: - if (lookahead == '\t') ADVANCE(3); + if (lookahead == '\t') ADVANCE(4); if (lookahead == '\n') ADVANCE(265); if (lookahead == ' ') ADVANCE(289); END_STATE(); case 2: + if (lookahead == '\n') ADVANCE(293); + if (lookahead != 0) ADVANCE(2); + END_STATE(); + case 3: ADVANCE_MAP( '\n', 265, - 'u', 161, - '\t', 3, - ' ', 3, + 'u', 160, + '\t', 4, + ' ', 4, '"', 274, '/', 274, '\\', 274, @@ -1656,12 +1655,12 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { 't', 274, ); END_STATE(); - case 3: + case 4: if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); END_STATE(); - case 4: + case 5: if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(264); @@ -1670,26 +1669,26 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != '=') ADVANCE(263); END_STATE(); - case 5: - if (lookahead == '\n') ADVANCE(168); + case 6: + if (lookahead == '\n') ADVANCE(167); if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\'') ADVANCE(281); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(5); + lookahead == ' ') SKIP(6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 6: - if (lookahead == '\n') ADVANCE(168); + case 7: + if (lookahead == '\n') ADVANCE(167); if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\'') ADVANCE(281); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(6); + lookahead == ' ') SKIP(7); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -1697,29 +1696,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(168); + case 8: + if (lookahead == '\n') ADVANCE(167); if (lookahead == '"') ADVANCE(270); if (lookahead == '#') ADVANCE(285); if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(5); + lookahead == ' ') SKIP(6); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(286); if (lookahead != 0) ADVANCE(288); END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(168); + case 9: + if (lookahead == '\n') ADVANCE(167); if (lookahead == '"') ADVANCE(270); if (lookahead == '#') ADVANCE(285); if (lookahead == '$') ADVANCE(213); if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(6); + lookahead == ' ') SKIP(7); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || @@ -1728,24 +1727,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); if (lookahead != 0) ADVANCE(288); END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 10: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == ':') ADVANCE(181); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == ':') ADVANCE(180); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 11: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (lookahead == 'A' || lookahead == 'a') ADVANCE(240); if (('\t' <= lookahead && lookahead <= '\r') || @@ -1754,21 +1753,21 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('B' <= lookahead && lookahead <= 'Z') || ('b' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 12: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 13: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); if (lookahead == '-' || @@ -1777,76 +1776,68 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); END_STATE(); - case 13: + case 14: ADVANCE_MAP( - '\n', 168, - '#', 293, + '\n', 167, + '#', 2, '$', 212, - '/', 67, - ':', 181, + '/', 66, + ':', 180, '@', 239, - '\\', 3, - 'A', 142, - 'a', 142, + '\\', 4, + 'A', 141, + 'a', 141, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14); + lookahead == ' ') SKIP(15); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 14: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 15: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(212); - if (lookahead == '/') ADVANCE(67); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '/') ADVANCE(66); + if (lookahead == '\\') ADVANCE(4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(142); + lookahead == 'a') ADVANCE(141); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(14); + lookahead == ' ') SKIP(15); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); + case 16: + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); if (lookahead == '<') ADVANCE(261); if (lookahead == '\\') ADVANCE(24); if (lookahead == ',' || lookahead == '-' || lookahead == '=') ADVANCE(259); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); + lookahead == ' ') SKIP(16); if (lookahead != 0 && lookahead != '[' && lookahead != '\\') ADVANCE(262); END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(292); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(18); - END_STATE(); case 17: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(142); + lookahead == 'a') ADVANCE(141); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); END_STATE(); case 18: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); END_STATE(); case 19: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(19); if (('A' <= lookahead && lookahead <= 'Z') || @@ -1855,46 +1846,46 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 20: ADVANCE_MAP( - '\n', 168, - '#', 233, + '\n', 167, + '#', 231, '$', 213, - ':', 181, + ':', 180, '@', 239, - '\\', 231, - 'A', 232, - 'a', 232, + '\\', 232, + 'A', 233, + 'a', 233, ); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); if (lookahead != 0) ADVANCE(234); END_STATE(); case 21: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(237); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(235); if (lookahead == '$') ADVANCE(213); if (lookahead == '@') ADVANCE(239); - if (lookahead == '\\') ADVANCE(235); + if (lookahead == '\\') ADVANCE(236); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(236); + lookahead == 'a') ADVANCE(237); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(17); if (lookahead != 0) ADVANCE(238); END_STATE(); case 22: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(209); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(208); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(209); if (lookahead == '\t' || lookahead == ' ') ADVANCE(292); if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(18); if (lookahead != 0) ADVANCE(210); END_STATE(); case 23: - if (lookahead == '\n') ADVANCE(168); - if (lookahead == '#') ADVANCE(209); + if (lookahead == '\n') ADVANCE(167); + if (lookahead == '#') ADVANCE(208); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(209); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(18); if (lookahead != 0) ADVANCE(210); @@ -1911,35 +1902,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 25: if (lookahead == '\n') SKIP(29); if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(276); + if (lookahead == '#') ADVANCE(275); if (lookahead == '$') ADVANCE(213); if (lookahead == '\\') ADVANCE(279); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(275); + lookahead == ' ') ADVANCE(276); if (lookahead != 0) ADVANCE(277); END_STATE(); case 26: if (lookahead == '\n') SKIP(41); - if (lookahead == '#') ADVANCE(283); + if (lookahead == '#') ADVANCE(282); if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(282); + lookahead == ' ') ADVANCE(283); if (lookahead != 0) ADVANCE(284); END_STATE(); case 27: if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\'') ADVANCE(281); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(27); END_STATE(); case 28: if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\'') ADVANCE(281); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28); if (lookahead == '-' || @@ -1951,7 +1942,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 29: if (lookahead == '"') ADVANCE(270); - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\\') ADVANCE(278); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(29); @@ -1969,86 +1960,86 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 31: if (lookahead == '"') ADVANCE(270); if (lookahead == '#') ADVANCE(271); - if (lookahead == '\\') ADVANCE(2); + if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(272); if (lookahead != 0) ADVANCE(273); END_STATE(); case 32: - if (lookahead == '#') ADVANCE(205); + if (lookahead == '#') ADVANCE(204); if (lookahead == '$') ADVANCE(212); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '<') ADVANCE(162); - if (lookahead == '\\') ADVANCE(204); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '<') ADVANCE(161); + if (lookahead == '\\') ADVANCE(205); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(32); if (lookahead != 0) ADVANCE(203); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(205); + if (lookahead == '#') ADVANCE(204); if (lookahead == '$') ADVANCE(212); - if (lookahead == '<') ADVANCE(163); + if (lookahead == '<') ADVANCE(162); if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(204); + if (lookahead == '\\') ADVANCE(205); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(33); if (lookahead != 0 && lookahead != '-') ADVANCE(203); END_STATE(); case 34: - if (lookahead == '#') ADVANCE(205); + if (lookahead == '#') ADVANCE(204); if (lookahead == '$') ADVANCE(212); - if (lookahead == '<') ADVANCE(163); - if (lookahead == '\\') ADVANCE(204); + if (lookahead == '<') ADVANCE(162); + if (lookahead == '\\') ADVANCE(205); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(34); if (lookahead != 0 && lookahead != '-') ADVANCE(203); END_STATE(); case 35: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); + lookahead == ' ') SKIP(47); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); END_STATE(); case 36: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); case 37: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (lookahead == 'm') ADVANCE(244); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(192); END_STATE(); case 38: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(38); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(192); END_STATE(); case 39: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(39); if (lookahead == '-' || @@ -2058,40 +2049,40 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); END_STATE(); case 40: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '$') ADVANCE(212); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); END_STATE(); case 41: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(278); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(41); END_STATE(); case 42: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == ',') ADVANCE(252); if (lookahead == '-') ADVANCE(260); if (lookahead == '<') ADVANCE(261); if (lookahead == '=') ADVANCE(259); if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(4); + if (lookahead == '\\') ADVANCE(5); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(43); if (lookahead != 0) ADVANCE(262); END_STATE(); case 43: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '-') ADVANCE(260); if (lookahead == '<') ADVANCE(261); if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(4); + if (lookahead == '\\') ADVANCE(5); if (lookahead == ',' || lookahead == '=') ADVANCE(259); if (('\t' <= lookahead && lookahead <= '\r') || @@ -2099,10 +2090,10 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(262); END_STATE(); case 44: - if (lookahead == '#') ADVANCE(293); + if (lookahead == '#') ADVANCE(2); if (lookahead == '<') ADVANCE(261); if (lookahead == '[') ADVANCE(267); - if (lookahead == '\\') ADVANCE(4); + if (lookahead == '\\') ADVANCE(5); if (lookahead == ',' || lookahead == '-' || lookahead == '=') ADVANCE(259); @@ -2111,100 +2102,93 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0) ADVANCE(262); END_STATE(); case 45: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '=') ADVANCE(190); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '=') ADVANCE(189); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') ADVANCE(221); END_STATE(); case 46: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (lookahead == '{') ADVANCE(214); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); END_STATE(); case 47: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(292); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(48); - END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + case 48: + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); - case 50: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + case 49: + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(50); + lookahead == ' ') SKIP(49); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 51: - if (lookahead == '#') ADVANCE(293); - if (lookahead == '\\') ADVANCE(3); + case 50: + if (lookahead == '#') ADVANCE(2); + if (lookahead == '\\') ADVANCE(4); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51); + lookahead == ' ') SKIP(50); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); END_STATE(); - case 52: - if (lookahead == '#') ADVANCE(237); + case 51: + if (lookahead == '#') ADVANCE(235); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(235); + if (lookahead == '\\') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (lookahead != 0 && lookahead != '@') ADVANCE(238); END_STATE(); - case 53: - if (lookahead == '#') ADVANCE(209); + case 52: + if (lookahead == '#') ADVANCE(208); if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(208); + if (lookahead == '\\') ADVANCE(209); if (lookahead == '\t' || lookahead == ' ') ADVANCE(292); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(48); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(47); if (lookahead != 0) ADVANCE(210); END_STATE(); - case 54: - if (lookahead == '#') ADVANCE(230); + case 53: + if (lookahead == '#') ADVANCE(229); if (lookahead == '$') ADVANCE(212); - if (lookahead == '-') ADVANCE(58); - if (lookahead == '\\') ADVANCE(229); + if (lookahead == '-') ADVANCE(57); + if (lookahead == '\\') ADVANCE(230); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(54); + lookahead == ' ') SKIP(53); if (lookahead != 0 && lookahead != ':' && lookahead != '@') ADVANCE(228); END_STATE(); - case 55: - if (lookahead == '#') ADVANCE(254); - if (lookahead == '\\') ADVANCE(253); + case 54: + if (lookahead == '#') ADVANCE(253); + if (lookahead == '\\') ADVANCE(254); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (lookahead != 0 && lookahead != ',' && lookahead != '=') ADVANCE(255); END_STATE(); - case 56: + case 55: if (lookahead == '#') ADVANCE(215); if (lookahead == '\\') ADVANCE(216); if (('\t' <= lookahead && lookahead <= '\r') || @@ -2212,219 +2196,223 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead != 0 && lookahead != '}') ADVANCE(218); END_STATE(); - case 57: - if (lookahead == '#') ADVANCE(249); - if (lookahead == '\\') ADVANCE(248); + case 56: + if (lookahead == '#') ADVANCE(248); + if (lookahead == '\\') ADVANCE(249); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(48); + lookahead == ' ') SKIP(47); if (lookahead != 0) ADVANCE(250); END_STATE(); - case 58: + case 57: if (lookahead == '-') ADVANCE(242); END_STATE(); + case 58: + if (lookahead == 'E') ADVANCE(195); + END_STATE(); case 59: - if (lookahead == 'E') ADVANCE(196); + if (lookahead == 'N') ADVANCE(58); END_STATE(); case 60: - if (lookahead == 'N') ADVANCE(59); + if (lookahead == 'O') ADVANCE(59); END_STATE(); case 61: - if (lookahead == 'O') ADVANCE(60); + if (lookahead == '_') ADVANCE(74); END_STATE(); case 62: - if (lookahead == '_') ADVANCE(75); + if (lookahead == 'c') ADVANCE(64); END_STATE(); case 63: - if (lookahead == 'c') ADVANCE(65); + if (lookahead == 'd') ADVANCE(65); END_STATE(); case 64: - if (lookahead == 'd') ADVANCE(66); + if (lookahead == 'p') ADVANCE(225); END_STATE(); case 65: - if (lookahead == 'p') ADVANCE(225); + if (lookahead == 'p') ADVANCE(226); END_STATE(); case 66: - if (lookahead == 'p') ADVANCE(226); + if (lookahead == 't') ADVANCE(62); + if (lookahead == 'u') ADVANCE(63); END_STATE(); case 67: - if (lookahead == 't') ADVANCE(63); - if (lookahead == 'u') ADVANCE(64); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(73); END_STATE(); case 68: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(74); + lookahead == 'a') ADVANCE(97); END_STATE(); case 69: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(98); + lookahead == 'a') ADVANCE(105); END_STATE(); case 70: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(106); + lookahead == 'a') ADVANCE(108); END_STATE(); case 71: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(109); + lookahead == 'a') ADVANCE(98); END_STATE(); case 72: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(99); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(151); END_STATE(); case 73: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(152); + lookahead == 'b') ADVANCE(89); END_STATE(); case 74: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(90); + lookahead == 'b') ADVANCE(153); END_STATE(); case 75: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(154); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(103); END_STATE(); case 76: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(104); + lookahead == 'c') ADVANCE(95); END_STATE(); case 77: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(96); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(78); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(91); END_STATE(); case 78: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(79); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(92); + lookahead == 'd') ADVANCE(175); END_STATE(); case 79: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(176); + lookahead == 'd') ADVANCE(171); END_STATE(); case 80: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(172); + lookahead == 'd') ADVANCE(190); END_STATE(); case 81: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(191); + lookahead == 'd') ADVANCE(202); END_STATE(); case 82: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(202); + lookahead == 'd') ADVANCE(99); END_STATE(); case 83: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(100); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(173); END_STATE(); case 84: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(174); + lookahead == 'e') ADVANCE(178); END_STATE(); case 85: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(179); + lookahead == 'e') ADVANCE(75); END_STATE(); case 86: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(76); + lookahead == 'e') ADVANCE(69); END_STATE(); case 87: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(70); + lookahead == 'e') ADVANCE(112); END_STATE(); case 88: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(113); + lookahead == 'e') ADVANCE(135); END_STATE(); case 89: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(136); + lookahead == 'e') ADVANCE(106); END_STATE(); case 90: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(107); + lookahead == 'e') ADVANCE(137); END_STATE(); case 91: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(138); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(187); END_STATE(); case 92: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(188); + lookahead == 'g') ADVANCE(121); END_STATE(); case 93: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(122); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(76); END_STATE(); case 94: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(77); + lookahead == 'h') ADVANCE(87); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(127); END_STATE(); case 95: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(88); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(128); + lookahead == 'h') ADVANCE(85); END_STATE(); case 96: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(86); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(92); END_STATE(); case 97: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(93); + lookahead == 'i') ADVANCE(119); END_STATE(); case 98: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(120); + lookahead == 'i') ADVANCE(122); END_STATE(); case 99: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(123); + lookahead == 'i') ADVANCE(136); END_STATE(); case 100: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(137); + lookahead == 'i') ADVANCE(120); END_STATE(); case 101: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(121); + lookahead == 'i') ADVANCE(110); END_STATE(); case 102: if (lookahead == 'I' || lookahead == 'i') ADVANCE(111); END_STATE(); case 103: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(112); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(194); END_STATE(); case 104: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(195); + lookahead == 'k') ADVANCE(82); END_STATE(); case 105: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(83); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(146); END_STATE(); case 106: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(147); + lookahead == 'l') ADVANCE(172); END_STATE(); case 107: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(173); + lookahead == 'l') ADVANCE(196); END_STATE(); case 108: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(197); + lookahead == 'l') ADVANCE(191); END_STATE(); case 109: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(192); + lookahead == 'l') ADVANCE(152); END_STATE(); case 110: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(153); + lookahead == 'l') ADVANCE(80); END_STATE(); case 111: if (lookahead == 'L' || @@ -2432,199 +2420,200 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 112: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(82); + lookahead == 'l') ADVANCE(107); END_STATE(); case 113: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(108); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(168); END_STATE(); case 114: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(169); + lookahead == 'm') ADVANCE(79); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(130); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(126); END_STATE(); case 115: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(80); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(131); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(127); + lookahead == 'm') ADVANCE(84); END_STATE(); case 116: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(85); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(148); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(132); END_STATE(); case 117: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(149); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(133); + lookahead == 'n') ADVANCE(170); END_STATE(); case 118: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(171); + lookahead == 'n') ADVANCE(72); END_STATE(); case 119: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(73); + lookahead == 'n') ADVANCE(149); END_STATE(); case 120: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(150); + lookahead == 'n') ADVANCE(147); END_STATE(); case 121: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(148); + lookahead == 'n') ADVANCE(70); END_STATE(); case 122: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(71); + lookahead == 'n') ADVANCE(90); END_STATE(); case 123: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(91); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(109); END_STATE(); case 124: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(110); + lookahead == 'o') ADVANCE(113); END_STATE(); case 125: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(114); + lookahead == 'o') ADVANCE(134); END_STATE(); case 126: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(135); + lookahead == 'o') ADVANCE(143); END_STATE(); case 127: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(144); + lookahead == 'o') ADVANCE(131); END_STATE(); case 128: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(132); + lookahead == 'o') ADVANCE(145); END_STATE(); case 129: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(146); + lookahead == 'o') ADVANCE(100); END_STATE(); case 130: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(101); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(154); END_STATE(); case 131: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(155); + lookahead == 'p') ADVANCE(144); END_STATE(); case 132: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(145); + lookahead == 'p') ADVANCE(128); END_STATE(); case 133: if (lookahead == 'P' || lookahead == 'p') ADVANCE(129); END_STATE(); case 134: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(130); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(104); END_STATE(); case 135: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(105); + lookahead == 'r') ADVANCE(179); END_STATE(); case 136: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(180); + lookahead == 'r') ADVANCE(186); END_STATE(); case 137: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(187); + lookahead == 'r') ADVANCE(197); END_STATE(); case 138: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(198); + lookahead == 'r') ADVANCE(155); END_STATE(); case 139: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(156); + lookahead == 'r') ADVANCE(124); END_STATE(); case 140: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(125); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(61); END_STATE(); case 141: if (lookahead == 'S' || - lookahead == 's') ADVANCE(62); + lookahead == 's') ADVANCE(169); END_STATE(); case 142: if (lookahead == 'S' || - lookahead == 's') ADVANCE(170); + lookahead == 's') ADVANCE(88); END_STATE(); case 143: if (lookahead == 'S' || - lookahead == 's') ADVANCE(89); + lookahead == 's') ADVANCE(140); END_STATE(); case 144: if (lookahead == 'S' || - lookahead == 's') ADVANCE(141); + lookahead == 's') ADVANCE(96); END_STATE(); case 145: if (lookahead == 'S' || - lookahead == 's') ADVANCE(97); + lookahead == 's') ADVANCE(83); END_STATE(); case 146: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(84); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(93); END_STATE(); case 147: if (lookahead == 'T' || - lookahead == 't') ADVANCE(94); + lookahead == 't') ADVANCE(177); END_STATE(); case 148: if (lookahead == 'T' || - lookahead == 't') ADVANCE(178); + lookahead == 't') ADVANCE(138); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(174); END_STATE(); case 149: if (lookahead == 'T' || - lookahead == 't') ADVANCE(139); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(175); + lookahead == 't') ADVANCE(71); END_STATE(); case 150: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(72); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(117); END_STATE(); case 151: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(118); + lookahead == 'u') ADVANCE(101); END_STATE(); case 152: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(102); + lookahead == 'u') ADVANCE(115); END_STATE(); case 153: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(116); + lookahead == 'u') ADVANCE(102); END_STATE(); case 154: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(103); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(176); END_STATE(); case 155: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(177); + lookahead == 'y') ADVANCE(133); END_STATE(); case 156: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(134); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); END_STATE(); case 157: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); END_STATE(); case 158: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(157); END_STATE(); case 159: if (('0' <= lookahead && lookahead <= '9') || @@ -2637,11 +2626,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(159); END_STATE(); case 161: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); - END_STATE(); - case 162: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && @@ -2649,15 +2633,15 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '-' && lookahead != '<') ADVANCE(211); END_STATE(); - case 163: + case 162: if (lookahead != 0 && lookahead != '<') ADVANCE(206); END_STATE(); - case 164: - if (eof) ADVANCE(167); + case 163: + if (eof) ADVANCE(166); ADVANCE_MAP( '"', 270, - '#', 205, + '#', 204, '$', 212, '\'', 281, ',', 268, @@ -2671,219 +2655,224 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { '@', 203, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(164); + lookahead == ' ') SKIP(163); if (lookahead != 0) ADVANCE(203); END_STATE(); - case 165: - if (eof) ADVANCE(167); + case 164: + if (eof) ADVANCE(166); ADVANCE_MAP( '"', 270, - '#', 293, + '#', 2, '$', 212, ',', 268, - '-', 58, - '=', 190, - 'N', 61, + '-', 57, + '=', 189, + 'N', 60, '[', 267, - '\\', 3, + '\\', 4, ']', 269, '}', 219, - 'A', 78, - 'a', 78, - 'C', 115, - 'c', 115, - 'E', 117, - 'e', 117, - 'F', 140, - 'f', 140, - 'H', 87, - 'h', 87, - 'L', 68, - 'l', 68, - 'M', 69, - 'm', 69, - 'O', 119, - 'o', 119, - 'R', 151, - 'r', 151, - 'S', 95, - 's', 95, - 'U', 143, - 'u', 143, - 'V', 124, - 'v', 124, - 'W', 126, - 'w', 126, + 'A', 77, + 'a', 77, + 'C', 114, + 'c', 114, + 'E', 116, + 'e', 116, + 'F', 139, + 'f', 139, + 'H', 86, + 'h', 86, + 'L', 67, + 'l', 67, + 'M', 68, + 'm', 68, + 'O', 118, + 'o', 118, + 'R', 150, + 'r', 150, + 'S', 94, + 's', 94, + 'U', 142, + 'u', 142, + 'V', 123, + 'v', 123, + 'W', 125, + 'w', 125, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 166: - if (eof) ADVANCE(167); + case 165: + if (eof) ADVANCE(166); ADVANCE_MAP( '"', 270, - '#', 293, + '#', 2, '$', 212, ',', 268, - '-', 58, - 'N', 61, + '-', 57, + 'N', 60, '[', 267, - '\\', 3, + '\\', 4, ']', 269, - 'A', 78, - 'a', 78, - 'C', 115, - 'c', 115, - 'E', 117, - 'e', 117, - 'F', 140, - 'f', 140, - 'H', 87, - 'h', 87, - 'L', 68, - 'l', 68, - 'M', 69, - 'm', 69, - 'O', 119, - 'o', 119, - 'R', 151, - 'r', 151, - 'S', 95, - 's', 95, - 'U', 143, - 'u', 143, - 'V', 124, - 'v', 124, - 'W', 126, - 'w', 126, + 'A', 77, + 'a', 77, + 'C', 114, + 'c', 114, + 'E', 116, + 'e', 116, + 'F', 139, + 'f', 139, + 'H', 86, + 'h', 86, + 'L', 67, + 'l', 67, + 'M', 68, + 'm', 68, + 'O', 118, + 'o', 118, + 'R', 150, + 'r', 150, + 'S', 94, + 's', 94, + 'U', 142, + 'u', 142, + 'V', 123, + 'v', 123, + 'W', 125, + 'w', 125, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(166); + lookahead == ' ') SKIP(165); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 167: + case 166: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(168); + if (lookahead == '\n') ADVANCE(167); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(aux_sym_from_instruction_token1); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(aux_sym_from_instruction_token2); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(aux_sym_run_instruction_token1); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(aux_sym_cmd_instruction_token1); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(aux_sym_label_instruction_token1); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(aux_sym_expose_instruction_token1); END_STATE(); - case 175: + case 174: ACCEPT_TOKEN(aux_sym_env_instruction_token1); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(aux_sym_add_instruction_token1); END_STATE(); - case 177: + case 176: ACCEPT_TOKEN(aux_sym_copy_instruction_token1); END_STATE(); - case 178: + case 177: ACCEPT_TOKEN(aux_sym_entrypoint_instruction_token1); END_STATE(); - case 179: + case 178: ACCEPT_TOKEN(aux_sym_volume_instruction_token1); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(aux_sym_user_instruction_token1); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(aux_sym__user_name_or_group_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(181); END_STATE(); - case 183: + case 182: ACCEPT_TOKEN(aux_sym__user_name_or_group_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(182); END_STATE(); - case 184: + case 183: ACCEPT_TOKEN(aux_sym__immediate_user_name_or_group_fragment_token1); - if (lookahead == '-') ADVANCE(186); + if (lookahead == '-') ADVANCE(185); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); END_STATE(); - case 185: + case 184: ACCEPT_TOKEN(aux_sym__immediate_user_name_or_group_fragment_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(184); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(aux_sym__immediate_user_name_or_group_fragment_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); END_STATE(); - case 187: + case 186: ACCEPT_TOKEN(aux_sym_workdir_instruction_token1); END_STATE(); - case 188: + case 187: ACCEPT_TOKEN(aux_sym_arg_instruction_token1); END_STATE(); - case 189: + case 188: ACCEPT_TOKEN(aux_sym_arg_instruction_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(188); END_STATE(); - case 190: + case 189: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 191: + case 190: ACCEPT_TOKEN(aux_sym_onbuild_instruction_token1); END_STATE(); - case 192: + case 191: ACCEPT_TOKEN(aux_sym_stopsignal_instruction_token1); END_STATE(); - case 193: + case 192: ACCEPT_TOKEN(aux_sym__stopsignal_value_token1); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(192); END_STATE(); - case 194: + case 193: ACCEPT_TOKEN(aux_sym__stopsignal_value_token2); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); END_STATE(); - case 195: + case 194: ACCEPT_TOKEN(aux_sym_healthcheck_instruction_token1); END_STATE(); - case 196: + case 195: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 197: + case 196: ACCEPT_TOKEN(aux_sym_shell_instruction_token1); END_STATE(); - case 198: + case 197: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token1); END_STATE(); + case 198: + ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); + if (lookahead == '\n') ADVANCE(293); + if (lookahead != 0) ADVANCE(198); + END_STATE(); case 199: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); if (lookahead == '\n') ADVANCE(265); @@ -2893,7 +2882,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 200: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead == '#') ADVANCE(201); + if (lookahead == '#') ADVANCE(198); if (lookahead == '\\') ADVANCE(199); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -2917,14 +2906,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 204: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\n') ADVANCE(265); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + if (lookahead == '\n') ADVANCE(293); + if (lookahead != 0) ADVANCE(2); END_STATE(); case 205: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(293); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4); END_STATE(); case 206: ACCEPT_TOKEN(aux_sym_path_token2); @@ -2938,21 +2927,20 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 208: ACCEPT_TOKEN(aux_sym_path_token3); - if (lookahead == '\n') ADVANCE(265); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead) && - lookahead != '$') ADVANCE(210); + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '$') ADVANCE(2); + if (lookahead != 0) ADVANCE(208); END_STATE(); case 209: ACCEPT_TOKEN(aux_sym_path_token3); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '$') ADVANCE(293); + lookahead == ' ') ADVANCE(4); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(209); + (lookahead < '\t' || '\r' < lookahead) && + lookahead != '$') ADVANCE(210); END_STATE(); case 210: ACCEPT_TOKEN(aux_sym_path_token3); @@ -2976,7 +2964,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 215: ACCEPT_TOKEN(aux_sym__expansion_body_token1); if (lookahead == '\n') ADVANCE(218); - if (lookahead == '}') ADVANCE(293); + if (lookahead == '}') ADVANCE(2); if (lookahead != 0) ADVANCE(215); END_STATE(); case 216: @@ -3025,7 +3013,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 223: ACCEPT_TOKEN(aux_sym_expose_port_token1); - if (lookahead == '-') ADVANCE(157); + if (lookahead == '-') ADVANCE(156); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); case 224: @@ -3052,27 +3040,37 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 229: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '\n') ADVANCE(265); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + if (lookahead == '\n') ADVANCE(293); + if (lookahead != 0) ADVANCE(2); END_STATE(); case 230: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(293); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == '\t' || + lookahead == ' ') ADVANCE(4); END_STATE(); case 231: + ACCEPT_TOKEN(aux_sym_image_name_token2); + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '$' || + lookahead == ':' || + lookahead == '@') ADVANCE(2); + if (lookahead != 0) ADVANCE(231); + END_STATE(); + case 232: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '$' && lookahead != ':' && lookahead != '@') ADVANCE(234); END_STATE(); - case 232: + case 233: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead == 'S' || lookahead == 's') ADVANCE(234); @@ -3083,17 +3081,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != ':' && lookahead != '@') ADVANCE(234); END_STATE(); - case 233: - ACCEPT_TOKEN(aux_sym_image_name_token2); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '$' || - lookahead == ':' || - lookahead == '@') ADVANCE(293); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(233); - END_STATE(); case 234: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead != 0 && @@ -3104,16 +3091,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '@') ADVANCE(234); END_STATE(); case 235: + ACCEPT_TOKEN(aux_sym_image_tag_token1); + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == '$' || + lookahead == '@') ADVANCE(2); + if (lookahead != 0) ADVANCE(235); + END_STATE(); + case 236: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '$' && lookahead != '@') ADVANCE(238); END_STATE(); - case 236: + case 237: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead == 'S' || lookahead == 's') ADVANCE(238); @@ -3123,16 +3119,6 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '$' && lookahead != '@') ADVANCE(238); END_STATE(); - case 237: - ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == '$' || - lookahead == '@') ADVANCE(293); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(237); - END_STATE(); case 238: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead != 0 && @@ -3192,19 +3178,18 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 248: ACCEPT_TOKEN(aux_sym_param_token2); - if (lookahead == '\n') ADVANCE(265); - if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(250); + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(2); + if (lookahead != 0) ADVANCE(248); END_STATE(); case 249: ACCEPT_TOKEN(aux_sym_param_token2); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(293); + lookahead == ' ') ADVANCE(4); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(249); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(250); END_STATE(); case 250: ACCEPT_TOKEN(aux_sym_param_token2); @@ -3221,25 +3206,24 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 253: + ACCEPT_TOKEN(aux_sym_mount_param_param_token1); + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ' || + lookahead == ',' || + lookahead == '=') ADVANCE(2); + if (lookahead != 0) ADVANCE(253); + END_STATE(); + case 254: ACCEPT_TOKEN(aux_sym_mount_param_param_token1); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ',' && lookahead != '=') ADVANCE(255); END_STATE(); - case 254: - ACCEPT_TOKEN(aux_sym_mount_param_param_token1); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ' || - lookahead == ',' || - lookahead == '=') ADVANCE(293); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(254); - END_STATE(); case 255: ACCEPT_TOKEN(aux_sym_mount_param_param_token1); if (lookahead != 0 && @@ -3265,39 +3249,39 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); END_STATE(); case 258: - ACCEPT_TOKEN(aux_sym_shell_fragment_token1); + ACCEPT_TOKEN(aux_sym__shell_fragment_token1); if (lookahead == '\t' || lookahead == ' ') ADVANCE(258); END_STATE(); case 259: - ACCEPT_TOKEN(aux_sym_shell_fragment_token2); + ACCEPT_TOKEN(aux_sym__shell_fragment_token2); END_STATE(); case 260: - ACCEPT_TOKEN(aux_sym_shell_fragment_token2); + ACCEPT_TOKEN(aux_sym__shell_fragment_token2); if (lookahead == '-') ADVANCE(242); END_STATE(); case 261: - ACCEPT_TOKEN(aux_sym_shell_fragment_token3); + ACCEPT_TOKEN(aux_sym__shell_fragment_token3); if (lookahead == '\n' || lookahead == '\\') ADVANCE(206); if (lookahead != 0 && lookahead != '<') ADVANCE(207); END_STATE(); case 262: - ACCEPT_TOKEN(aux_sym_shell_fragment_token3); + ACCEPT_TOKEN(aux_sym__shell_fragment_token3); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && lookahead != '\\') ADVANCE(262); END_STATE(); case 263: - ACCEPT_TOKEN(aux_sym_shell_fragment_token4); + ACCEPT_TOKEN(aux_sym__shell_fragment_token4); END_STATE(); case 264: - ACCEPT_TOKEN(aux_sym_shell_fragment_token4); + ACCEPT_TOKEN(aux_sym__shell_fragment_token4); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); END_STATE(); case 265: ACCEPT_TOKEN(sym_line_continuation); @@ -3321,7 +3305,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(aux_sym_json_string_token1); if (lookahead == '\n') ADVANCE(273); if (lookahead == '"' || - lookahead == '\\') ADVANCE(293); + lookahead == '\\') ADVANCE(2); if (lookahead != 0) ADVANCE(271); END_STATE(); case 272: @@ -3345,23 +3329,23 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 275: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '#') ADVANCE(276); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '"' || + lookahead == '$' || + lookahead == '\\') ADVANCE(2); + if (lookahead != 0) ADVANCE(275); + END_STATE(); + case 276: + ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); + if (lookahead == '#') ADVANCE(275); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(275); + lookahead == ' ') ADVANCE(276); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && lookahead != '\\') ADVANCE(277); END_STATE(); - case 276: - ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '"' || - lookahead == '$' || - lookahead == '\\') ADVANCE(293); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(276); - END_STATE(); case 277: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && @@ -3374,13 +3358,13 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); END_STATE(); case 279: ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); if (lookahead == '"' || lookahead == '\\') ADVANCE(290); END_STATE(); @@ -3388,7 +3372,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BSLASH); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); if (lookahead == '\'' || lookahead == '\\') ADVANCE(291); END_STATE(); @@ -3397,22 +3381,22 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 282: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '#') ADVANCE(283); + if (lookahead == '\n') ADVANCE(293); + if (lookahead == '\'' || + lookahead == '\\') ADVANCE(2); + if (lookahead != 0) ADVANCE(282); + END_STATE(); + case 283: + ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); + if (lookahead == '#') ADVANCE(282); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(282); + lookahead == ' ') ADVANCE(283); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && lookahead != '\\') ADVANCE(284); END_STATE(); - case 283: - ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '\'' || - lookahead == '\\') ADVANCE(293); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(283); - END_STATE(); case 284: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead != 0 && @@ -3422,15 +3406,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 285: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); - if (lookahead == '\t' || - (0x0b <= lookahead && lookahead <= '\r') || + if (lookahead == '\n') ADVANCE(293); + if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '"' || lookahead == '$' || lookahead == '\'' || - lookahead == '\\') ADVANCE(293); - if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(285); + lookahead == '\\') ADVANCE(2); + if (lookahead != 0) ADVANCE(285); END_STATE(); case 286: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); @@ -3476,7 +3459,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_BSLASH2); if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(3); + lookahead == ' ') ADVANCE(4); END_STATE(); case 290: ACCEPT_TOKEN(sym_double_quoted_escape_sequence); @@ -3491,218 +3474,216 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 293: ACCEPT_TOKEN(sym_comment); - if (lookahead != 0 && - lookahead != '\n') ADVANCE(293); END_STATE(); default: return false; } } -static const TSLexMode ts_lex_modes[STATE_COUNT] = { +static const TSLexerMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 165}, - [2] = {.lex_state = 165}, - [3] = {.lex_state = 165}, - [4] = {.lex_state = 165}, - [5] = {.lex_state = 165}, + [1] = {.lex_state = 164}, + [2] = {.lex_state = 164}, + [3] = {.lex_state = 164}, + [4] = {.lex_state = 164}, + [5] = {.lex_state = 164}, [6] = {.lex_state = 43, .external_lex_state = 2}, [7] = {.lex_state = 43, .external_lex_state = 2}, - [8] = {.lex_state = 7}, + [8] = {.lex_state = 8}, [9] = {.lex_state = 30}, [10] = {.lex_state = 30}, [11] = {.lex_state = 30}, - [12] = {.lex_state = 44, .external_lex_state = 2}, - [13] = {.lex_state = 32, .external_lex_state = 2}, + [12] = {.lex_state = 32, .external_lex_state = 2}, + [13] = {.lex_state = 16, .external_lex_state = 3}, [14] = {.lex_state = 32, .external_lex_state = 2}, [15] = {.lex_state = 32, .external_lex_state = 2}, - [16] = {.lex_state = 44, .external_lex_state = 2}, + [16] = {.lex_state = 43, .external_lex_state = 2}, [17] = {.lex_state = 32, .external_lex_state = 2}, - [18] = {.lex_state = 8}, - [19] = {.lex_state = 43, .external_lex_state = 2}, - [20] = {.lex_state = 8}, - [21] = {.lex_state = 20}, - [22] = {.lex_state = 15, .external_lex_state = 3}, - [23] = {.lex_state = 15, .external_lex_state = 3}, - [24] = {.lex_state = 20}, + [18] = {.lex_state = 9}, + [19] = {.lex_state = 9}, + [20] = {.lex_state = 44, .external_lex_state = 2}, + [21] = {.lex_state = 16, .external_lex_state = 2}, + [22] = {.lex_state = 20}, + [23] = {.lex_state = 16, .external_lex_state = 3}, + [24] = {.lex_state = 44, .external_lex_state = 2}, [25] = {.lex_state = 20}, - [26] = {.lex_state = 42, .external_lex_state = 2}, - [27] = {.lex_state = 42, .external_lex_state = 2}, + [26] = {.lex_state = 20}, + [27] = {.lex_state = 16, .external_lex_state = 3}, [28] = {.lex_state = 42, .external_lex_state = 2}, - [29] = {.lex_state = 21}, - [30] = {.lex_state = 25}, - [31] = {.lex_state = 9}, - [32] = {.lex_state = 15, .external_lex_state = 3}, - [33] = {.lex_state = 25}, - [34] = {.lex_state = 6}, - [35] = {.lex_state = 9}, - [36] = {.lex_state = 25}, - [37] = {.lex_state = 25}, - [38] = {.lex_state = 9}, - [39] = {.lex_state = 21}, - [40] = {.lex_state = 6}, + [29] = {.lex_state = 42, .external_lex_state = 2}, + [30] = {.lex_state = 42, .external_lex_state = 2}, + [31] = {.lex_state = 25}, + [32] = {.lex_state = 25}, + [33] = {.lex_state = 10}, + [34] = {.lex_state = 25}, + [35] = {.lex_state = 21}, + [36] = {.lex_state = 7}, + [37] = {.lex_state = 10}, + [38] = {.lex_state = 21}, + [39] = {.lex_state = 25}, + [40] = {.lex_state = 7}, [41] = {.lex_state = 42, .external_lex_state = 2}, [42] = {.lex_state = 42, .external_lex_state = 2}, - [43] = {.lex_state = 15, .external_lex_state = 2}, + [43] = {.lex_state = 16, .external_lex_state = 3}, [44] = {.lex_state = 22, .external_lex_state = 4}, - [45] = {.lex_state = 15, .external_lex_state = 2}, - [46] = {.lex_state = 22, .external_lex_state = 4}, - [47] = {.lex_state = 7}, - [48] = {.lex_state = 7}, - [49] = {.lex_state = 22, .external_lex_state = 4}, - [50] = {.lex_state = 25}, - [51] = {.lex_state = 25}, + [45] = {.lex_state = 10}, + [46] = {.lex_state = 16, .external_lex_state = 2}, + [47] = {.lex_state = 22, .external_lex_state = 4}, + [48] = {.lex_state = 16, .external_lex_state = 2}, + [49] = {.lex_state = 8}, + [50] = {.lex_state = 8}, + [51] = {.lex_state = 22, .external_lex_state = 4}, [52] = {.lex_state = 25}, - [53] = {.lex_state = 9}, - [54] = {.lex_state = 33}, + [53] = {.lex_state = 25}, + [54] = {.lex_state = 25}, [55] = {.lex_state = 10}, [56] = {.lex_state = 32, .external_lex_state = 2}, - [57] = {.lex_state = 9}, - [58] = {.lex_state = 44, .external_lex_state = 2}, - [59] = {.lex_state = 10}, - [60] = {.lex_state = 22}, - [61] = {.lex_state = 28}, - [62] = {.lex_state = 15, .external_lex_state = 2}, - [63] = {.lex_state = 44, .external_lex_state = 2}, + [57] = {.lex_state = 32, .external_lex_state = 2}, + [58] = {.lex_state = 53}, + [59] = {.lex_state = 32, .external_lex_state = 2}, + [60] = {.lex_state = 16, .external_lex_state = 2}, + [61] = {.lex_state = 10}, + [62] = {.lex_state = 28}, + [63] = {.lex_state = 11}, [64] = {.lex_state = 32, .external_lex_state = 2}, - [65] = {.lex_state = 32, .external_lex_state = 2}, - [66] = {.lex_state = 32, .external_lex_state = 2}, + [65] = {.lex_state = 22}, + [66] = {.lex_state = 43, .external_lex_state = 2}, [67] = {.lex_state = 22}, - [68] = {.lex_state = 43, .external_lex_state = 2}, - [69] = {.lex_state = 32, .external_lex_state = 2}, - [70] = {.lex_state = 22}, - [71] = {.lex_state = 54}, - [72] = {.lex_state = 8}, - [73] = {.lex_state = 8}, + [68] = {.lex_state = 33}, + [69] = {.lex_state = 9}, + [70] = {.lex_state = 9}, + [71] = {.lex_state = 32, .external_lex_state = 2}, + [72] = {.lex_state = 11}, + [73] = {.lex_state = 22}, [74] = {.lex_state = 32, .external_lex_state = 2}, - [75] = {.lex_state = 20}, - [76] = {.lex_state = 23}, - [77] = {.lex_state = 11}, - [78] = {.lex_state = 20}, - [79] = {.lex_state = 12}, - [80] = {.lex_state = 20}, - [81] = {.lex_state = 23}, - [82] = {.lex_state = 53}, + [75] = {.lex_state = 23}, + [76] = {.lex_state = 44, .external_lex_state = 2}, + [77] = {.lex_state = 14}, + [78] = {.lex_state = 14}, + [79] = {.lex_state = 52}, + [80] = {.lex_state = 35}, + [81] = {.lex_state = 12}, + [82] = {.lex_state = 20}, [83] = {.lex_state = 13}, - [84] = {.lex_state = 53}, - [85] = {.lex_state = 12}, - [86] = {.lex_state = 23}, - [87] = {.lex_state = 13}, - [88] = {.lex_state = 165}, - [89] = {.lex_state = 12}, - [90] = {.lex_state = 13}, - [91] = {.lex_state = 11}, - [92] = {.lex_state = 35}, - [93] = {.lex_state = 53}, - [94] = {.lex_state = 11}, - [95] = {.lex_state = 21}, - [96] = {.lex_state = 19}, - [97] = {.lex_state = 165}, - [98] = {.lex_state = 16, .external_lex_state = 4}, - [99] = {.lex_state = 13}, - [100] = {.lex_state = 16, .external_lex_state = 4}, - [101] = {.lex_state = 34}, - [102] = {.lex_state = 50}, - [103] = {.lex_state = 19}, - [104] = {.lex_state = 165}, - [105] = {.lex_state = 54}, + [84] = {.lex_state = 14}, + [85] = {.lex_state = 52}, + [86] = {.lex_state = 52}, + [87] = {.lex_state = 12}, + [88] = {.lex_state = 20}, + [89] = {.lex_state = 13}, + [90] = {.lex_state = 164}, + [91] = {.lex_state = 13}, + [92] = {.lex_state = 44, .external_lex_state = 2}, + [93] = {.lex_state = 12}, + [94] = {.lex_state = 23}, + [95] = {.lex_state = 23}, + [96] = {.lex_state = 20}, + [97] = {.lex_state = 22, .external_lex_state = 4}, + [98] = {.lex_state = 22, .external_lex_state = 4}, + [99] = {.lex_state = 22, .external_lex_state = 4}, + [100] = {.lex_state = 36}, + [101] = {.lex_state = 164}, + [102] = {.lex_state = 34}, + [103] = {.lex_state = 26}, + [104] = {.lex_state = 53}, + [105] = {.lex_state = 19}, [106] = {.lex_state = 26}, - [107] = {.lex_state = 52}, - [108] = {.lex_state = 36}, - [109] = {.lex_state = 25}, - [110] = {.lex_state = 34}, - [111] = {.lex_state = 32, .external_lex_state = 2}, - [112] = {.lex_state = 26}, - [113] = {.lex_state = 22, .external_lex_state = 4}, - [114] = {.lex_state = 25}, + [107] = {.lex_state = 14}, + [108] = {.lex_state = 34}, + [109] = {.lex_state = 22, .external_lex_state = 4}, + [110] = {.lex_state = 25}, + [111] = {.lex_state = 164}, + [112] = {.lex_state = 19}, + [113] = {.lex_state = 32, .external_lex_state = 2}, + [114] = {.lex_state = 49}, [115] = {.lex_state = 22, .external_lex_state = 4}, - [116] = {.lex_state = 26}, - [117] = {.lex_state = 7}, - [118] = {.lex_state = 21}, + [116] = {.lex_state = 21}, + [117] = {.lex_state = 25}, + [118] = {.lex_state = 51}, [119] = {.lex_state = 22, .external_lex_state = 4}, - [120] = {.lex_state = 7}, - [121] = {.lex_state = 16, .external_lex_state = 4}, - [122] = {.lex_state = 26}, - [123] = {.lex_state = 26}, - [124] = {.lex_state = 16, .external_lex_state = 4}, + [120] = {.lex_state = 8}, + [121] = {.lex_state = 21}, + [122] = {.lex_state = 22, .external_lex_state = 4}, + [123] = {.lex_state = 8}, + [124] = {.lex_state = 26}, [125] = {.lex_state = 26}, [126] = {.lex_state = 26}, - [127] = {.lex_state = 6}, - [128] = {.lex_state = 9, .external_lex_state = 4}, - [129] = {.lex_state = 15, .external_lex_state = 4}, - [130] = {.lex_state = 9, .external_lex_state = 4}, - [131] = {.lex_state = 9, .external_lex_state = 4}, - [132] = {.lex_state = 37}, - [133] = {.lex_state = 22}, - [134] = {.lex_state = 22}, - [135] = {.lex_state = 31}, - [136] = {.lex_state = 22}, - [137] = {.lex_state = 9}, - [138] = {.lex_state = 9}, - [139] = {.lex_state = 9}, - [140] = {.lex_state = 31}, - [141] = {.lex_state = 9, .external_lex_state = 4}, - [142] = {.lex_state = 9, .external_lex_state = 4}, - [143] = {.lex_state = 13}, - [144] = {.lex_state = 39}, - [145] = {.lex_state = 40}, - [146] = {.lex_state = 9, .external_lex_state = 4}, - [147] = {.lex_state = 32, .external_lex_state = 2}, - [148] = {.lex_state = 6}, - [149] = {.lex_state = 10}, - [150] = {.lex_state = 15, .external_lex_state = 4}, - [151] = {.lex_state = 6}, - [152] = {.lex_state = 15, .external_lex_state = 4}, - [153] = {.lex_state = 165}, - [154] = {.lex_state = 9, .external_lex_state = 4}, - [155] = {.lex_state = 39}, - [156] = {.lex_state = 9, .external_lex_state = 4}, - [157] = {.lex_state = 31}, - [158] = {.lex_state = 9, .external_lex_state = 4}, - [159] = {.lex_state = 6}, - [160] = {.lex_state = 6}, - [161] = {.lex_state = 10}, - [162] = {.lex_state = 46}, - [163] = {.lex_state = 13}, - [164] = {.lex_state = 9}, - [165] = {.lex_state = 165}, - [166] = {.lex_state = 165, .external_lex_state = 5}, - [167] = {.lex_state = 15}, - [168] = {.lex_state = 16, .external_lex_state = 4}, - [169] = {.lex_state = 16}, - [170] = {.lex_state = 13}, - [171] = {.lex_state = 46}, - [172] = {.lex_state = 46}, - [173] = {.lex_state = 15}, - [174] = {.lex_state = 15}, - [175] = {.lex_state = 13}, - [176] = {.lex_state = 53}, - [177] = {.lex_state = 53}, - [178] = {.lex_state = 53}, - [179] = {.lex_state = 165}, - [180] = {.lex_state = 165, .external_lex_state = 5}, + [127] = {.lex_state = 26}, + [128] = {.lex_state = 26}, + [129] = {.lex_state = 11}, + [130] = {.lex_state = 7}, + [131] = {.lex_state = 164}, + [132] = {.lex_state = 7}, + [133] = {.lex_state = 31}, + [134] = {.lex_state = 32, .external_lex_state = 2}, + [135] = {.lex_state = 7}, + [136] = {.lex_state = 7}, + [137] = {.lex_state = 37}, + [138] = {.lex_state = 8, .external_lex_state = 4}, + [139] = {.lex_state = 22}, + [140] = {.lex_state = 22}, + [141] = {.lex_state = 8, .external_lex_state = 4}, + [142] = {.lex_state = 22}, + [143] = {.lex_state = 10}, + [144] = {.lex_state = 10}, + [145] = {.lex_state = 7}, + [146] = {.lex_state = 14}, + [147] = {.lex_state = 8, .external_lex_state = 4}, + [148] = {.lex_state = 16, .external_lex_state = 4}, + [149] = {.lex_state = 8, .external_lex_state = 4}, + [150] = {.lex_state = 8, .external_lex_state = 4}, + [151] = {.lex_state = 39}, + [152] = {.lex_state = 31}, + [153] = {.lex_state = 31}, + [154] = {.lex_state = 11}, + [155] = {.lex_state = 8, .external_lex_state = 4}, + [156] = {.lex_state = 8, .external_lex_state = 4}, + [157] = {.lex_state = 8, .external_lex_state = 4}, + [158] = {.lex_state = 39}, + [159] = {.lex_state = 40}, + [160] = {.lex_state = 16, .external_lex_state = 4}, + [161] = {.lex_state = 8, .external_lex_state = 4}, + [162] = {.lex_state = 10}, + [163] = {.lex_state = 14}, + [164] = {.lex_state = 164}, + [165] = {.lex_state = 164}, + [166] = {.lex_state = 0, .external_lex_state = 5}, + [167] = {.lex_state = 22}, + [168] = {.lex_state = 22, .external_lex_state = 4}, + [169] = {.lex_state = 46}, + [170] = {.lex_state = 16}, + [171] = {.lex_state = 16}, + [172] = {.lex_state = 164}, + [173] = {.lex_state = 14}, + [174] = {.lex_state = 52}, + [175] = {.lex_state = 52}, + [176] = {.lex_state = 52}, + [177] = {.lex_state = 0, .external_lex_state = 5}, + [178] = {.lex_state = 164}, + [179] = {.lex_state = 23}, + [180] = {.lex_state = 23}, [181] = {.lex_state = 23}, - [182] = {.lex_state = 23}, - [183] = {.lex_state = 23}, - [184] = {.lex_state = 11}, - [185] = {.lex_state = 11}, + [182] = {.lex_state = 12}, + [183] = {.lex_state = 12}, + [184] = {.lex_state = 12}, + [185] = {.lex_state = 13}, [186] = {.lex_state = 46}, - [187] = {.lex_state = 15, .external_lex_state = 4}, - [188] = {.lex_state = 12}, - [189] = {.lex_state = 165}, - [190] = {.lex_state = 165, .external_lex_state = 5}, - [191] = {.lex_state = 165}, - [192] = {.lex_state = 12}, - [193] = {.lex_state = 12}, - [194] = {.lex_state = 46}, - [195] = {.lex_state = 165}, - [196] = {.lex_state = 165}, - [197] = {.lex_state = 46}, - [198] = {.lex_state = 16}, - [199] = {.lex_state = 165}, - [200] = {.lex_state = 46}, + [187] = {.lex_state = 46}, + [188] = {.lex_state = 22}, + [189] = {.lex_state = 0, .external_lex_state = 5}, + [190] = {.lex_state = 13}, + [191] = {.lex_state = 46}, + [192] = {.lex_state = 164}, + [193] = {.lex_state = 22}, + [194] = {.lex_state = 164}, + [195] = {.lex_state = 46}, + [196] = {.lex_state = 14}, + [197] = {.lex_state = 164}, + [198] = {.lex_state = 46}, + [199] = {.lex_state = 46}, + [200] = {.lex_state = 10}, [201] = {.lex_state = 46}, - [202] = {.lex_state = 16}, + [202] = {.lex_state = 46}, [203] = {.lex_state = 46}, [204] = {.lex_state = 46}, [205] = {.lex_state = 46}, @@ -3716,119 +3697,117 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [213] = {.lex_state = 46}, [214] = {.lex_state = 46}, [215] = {.lex_state = 46}, - [216] = {.lex_state = 46}, - [217] = {.lex_state = 11}, - [218] = {.lex_state = 9, .external_lex_state = 4}, - [219] = {.lex_state = 13}, - [220] = {.lex_state = 37}, - [221] = {.lex_state = 54}, + [216] = {.lex_state = 13}, + [217] = {.lex_state = 14}, + [218] = {.lex_state = 164}, + [219] = {.lex_state = 8, .external_lex_state = 4}, + [220] = {.lex_state = 19}, + [221] = {.lex_state = 19}, [222] = {.lex_state = 19}, [223] = {.lex_state = 19}, - [224] = {.lex_state = 165, .external_lex_state = 5}, - [225] = {.lex_state = 19}, - [226] = {.lex_state = 19}, - [227] = {.lex_state = 55}, - [228] = {.lex_state = 9, .external_lex_state = 4}, - [229] = {.lex_state = 165}, - [230] = {.lex_state = 165}, - [231] = {.lex_state = 9, .external_lex_state = 4}, - [232] = {.lex_state = 165}, - [233] = {.lex_state = 9, .external_lex_state = 4}, - [234] = {.lex_state = 165}, - [235] = {.lex_state = 55}, - [236] = {.lex_state = 9, .external_lex_state = 4}, - [237] = {.lex_state = 13}, - [238] = {.lex_state = 9}, - [239] = {.lex_state = 19}, - [240] = {.lex_state = 165}, - [241] = {.lex_state = 16}, - [242] = {.lex_state = 45}, - [243] = {.lex_state = 15}, - [244] = {.lex_state = 165}, - [245] = {.lex_state = 13}, - [246] = {.lex_state = 13}, - [247] = {.lex_state = 9}, - [248] = {.lex_state = 56}, - [249] = {.lex_state = 165}, - [250] = {.lex_state = 9}, - [251] = {.lex_state = 56}, - [252] = {.lex_state = 165}, - [253] = {.lex_state = 165}, - [254] = {.lex_state = 165}, - [255] = {.lex_state = 9}, - [256] = {.lex_state = 9}, - [257] = {.lex_state = 9}, - [258] = {.lex_state = 9}, - [259] = {.lex_state = 200}, - [260] = {.lex_state = 258}, - [261] = {.lex_state = 9}, - [262] = {.lex_state = 51}, - [263] = {.lex_state = 9}, - [264] = {.lex_state = 165}, - [265] = {.lex_state = 9}, - [266] = {.lex_state = 165}, - [267] = {.lex_state = 165}, - [268] = {.lex_state = 57}, - [269] = {.lex_state = 9}, - [270] = {.lex_state = 200}, - [271] = {.lex_state = 165}, - [272] = {.lex_state = 165}, - [273] = {.lex_state = 9}, - [274] = {.lex_state = 165}, - [275] = {.lex_state = 9}, - [276] = {.lex_state = 165}, - [277] = {.lex_state = 57}, - [278] = {.lex_state = 9}, - [279] = {.lex_state = 165}, - [280] = {.lex_state = 165}, - [281] = {.lex_state = 57}, - [282] = {.lex_state = 9}, - [283] = {.lex_state = 165}, - [284] = {.lex_state = 165}, - [285] = {.lex_state = 55}, - [286] = {.lex_state = 258}, - [287] = {.lex_state = 165}, - [288] = {.lex_state = 9}, - [289] = {.lex_state = 9}, - [290] = {.lex_state = 165}, - [291] = {.lex_state = 9}, - [292] = {.lex_state = 9}, - [293] = {.lex_state = 165}, - [294] = {.lex_state = 47}, - [295] = {.lex_state = 9}, - [296] = {.lex_state = 165}, - [297] = {.lex_state = 9}, - [298] = {.lex_state = 165}, - [299] = {.lex_state = 47}, - [300] = {.lex_state = 165}, - [301] = {.lex_state = 9}, - [302] = {.lex_state = 165}, - [303] = {.lex_state = 49}, - [304] = {.lex_state = 165}, - [305] = {.lex_state = 165}, - [306] = {.lex_state = 56}, - [307] = {.lex_state = 165}, - [308] = {.lex_state = 56}, - [309] = {.lex_state = 165}, - [310] = {.lex_state = 56}, - [311] = {.lex_state = 165}, - [312] = {.lex_state = 56}, - [313] = {.lex_state = 9}, - [314] = {.lex_state = 56}, - [315] = {.lex_state = 56}, - [316] = {.lex_state = 56}, - [317] = {.lex_state = 56}, - [318] = {.lex_state = 56}, - [319] = {.lex_state = 56}, - [320] = {.lex_state = 56}, - [321] = {.lex_state = 56}, - [322] = {.lex_state = 49}, - [323] = {.lex_state = 49}, - [324] = {.lex_state = 57}, + [224] = {.lex_state = 8, .external_lex_state = 4}, + [225] = {.lex_state = 0, .external_lex_state = 5}, + [226] = {.lex_state = 8, .external_lex_state = 4}, + [227] = {.lex_state = 14}, + [228] = {.lex_state = 45}, + [229] = {.lex_state = 53}, + [230] = {.lex_state = 164}, + [231] = {.lex_state = 54}, + [232] = {.lex_state = 19}, + [233] = {.lex_state = 164}, + [234] = {.lex_state = 20}, + [235] = {.lex_state = 37}, + [236] = {.lex_state = 22}, + [237] = {.lex_state = 10}, + [238] = {.lex_state = 14}, + [239] = {.lex_state = 14}, + [240] = {.lex_state = 54}, + [241] = {.lex_state = 164}, + [242] = {.lex_state = 8, .external_lex_state = 4}, + [243] = {.lex_state = 164}, + [244] = {.lex_state = 164}, + [245] = {.lex_state = 8, .external_lex_state = 4}, + [246] = {.lex_state = 55}, + [247] = {.lex_state = 8}, + [248] = {.lex_state = 0}, + [249] = {.lex_state = 8}, + [250] = {.lex_state = 258}, + [251] = {.lex_state = 164}, + [252] = {.lex_state = 8}, + [253] = {.lex_state = 8}, + [254] = {.lex_state = 164}, + [255] = {.lex_state = 55}, + [256] = {.lex_state = 164}, + [257] = {.lex_state = 8}, + [258] = {.lex_state = 258}, + [259] = {.lex_state = 8}, + [260] = {.lex_state = 200}, + [261] = {.lex_state = 56}, + [262] = {.lex_state = 164}, + [263] = {.lex_state = 164}, + [264] = {.lex_state = 8}, + [265] = {.lex_state = 164}, + [266] = {.lex_state = 56}, + [267] = {.lex_state = 8}, + [268] = {.lex_state = 8}, + [269] = {.lex_state = 8}, + [270] = {.lex_state = 52}, + [271] = {.lex_state = 200}, + [272] = {.lex_state = 164}, + [273] = {.lex_state = 8}, + [274] = {.lex_state = 164}, + [275] = {.lex_state = 56}, + [276] = {.lex_state = 164}, + [277] = {.lex_state = 8}, + [278] = {.lex_state = 164}, + [279] = {.lex_state = 56}, + [280] = {.lex_state = 8}, + [281] = {.lex_state = 54}, + [282] = {.lex_state = 164}, + [283] = {.lex_state = 52}, + [284] = {.lex_state = 164}, + [285] = {.lex_state = 164}, + [286] = {.lex_state = 8}, + [287] = {.lex_state = 8}, + [288] = {.lex_state = 164}, + [289] = {.lex_state = 164}, + [290] = {.lex_state = 164}, + [291] = {.lex_state = 164}, + [292] = {.lex_state = 48}, + [293] = {.lex_state = 8}, + [294] = {.lex_state = 164}, + [295] = {.lex_state = 8}, + [296] = {.lex_state = 164}, + [297] = {.lex_state = 50}, + [298] = {.lex_state = 164}, + [299] = {.lex_state = 8}, + [300] = {.lex_state = 164}, + [301] = {.lex_state = 8}, + [302] = {.lex_state = 164}, + [303] = {.lex_state = 164}, + [304] = {.lex_state = 55}, + [305] = {.lex_state = 164}, + [306] = {.lex_state = 55}, + [307] = {.lex_state = 164}, + [308] = {.lex_state = 55}, + [309] = {.lex_state = 164}, + [310] = {.lex_state = 55}, + [311] = {.lex_state = 55}, + [312] = {.lex_state = 8}, + [313] = {.lex_state = 55}, + [314] = {.lex_state = 55}, + [315] = {.lex_state = 55}, + [316] = {.lex_state = 55}, + [317] = {.lex_state = 55}, + [318] = {.lex_state = 55}, + [319] = {.lex_state = 55}, + [320] = {.lex_state = 48}, + [321] = {.lex_state = 48}, + [322] = {.lex_state = 8}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { - [0] = { + [STATE(0)] = { [ts_builtin_sym_end] = ACTIONS(1), [anon_sym_COLON] = ACTIONS(1), [aux_sym__immediate_user_name_or_group_fragment_token1] = ACTIONS(1), @@ -3843,7 +3822,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_AT] = ACTIONS(1), [anon_sym_DASH_DASH] = ACTIONS(1), [anon_sym_COMMA] = ACTIONS(1), - [aux_sym_shell_fragment_token2] = ACTIONS(1), + [aux_sym__shell_fragment_token2] = ACTIONS(1), [sym_line_continuation] = ACTIONS(3), [anon_sym_LBRACK] = ACTIONS(1), [anon_sym_COMMA2] = ACTIONS(1), @@ -3851,56 +3830,56 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_DQUOTE] = ACTIONS(1), [anon_sym_BSLASH] = ACTIONS(1), [anon_sym_SQUOTE] = ACTIONS(1), - [sym_comment] = ACTIONS(5), + [sym_comment] = ACTIONS(3), [sym_heredoc_marker] = ACTIONS(1), - [sym_heredoc_line] = ACTIONS(1), + [sym__heredoc_line] = ACTIONS(1), [sym_heredoc_end] = ACTIONS(1), - [sym_heredoc_nl] = ACTIONS(1), + [sym__heredoc_nl] = ACTIONS(1), [sym_error_sentinel] = ACTIONS(1), }, - [1] = { - [sym_source_file] = STATE(253), - [sym__instruction] = STATE(255), - [sym_from_instruction] = STATE(255), - [sym_run_instruction] = STATE(255), - [sym_cmd_instruction] = STATE(255), - [sym_label_instruction] = STATE(255), - [sym_expose_instruction] = STATE(255), - [sym_env_instruction] = STATE(255), - [sym_add_instruction] = STATE(255), - [sym_copy_instruction] = STATE(255), - [sym_entrypoint_instruction] = STATE(255), - [sym_volume_instruction] = STATE(255), - [sym_user_instruction] = STATE(255), - [sym_workdir_instruction] = STATE(255), - [sym_arg_instruction] = STATE(255), - [sym_onbuild_instruction] = STATE(255), - [sym_stopsignal_instruction] = STATE(255), - [sym_healthcheck_instruction] = STATE(255), - [sym_shell_instruction] = STATE(255), - [sym_maintainer_instruction] = STATE(255), - [sym_cross_build_instruction] = STATE(255), + [STATE(1)] = { + [sym_source_file] = STATE(248), + [sym__instruction] = STATE(253), + [sym_from_instruction] = STATE(253), + [sym_run_instruction] = STATE(253), + [sym_cmd_instruction] = STATE(253), + [sym_label_instruction] = STATE(253), + [sym_expose_instruction] = STATE(253), + [sym_env_instruction] = STATE(253), + [sym_add_instruction] = STATE(253), + [sym_copy_instruction] = STATE(253), + [sym_entrypoint_instruction] = STATE(253), + [sym_volume_instruction] = STATE(253), + [sym_user_instruction] = STATE(253), + [sym_workdir_instruction] = STATE(253), + [sym_arg_instruction] = STATE(253), + [sym_onbuild_instruction] = STATE(253), + [sym_stopsignal_instruction] = STATE(253), + [sym_healthcheck_instruction] = STATE(253), + [sym_shell_instruction] = STATE(253), + [sym_maintainer_instruction] = STATE(253), + [sym_cross_build_instruction] = STATE(253), [aux_sym_source_file_repeat1] = STATE(2), - [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), + [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), [sym_comment] = ACTIONS(3), }, @@ -3908,52 +3887,52 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { static const uint16_t ts_small_parse_table[] = { [0] = 23, - ACTIONS(9), 1, + ACTIONS(7), 1, aux_sym_from_instruction_token1, - ACTIONS(11), 1, + ACTIONS(9), 1, aux_sym_run_instruction_token1, - ACTIONS(13), 1, + ACTIONS(11), 1, aux_sym_cmd_instruction_token1, - ACTIONS(15), 1, + ACTIONS(13), 1, aux_sym_label_instruction_token1, - ACTIONS(17), 1, + ACTIONS(15), 1, aux_sym_expose_instruction_token1, - ACTIONS(19), 1, + ACTIONS(17), 1, aux_sym_env_instruction_token1, - ACTIONS(21), 1, + ACTIONS(19), 1, aux_sym_add_instruction_token1, - ACTIONS(23), 1, + ACTIONS(21), 1, aux_sym_copy_instruction_token1, - ACTIONS(25), 1, + ACTIONS(23), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(27), 1, + ACTIONS(25), 1, aux_sym_volume_instruction_token1, - ACTIONS(29), 1, + ACTIONS(27), 1, aux_sym_user_instruction_token1, - ACTIONS(31), 1, + ACTIONS(29), 1, aux_sym_workdir_instruction_token1, - ACTIONS(33), 1, + ACTIONS(31), 1, aux_sym_arg_instruction_token1, - ACTIONS(35), 1, + ACTIONS(33), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(37), 1, + ACTIONS(35), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(39), 1, + ACTIONS(37), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(41), 1, + ACTIONS(39), 1, aux_sym_shell_instruction_token1, - ACTIONS(43), 1, + ACTIONS(41), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(45), 1, + ACTIONS(43), 1, aux_sym_cross_build_instruction_token1, - ACTIONS(47), 1, + ACTIONS(45), 1, ts_builtin_sym_end, STATE(3), 1, aux_sym_source_file_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(255), 20, + STATE(253), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -3975,52 +3954,52 @@ static const uint16_t ts_small_parse_table[] = { sym_maintainer_instruction, sym_cross_build_instruction, [90] = 23, - ACTIONS(49), 1, + ACTIONS(47), 1, ts_builtin_sym_end, - ACTIONS(51), 1, + ACTIONS(49), 1, aux_sym_from_instruction_token1, - ACTIONS(54), 1, + ACTIONS(52), 1, aux_sym_run_instruction_token1, - ACTIONS(57), 1, + ACTIONS(55), 1, aux_sym_cmd_instruction_token1, - ACTIONS(60), 1, + ACTIONS(58), 1, aux_sym_label_instruction_token1, - ACTIONS(63), 1, + ACTIONS(61), 1, aux_sym_expose_instruction_token1, - ACTIONS(66), 1, + ACTIONS(64), 1, aux_sym_env_instruction_token1, - ACTIONS(69), 1, + ACTIONS(67), 1, aux_sym_add_instruction_token1, - ACTIONS(72), 1, + ACTIONS(70), 1, aux_sym_copy_instruction_token1, - ACTIONS(75), 1, + ACTIONS(73), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(78), 1, + ACTIONS(76), 1, aux_sym_volume_instruction_token1, - ACTIONS(81), 1, + ACTIONS(79), 1, aux_sym_user_instruction_token1, - ACTIONS(84), 1, + ACTIONS(82), 1, aux_sym_workdir_instruction_token1, - ACTIONS(87), 1, + ACTIONS(85), 1, aux_sym_arg_instruction_token1, - ACTIONS(90), 1, + ACTIONS(88), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(93), 1, + ACTIONS(91), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(96), 1, + ACTIONS(94), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(99), 1, + ACTIONS(97), 1, aux_sym_shell_instruction_token1, - ACTIONS(102), 1, + ACTIONS(100), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(105), 1, + ACTIONS(103), 1, aux_sym_cross_build_instruction_token1, STATE(3), 1, aux_sym_source_file_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(255), 20, + STATE(253), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -4042,48 +4021,48 @@ static const uint16_t ts_small_parse_table[] = { sym_maintainer_instruction, sym_cross_build_instruction, [180] = 21, - ACTIONS(9), 1, + ACTIONS(7), 1, aux_sym_from_instruction_token1, - ACTIONS(11), 1, + ACTIONS(9), 1, aux_sym_run_instruction_token1, - ACTIONS(13), 1, + ACTIONS(11), 1, aux_sym_cmd_instruction_token1, - ACTIONS(15), 1, + ACTIONS(13), 1, aux_sym_label_instruction_token1, - ACTIONS(17), 1, + ACTIONS(15), 1, aux_sym_expose_instruction_token1, - ACTIONS(19), 1, + ACTIONS(17), 1, aux_sym_env_instruction_token1, - ACTIONS(21), 1, + ACTIONS(19), 1, aux_sym_add_instruction_token1, - ACTIONS(23), 1, + ACTIONS(21), 1, aux_sym_copy_instruction_token1, - ACTIONS(25), 1, + ACTIONS(23), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(27), 1, + ACTIONS(25), 1, aux_sym_volume_instruction_token1, - ACTIONS(29), 1, + ACTIONS(27), 1, aux_sym_user_instruction_token1, - ACTIONS(31), 1, + ACTIONS(29), 1, aux_sym_workdir_instruction_token1, - ACTIONS(33), 1, + ACTIONS(31), 1, aux_sym_arg_instruction_token1, - ACTIONS(35), 1, + ACTIONS(33), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(37), 1, + ACTIONS(35), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(39), 1, + ACTIONS(37), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(41), 1, + ACTIONS(39), 1, aux_sym_shell_instruction_token1, - ACTIONS(43), 1, + ACTIONS(41), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(45), 1, + ACTIONS(43), 1, aux_sym_cross_build_instruction_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(265), 20, + STATE(264), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -4108,7 +4087,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(49), 20, + ACTIONS(47), 20, ts_builtin_sym_end, aux_sym_from_instruction_token1, aux_sym_run_instruction_token1, @@ -4129,94 +4108,89 @@ static const uint16_t ts_small_parse_table[] = { aux_sym_shell_instruction_token1, aux_sym_maintainer_instruction_token1, aux_sym_cross_build_instruction_token1, - [291] = 9, - ACTIONS(110), 1, + [291] = 8, + ACTIONS(108), 1, anon_sym_DASH_DASH, - ACTIONS(112), 1, + ACTIONS(110), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(112), 1, sym_heredoc_marker, - STATE(22), 1, - aux_sym_shell_fragment_repeat1, - STATE(150), 1, - sym_shell_fragment, + STATE(13), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(131), 2, + STATE(149), 2, sym_shell_command, sym_json_string_array, - STATE(19), 3, + STATE(7), 3, sym_param, sym_mount_param, aux_sym_run_instruction_repeat1, - ACTIONS(108), 4, + ACTIONS(106), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [326] = 9, - ACTIONS(110), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [323] = 8, + ACTIONS(108), 1, anon_sym_DASH_DASH, - ACTIONS(112), 1, + ACTIONS(110), 1, anon_sym_LBRACK, - ACTIONS(114), 1, + ACTIONS(112), 1, sym_heredoc_marker, - STATE(22), 1, - aux_sym_shell_fragment_repeat1, - STATE(150), 1, - sym_shell_fragment, + STATE(13), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(141), 2, + STATE(150), 2, sym_shell_command, sym_json_string_array, - STATE(6), 3, + STATE(16), 3, sym_param, sym_mount_param, aux_sym_run_instruction_repeat1, - ACTIONS(108), 4, + ACTIONS(106), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [361] = 9, - ACTIONS(116), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [355] = 9, + ACTIONS(114), 1, anon_sym_LF, - ACTIONS(118), 1, + ACTIONS(116), 1, anon_sym_DOLLAR2, - ACTIONS(120), 1, + ACTIONS(118), 1, aux_sym__env_key_token1, ACTIONS(122), 1, anon_sym_DQUOTE, ACTIONS(124), 1, anon_sym_SQUOTE, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, ACTIONS(126), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(47), 3, + STATE(49), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(239), 3, + STATE(232), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [395] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, + [389] = 7, ACTIONS(128), 1, anon_sym_DOLLAR2, ACTIONS(130), 1, anon_sym_DQUOTE, ACTIONS(132), 1, anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, @@ -4224,21 +4198,20 @@ static const uint16_t ts_small_parse_table[] = { sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(313), 3, + STATE(247), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [425] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, + [417] = 7, ACTIONS(128), 1, anon_sym_DOLLAR2, ACTIONS(130), 1, anon_sym_DQUOTE, ACTIONS(132), 1, anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, @@ -4246,21 +4219,20 @@ static const uint16_t ts_small_parse_table[] = { sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(127), 3, + STATE(273), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [455] = 8, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, + [445] = 7, ACTIONS(128), 1, anon_sym_DOLLAR2, ACTIONS(130), 1, anon_sym_DQUOTE, ACTIONS(132), 1, anon_sym_SQUOTE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, @@ -4268,2186 +4240,2180 @@ static const uint16_t ts_small_parse_table[] = { sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(258), 3, + STATE(132), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [485] = 8, - ACTIONS(138), 1, - aux_sym_shell_fragment_token2, - ACTIONS(140), 1, - anon_sym_LBRACK, - ACTIONS(142), 1, - sym_heredoc_marker, - STATE(43), 1, - aux_sym_shell_fragment_repeat1, - STATE(167), 1, - sym_shell_fragment, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(263), 2, - sym_shell_command, - sym_json_string_array, - ACTIONS(136), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [514] = 11, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(144), 1, + [473] = 10, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(146), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(148), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(150), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(152), 1, + ACTIONS(144), 1, sym_heredoc_marker, - STATE(56), 1, + STATE(57), 1, aux_sym_add_instruction_repeat2, - STATE(84), 1, + STATE(86), 1, sym_expansion, - STATE(299), 1, + STATE(270), 1, sym_path_with_heredoc, - STATE(17), 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(15), 2, sym_param, aux_sym_add_instruction_repeat1, - [549] = 11, - ACTIONS(3), 1, + [506] = 7, + ACTIONS(112), 1, + sym_heredoc_marker, + ACTIONS(150), 1, + sym_required_line_continuation, + STATE(23), 1, + aux_sym__shell_fragment, + STATE(148), 1, + aux_sym_shell_command_repeat1, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(144), 1, + ACTIONS(146), 2, + sym__heredoc_nl, + anon_sym_LF, + ACTIONS(148), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [533] = 10, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(146), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(148), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(150), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(152), 1, + ACTIONS(144), 1, sym_heredoc_marker, STATE(74), 1, aux_sym_add_instruction_repeat2, - STATE(84), 1, + STATE(86), 1, sym_expansion, - STATE(299), 1, + STATE(270), 1, sym_path_with_heredoc, - STATE(15), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [584] = 11, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(144), 1, + STATE(17), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [566] = 10, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(146), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(148), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(150), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(152), 1, + ACTIONS(144), 1, sym_heredoc_marker, - STATE(65), 1, + STATE(59), 1, aux_sym_add_instruction_repeat2, - STATE(84), 1, + STATE(86), 1, sym_expansion, - STATE(299), 1, + STATE(270), 1, sym_path_with_heredoc, - STATE(64), 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(56), 2, sym_param, aux_sym_add_instruction_repeat1, - [619] = 8, - ACTIONS(138), 1, - aux_sym_shell_fragment_token2, - ACTIONS(140), 1, - anon_sym_LBRACK, - ACTIONS(142), 1, - sym_heredoc_marker, - STATE(43), 1, - aux_sym_shell_fragment_repeat1, - STATE(167), 1, - sym_shell_fragment, + [599] = 5, + ACTIONS(154), 1, + anon_sym_DASH_DASH, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(292), 2, - sym_shell_command, - sym_json_string_array, - ACTIONS(136), 3, + ACTIONS(157), 2, + sym_heredoc_marker, + anon_sym_LBRACK, + STATE(16), 3, + sym_param, + sym_mount_param, + aux_sym_run_instruction_repeat1, + ACTIONS(152), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [648] = 11, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(144), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [622] = 10, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(146), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(148), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(150), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(152), 1, + ACTIONS(144), 1, sym_heredoc_marker, - STATE(69), 1, + STATE(71), 1, aux_sym_add_instruction_repeat2, - STATE(84), 1, + STATE(86), 1, sym_expansion, - STATE(299), 1, + STATE(270), 1, sym_path_with_heredoc, - STATE(64), 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(56), 2, sym_param, aux_sym_add_instruction_repeat1, - [683] = 6, + [655] = 6, ACTIONS(128), 1, anon_sym_DOLLAR2, - ACTIONS(154), 1, + ACTIONS(159), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(158), 2, + ACTIONS(163), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - ACTIONS(156), 3, + ACTIONS(161), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - STATE(20), 3, + STATE(19), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [708] = 5, - ACTIONS(162), 1, - anon_sym_DASH_DASH, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(165), 2, - sym_heredoc_marker, - anon_sym_LBRACK, - STATE(19), 3, - sym_param, - sym_mount_param, - aux_sym_run_instruction_repeat1, - ACTIONS(160), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [731] = 6, - ACTIONS(167), 1, + [680] = 6, + ACTIONS(165), 1, anon_sym_LF, - ACTIONS(169), 1, + ACTIONS(167), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(174), 2, + ACTIONS(172), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - ACTIONS(172), 3, + ACTIONS(170), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - STATE(20), 3, + STATE(19), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [756] = 6, + [705] = 7, + ACTIONS(177), 1, + aux_sym__shell_fragment_token2, ACTIONS(179), 1, - aux_sym_from_instruction_token2, + anon_sym_LBRACK, + ACTIONS(181), 1, + sym_heredoc_marker, + STATE(21), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(269), 2, + sym_shell_command, + sym_json_string_array, + ACTIONS(175), 3, + aux_sym_path_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [731] = 7, + ACTIONS(146), 1, + anon_sym_LF, ACTIONS(181), 1, + sym_heredoc_marker, + ACTIONS(185), 1, + sym_required_line_continuation, + STATE(46), 1, + aux_sym__shell_fragment, + STATE(170), 1, + aux_sym_shell_command_repeat1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(183), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [757] = 6, + ACTIONS(189), 1, + aux_sym_from_instruction_token2, + ACTIONS(191), 1, anon_sym_DOLLAR2, - ACTIONS(183), 1, + ACTIONS(193), 1, aux_sym_image_name_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(177), 3, + ACTIONS(187), 3, anon_sym_LF, anon_sym_COLON, anon_sym_AT, - STATE(24), 3, + STATE(26), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_name_repeat1, - [780] = 6, - ACTIONS(114), 1, - sym_heredoc_marker, - ACTIONS(189), 1, + [781] = 6, + ACTIONS(200), 1, sym_required_line_continuation, + ACTIONS(202), 1, + sym_heredoc_marker, STATE(23), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, + aux_sym__shell_fragment, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(185), 2, - sym_heredoc_nl, + ACTIONS(195), 2, + sym__heredoc_nl, anon_sym_LF, - ACTIONS(187), 4, + ACTIONS(197), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [804] = 6, - ACTIONS(196), 1, - sym_required_line_continuation, - ACTIONS(198), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [805] = 7, + ACTIONS(177), 1, + aux_sym__shell_fragment_token2, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(181), 1, sym_heredoc_marker, - STATE(23), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, + STATE(21), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(191), 2, - sym_heredoc_nl, - anon_sym_LF, - ACTIONS(193), 4, + STATE(249), 2, + sym_shell_command, + sym_json_string_array, + ACTIONS(175), 3, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [828] = 6, - ACTIONS(181), 1, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [831] = 6, + ACTIONS(191), 1, anon_sym_DOLLAR2, - ACTIONS(203), 1, + ACTIONS(207), 1, aux_sym_from_instruction_token2, - ACTIONS(205), 1, + ACTIONS(209), 1, aux_sym_image_name_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(201), 3, + ACTIONS(205), 3, anon_sym_LF, anon_sym_COLON, anon_sym_AT, - STATE(25), 3, + STATE(22), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_name_repeat1, - [852] = 6, - ACTIONS(209), 1, + [855] = 6, + ACTIONS(213), 1, aux_sym_from_instruction_token2, - ACTIONS(211), 1, + ACTIONS(215), 1, anon_sym_DOLLAR2, - ACTIONS(214), 1, + ACTIONS(218), 1, aux_sym_image_name_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(207), 3, + ACTIONS(211), 3, anon_sym_LF, anon_sym_COLON, anon_sym_AT, - STATE(25), 3, + STATE(26), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_name_repeat1, - [876] = 5, - ACTIONS(221), 1, + [879] = 6, + ACTIONS(112), 1, + sym_heredoc_marker, + ACTIONS(223), 1, + sym_required_line_continuation, + STATE(23), 1, + aux_sym__shell_fragment, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(221), 2, + sym__heredoc_nl, + anon_sym_LF, + ACTIONS(148), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [903] = 5, + ACTIONS(229), 1, anon_sym_COMMA, - STATE(27), 1, + STATE(29), 1, aux_sym_mount_param_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(219), 3, + ACTIONS(227), 3, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(217), 4, + ACTIONS(225), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [898] = 5, - ACTIONS(221), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [925] = 5, + ACTIONS(229), 1, anon_sym_COMMA, - STATE(28), 1, + STATE(30), 1, aux_sym_mount_param_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(225), 3, + ACTIONS(233), 3, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(223), 4, + ACTIONS(231), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [920] = 5, - ACTIONS(231), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [947] = 5, + ACTIONS(239), 1, anon_sym_COMMA, - STATE(28), 1, + STATE(30), 1, aux_sym_mount_param_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(229), 3, + ACTIONS(237), 3, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(227), 4, + ACTIONS(235), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [942] = 6, - ACTIONS(236), 1, - aux_sym_from_instruction_token2, - ACTIONS(238), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [969] = 6, + ACTIONS(242), 1, anon_sym_DOLLAR2, - ACTIONS(240), 1, - aux_sym_image_tag_token1, - ACTIONS(5), 2, + ACTIONS(245), 1, + anon_sym_DQUOTE, + ACTIONS(250), 1, + sym_double_quoted_escape_sequence, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(234), 2, - anon_sym_LF, - anon_sym_AT, - STATE(39), 3, + ACTIONS(247), 2, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + STATE(31), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_tag_repeat1, - [965] = 6, - ACTIONS(242), 1, + aux_sym_double_quoted_string_repeat1, + [992] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(244), 1, + ACTIONS(255), 1, anon_sym_DQUOTE, - ACTIONS(248), 1, + ACTIONS(259), 1, sym_double_quoted_escape_sequence, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(246), 2, + ACTIONS(257), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(37), 3, + STATE(31), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [988] = 5, - ACTIONS(252), 1, + [1015] = 5, + ACTIONS(263), 1, aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(254), 1, + ACTIONS(265), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(250), 2, + ACTIONS(261), 2, anon_sym_LF, anon_sym_COLON, - STATE(35), 4, + STATE(37), 4, sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, aux_sym__user_name_or_group_repeat1, - [1009] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(191), 3, - sym_heredoc_marker, - sym_heredoc_nl, - anon_sym_LF, - ACTIONS(196), 5, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - sym_required_line_continuation, - [1026] = 6, - ACTIONS(242), 1, + [1036] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(248), 1, - sym_double_quoted_escape_sequence, - ACTIONS(256), 1, + ACTIONS(267), 1, anon_sym_DQUOTE, - ACTIONS(5), 2, + ACTIONS(271), 1, + sym_double_quoted_escape_sequence, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(246), 2, + ACTIONS(269), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(37), 3, + STATE(39), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1049] = 7, - ACTIONS(258), 1, + [1059] = 6, + ACTIONS(275), 1, + aux_sym_from_instruction_token2, + ACTIONS(277), 1, + anon_sym_DOLLAR2, + ACTIONS(279), 1, + aux_sym_image_tag_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(273), 2, anon_sym_LF, - ACTIONS(260), 1, + anon_sym_AT, + STATE(38), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_tag_repeat1, + [1082] = 7, + ACTIONS(281), 1, + anon_sym_LF, + ACTIONS(283), 1, aux_sym_label_pair_token1, - ACTIONS(263), 1, + ACTIONS(285), 1, anon_sym_DQUOTE, - ACTIONS(266), 1, + ACTIONS(287), 1, anon_sym_SQUOTE, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(34), 2, + STATE(40), 2, sym_label_pair, aux_sym_label_instruction_repeat1, - STATE(249), 2, + STATE(254), 2, sym_double_quoted_string, sym_single_quoted_string, - [1074] = 5, - ACTIONS(254), 1, - anon_sym_DOLLAR2, - ACTIONS(271), 1, + [1107] = 5, + ACTIONS(291), 1, aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(5), 2, + ACTIONS(294), 1, + anon_sym_DOLLAR2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(269), 2, + ACTIONS(289), 2, anon_sym_LF, anon_sym_COLON, - STATE(38), 4, + STATE(37), 4, sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, aux_sym__user_name_or_group_repeat1, - [1095] = 6, - ACTIONS(242), 1, + [1128] = 6, + ACTIONS(299), 1, + aux_sym_from_instruction_token2, + ACTIONS(301), 1, anon_sym_DOLLAR2, - ACTIONS(273), 1, - anon_sym_DQUOTE, - ACTIONS(277), 1, - sym_double_quoted_escape_sequence, - ACTIONS(5), 2, + ACTIONS(304), 1, + aux_sym_image_tag_token1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(275), 2, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - STATE(33), 3, + ACTIONS(297), 2, + anon_sym_LF, + anon_sym_AT, + STATE(38), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_double_quoted_string_repeat1, - [1118] = 6, - ACTIONS(279), 1, + aux_sym_image_tag_repeat1, + [1151] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(282), 1, - anon_sym_DQUOTE, - ACTIONS(287), 1, + ACTIONS(259), 1, sym_double_quoted_escape_sequence, - ACTIONS(5), 2, + ACTIONS(307), 1, + anon_sym_DQUOTE, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(284), 2, + ACTIONS(257), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(37), 3, + STATE(31), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1141] = 5, - ACTIONS(292), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(295), 1, - anon_sym_DOLLAR2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(290), 2, - anon_sym_LF, - anon_sym_COLON, - STATE(38), 4, - sym__immediate_user_name_or_group_fragment, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym__user_name_or_group_repeat1, - [1162] = 6, - ACTIONS(300), 1, - aux_sym_from_instruction_token2, - ACTIONS(302), 1, - anon_sym_DOLLAR2, - ACTIONS(305), 1, - aux_sym_image_tag_token1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(298), 2, - anon_sym_LF, - anon_sym_AT, - STATE(39), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_tag_repeat1, - [1185] = 7, - ACTIONS(308), 1, + [1174] = 7, + ACTIONS(309), 1, anon_sym_LF, - ACTIONS(310), 1, + ACTIONS(311), 1, aux_sym_label_pair_token1, - ACTIONS(312), 1, - anon_sym_DQUOTE, ACTIONS(314), 1, + anon_sym_DQUOTE, + ACTIONS(317), 1, anon_sym_SQUOTE, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(34), 2, + STATE(40), 2, sym_label_pair, aux_sym_label_instruction_repeat1, - STATE(249), 2, + STATE(254), 2, sym_double_quoted_string, sym_single_quoted_string, - [1210] = 3, + [1199] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(316), 4, + ACTIONS(320), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - ACTIONS(318), 4, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + ACTIONS(322), 4, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_COMMA, anon_sym_LBRACK, - [1227] = 3, + [1216] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(227), 4, + ACTIONS(235), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - ACTIONS(229), 4, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + ACTIONS(237), 4, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_COMMA, anon_sym_LBRACK, - [1244] = 6, - ACTIONS(142), 1, - sym_heredoc_marker, - ACTIONS(185), 1, - anon_sym_LF, - ACTIONS(189), 1, - sym_required_line_continuation, - STATE(45), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, + [1233] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(320), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1267] = 6, - ACTIONS(322), 1, + ACTIONS(195), 3, + sym_heredoc_marker, + sym__heredoc_nl, anon_sym_LF, + ACTIONS(200), 5, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + sym_required_line_continuation, + [1250] = 6, ACTIONS(324), 1, - aux_sym_path_token3, + anon_sym_LF, ACTIONS(326), 1, + aux_sym_path_token3, + ACTIONS(328), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(328), 2, - sym_heredoc_nl, + ACTIONS(330), 2, + sym__heredoc_nl, sym__non_newline_whitespace, - STATE(46), 3, + STATE(47), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1290] = 6, - ACTIONS(191), 1, + [1273] = 5, + ACTIONS(265), 1, + anon_sym_DOLLAR2, + ACTIONS(334), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(332), 2, + anon_sym_LF, + anon_sym_COLON, + STATE(33), 4, + sym__immediate_user_name_or_group_fragment, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym__user_name_or_group_repeat1, + [1294] = 6, + ACTIONS(195), 1, anon_sym_LF, - ACTIONS(196), 1, + ACTIONS(200), 1, sym_required_line_continuation, - ACTIONS(333), 1, + ACTIONS(339), 1, sym_heredoc_marker, - STATE(45), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, + STATE(46), 1, + aux_sym__shell_fragment, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(330), 4, + ACTIONS(336), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1313] = 6, - ACTIONS(326), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1317] = 6, + ACTIONS(328), 1, anon_sym_DOLLAR2, - ACTIONS(336), 1, + ACTIONS(342), 1, anon_sym_LF, - ACTIONS(338), 1, + ACTIONS(344), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(340), 2, - sym_heredoc_nl, + ACTIONS(346), 2, + sym__heredoc_nl, sym__non_newline_whitespace, - STATE(49), 3, + STATE(51), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1336] = 6, - ACTIONS(118), 1, + [1340] = 6, + ACTIONS(181), 1, + sym_heredoc_marker, + ACTIONS(221), 1, + anon_sym_LF, + ACTIONS(223), 1, + sym_required_line_continuation, + STATE(46), 1, + aux_sym__shell_fragment, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(183), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1363] = 6, + ACTIONS(116), 1, anon_sym_DOLLAR2, - ACTIONS(154), 1, + ACTIONS(159), 1, anon_sym_LF, - ACTIONS(156), 1, + ACTIONS(161), 1, aux_sym__env_key_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(342), 2, + ACTIONS(348), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(48), 3, + STATE(50), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [1359] = 6, - ACTIONS(167), 1, + [1386] = 6, + ACTIONS(165), 1, anon_sym_LF, - ACTIONS(172), 1, + ACTIONS(170), 1, aux_sym__env_key_token1, - ACTIONS(344), 1, + ACTIONS(350), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(347), 2, + ACTIONS(353), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(48), 3, + STATE(50), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [1382] = 6, - ACTIONS(350), 1, + [1409] = 6, + ACTIONS(356), 1, anon_sym_LF, - ACTIONS(352), 1, + ACTIONS(358), 1, aux_sym_path_token3, - ACTIONS(355), 1, + ACTIONS(361), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(358), 2, - sym_heredoc_nl, + ACTIONS(364), 2, + sym__heredoc_nl, sym__non_newline_whitespace, - STATE(49), 3, + STATE(51), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1405] = 6, - ACTIONS(242), 1, + [1432] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(360), 1, + ACTIONS(366), 1, anon_sym_DQUOTE, - ACTIONS(364), 1, + ACTIONS(370), 1, sym_double_quoted_escape_sequence, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(362), 2, + ACTIONS(368), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(51), 3, + STATE(53), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1428] = 6, - ACTIONS(242), 1, + [1455] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(248), 1, + ACTIONS(259), 1, sym_double_quoted_escape_sequence, - ACTIONS(366), 1, + ACTIONS(372), 1, anon_sym_DQUOTE, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(246), 2, + ACTIONS(257), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(37), 3, + STATE(31), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1451] = 6, - ACTIONS(242), 1, + [1478] = 6, + ACTIONS(253), 1, anon_sym_DOLLAR2, - ACTIONS(368), 1, + ACTIONS(374), 1, anon_sym_DQUOTE, - ACTIONS(372), 1, + ACTIONS(378), 1, sym_double_quoted_escape_sequence, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(370), 2, + ACTIONS(376), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(30), 3, + STATE(32), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1474] = 6, - ACTIONS(374), 1, + [1501] = 6, + ACTIONS(380), 1, anon_sym_LF, - ACTIONS(376), 1, + ACTIONS(382), 1, aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(379), 1, + ACTIONS(385), 1, anon_sym_DOLLAR2, - STATE(53), 1, + STATE(55), 1, aux_sym__immediate_user_name_or_group, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(164), 3, + STATE(200), 3, sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - [1496] = 9, - ACTIONS(3), 1, + [1523] = 5, + ACTIONS(388), 1, + aux_sym_path_token1, + ACTIONS(392), 1, + anon_sym_DASH_DASH, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(140), 1, - anon_sym_LBRACK, - ACTIONS(382), 1, + STATE(56), 2, + sym_param, + aux_sym_add_instruction_repeat1, + ACTIONS(390), 3, + sym_heredoc_marker, + aux_sym_path_with_heredoc_token1, + anon_sym_DOLLAR, + [1543] = 8, + ACTIONS(395), 1, aux_sym_path_token1, - ACTIONS(384), 1, - aux_sym_path_token2, - ACTIONS(386), 1, + ACTIONS(397), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(399), 1, anon_sym_DOLLAR, - STATE(60), 1, + ACTIONS(401), 1, + sym_heredoc_marker, + STATE(44), 1, sym_expansion, - STATE(198), 1, - sym_path, - STATE(275), 1, - sym_json_string_array, - [1524] = 6, - ACTIONS(388), 1, - anon_sym_LF, - ACTIONS(390), 1, - aux_sym_from_instruction_token2, - ACTIONS(392), 1, - anon_sym_DOLLAR2, - ACTIONS(394), 1, - aux_sym_image_digest_token1, - ACTIONS(5), 2, + STATE(64), 1, + aux_sym_add_instruction_repeat2, + STATE(109), 1, + sym_path_with_heredoc, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(59), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_digest_repeat1, - [1546] = 9, - ACTIONS(3), 1, + [1569] = 8, + ACTIONS(403), 1, + anon_sym_DOLLAR, + ACTIONS(405), 1, + aux_sym_image_name_token1, + ACTIONS(407), 1, + anon_sym_DASH_DASH, + STATE(25), 1, + sym_expansion, + STATE(77), 1, + sym_image_name, + STATE(104), 1, + sym_param, + STATE(238), 1, + sym_image_spec, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(396), 1, + [1595] = 8, + ACTIONS(395), 1, aux_sym_path_token1, - ACTIONS(398), 1, + ACTIONS(397), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(400), 1, + ACTIONS(399), 1, anon_sym_DOLLAR, - ACTIONS(402), 1, + ACTIONS(401), 1, sym_heredoc_marker, STATE(44), 1, sym_expansion, - STATE(66), 1, + STATE(64), 1, aux_sym_add_instruction_repeat2, - STATE(100), 1, + STATE(99), 1, sym_path_with_heredoc, - [1574] = 6, - ACTIONS(254), 1, - anon_sym_DOLLAR2, - ACTIONS(404), 1, - anon_sym_LF, - ACTIONS(406), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - STATE(53), 1, - aux_sym__immediate_user_name_or_group, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(164), 3, - sym__immediate_user_name_or_group_fragment, - sym__immediate_expansion, - sym__imm_expansion, - [1596] = 6, - ACTIONS(114), 1, - sym_heredoc_marker, - ACTIONS(408), 1, - aux_sym_shell_fragment_token2, - STATE(22), 1, - aux_sym_shell_fragment_repeat1, - STATE(187), 1, - sym_shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(108), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1618] = 6, - ACTIONS(410), 1, - anon_sym_LF, - ACTIONS(412), 1, - aux_sym_from_instruction_token2, - ACTIONS(414), 1, - anon_sym_DOLLAR2, - ACTIONS(417), 1, - aux_sym_image_digest_token1, - ACTIONS(5), 2, + [1621] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(59), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_digest_repeat1, - [1640] = 6, - ACTIONS(420), 1, + ACTIONS(195), 2, + sym_heredoc_marker, anon_sym_LF, - ACTIONS(422), 1, - aux_sym_path_token3, - ACTIONS(424), 1, + ACTIONS(200), 5, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + sym_required_line_continuation, + [1637] = 6, + ACTIONS(265), 1, anon_sym_DOLLAR2, - ACTIONS(426), 1, - sym__non_newline_whitespace, - ACTIONS(5), 2, + ACTIONS(409), 1, + anon_sym_LF, + ACTIONS(411), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + STATE(55), 1, + aux_sym__immediate_user_name_or_group, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(70), 3, + STATE(200), 3, + sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [1662] = 6, - ACTIONS(428), 1, + [1659] = 6, + ACTIONS(413), 1, aux_sym_label_pair_token1, - ACTIONS(430), 1, + ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(432), 1, + ACTIONS(417), 1, anon_sym_SQUOTE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(40), 2, + STATE(36), 2, sym_label_pair, aux_sym_label_instruction_repeat1, - STATE(249), 2, + STATE(254), 2, sym_double_quoted_string, sym_single_quoted_string, - [1684] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(191), 2, - sym_heredoc_marker, + [1681] = 6, + ACTIONS(419), 1, anon_sym_LF, - ACTIONS(196), 5, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - sym_required_line_continuation, - [1700] = 6, - ACTIONS(138), 1, - aux_sym_shell_fragment_token2, - ACTIONS(142), 1, - sym_heredoc_marker, - STATE(43), 1, - aux_sym_shell_fragment_repeat1, - STATE(243), 1, - sym_shell_fragment, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(136), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1722] = 6, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(434), 1, - aux_sym_path_token1, - ACTIONS(438), 1, - anon_sym_DASH_DASH, - STATE(64), 2, - sym_param, - aux_sym_add_instruction_repeat1, - ACTIONS(436), 3, - sym_heredoc_marker, - aux_sym_path_with_heredoc_token1, - anon_sym_DOLLAR, - [1744] = 9, - ACTIONS(3), 1, + ACTIONS(421), 1, + aux_sym_from_instruction_token2, + ACTIONS(423), 1, + anon_sym_DOLLAR2, + ACTIONS(426), 1, + aux_sym_image_digest_token1, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(396), 1, + STATE(63), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [1703] = 8, + ACTIONS(429), 1, aux_sym_path_token1, - ACTIONS(398), 1, + ACTIONS(432), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(400), 1, + ACTIONS(435), 1, anon_sym_DOLLAR, - ACTIONS(402), 1, + ACTIONS(438), 1, sym_heredoc_marker, - STATE(44), 1, - sym_expansion, - STATE(66), 1, + STATE(64), 1, aux_sym_add_instruction_repeat2, - STATE(121), 1, + STATE(86), 1, + sym_expansion, + STATE(270), 1, sym_path_with_heredoc, - [1772] = 9, - ACTIONS(3), 1, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(441), 1, - aux_sym_path_token1, - ACTIONS(444), 1, - aux_sym_path_with_heredoc_token1, - ACTIONS(447), 1, - anon_sym_DOLLAR, - ACTIONS(450), 1, - sym_heredoc_marker, - STATE(66), 1, - aux_sym_add_instruction_repeat2, - STATE(84), 1, - sym_expansion, - STATE(299), 1, - sym_path_with_heredoc, - [1800] = 6, - ACTIONS(350), 1, + [1729] = 6, + ACTIONS(356), 1, anon_sym_LF, - ACTIONS(358), 1, + ACTIONS(364), 1, sym__non_newline_whitespace, - ACTIONS(453), 1, + ACTIONS(441), 1, aux_sym_path_token3, - ACTIONS(456), 1, + ACTIONS(444), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(67), 3, + STATE(65), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1822] = 3, + [1751] = 3, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 3, + ACTIONS(449), 3, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(459), 4, + ACTIONS(447), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1838] = 9, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(396), 1, - aux_sym_path_token1, - ACTIONS(398), 1, - aux_sym_path_with_heredoc_token1, - ACTIONS(400), 1, - anon_sym_DOLLAR, - ACTIONS(402), 1, - sym_heredoc_marker, - STATE(44), 1, - sym_expansion, - STATE(66), 1, - aux_sym_add_instruction_repeat2, - STATE(124), 1, - sym_path_with_heredoc, - [1866] = 6, - ACTIONS(424), 1, - anon_sym_DOLLAR2, - ACTIONS(463), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1767] = 6, + ACTIONS(451), 1, anon_sym_LF, - ACTIONS(465), 1, + ACTIONS(453), 1, aux_sym_path_token3, - ACTIONS(467), 1, + ACTIONS(455), 1, + anon_sym_DOLLAR2, + ACTIONS(457), 1, sym__non_newline_whitespace, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(67), 3, + STATE(73), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1888] = 9, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(469), 1, + [1789] = 8, + ACTIONS(179), 1, + anon_sym_LBRACK, + ACTIONS(459), 1, + aux_sym_path_token1, + ACTIONS(461), 1, + aux_sym_path_token2, + ACTIONS(463), 1, anon_sym_DOLLAR, - ACTIONS(471), 1, - aux_sym_image_name_token1, - ACTIONS(473), 1, - anon_sym_DASH_DASH, - STATE(21), 1, + STATE(67), 1, sym_expansion, - STATE(83), 1, - sym_image_name, - STATE(105), 1, - sym_param, - STATE(237), 1, - sym_image_spec, - [1916] = 3, - ACTIONS(5), 2, + STATE(167), 1, + sym_path, + STATE(252), 1, + sym_json_string_array, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [1815] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(465), 2, anon_sym_LF, anon_sym_DOLLAR2, - ACTIONS(477), 5, + ACTIONS(467), 5, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - [1932] = 3, - ACTIONS(5), 2, + [1831] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(469), 2, anon_sym_LF, anon_sym_DOLLAR2, - ACTIONS(481), 5, + ACTIONS(471), 5, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - [1948] = 9, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(396), 1, + [1847] = 8, + ACTIONS(395), 1, aux_sym_path_token1, - ACTIONS(398), 1, + ACTIONS(397), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(400), 1, + ACTIONS(399), 1, anon_sym_DOLLAR, - ACTIONS(402), 1, + ACTIONS(401), 1, sym_heredoc_marker, STATE(44), 1, sym_expansion, - STATE(66), 1, + STATE(64), 1, aux_sym_add_instruction_repeat2, - STATE(98), 1, + STATE(97), 1, sym_path_with_heredoc, - [1976] = 3, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(477), 2, - aux_sym_from_instruction_token2, - aux_sym_image_name_token2, - ACTIONS(475), 4, + [1873] = 6, + ACTIONS(473), 1, anon_sym_LF, - anon_sym_COLON, + ACTIONS(475), 1, + aux_sym_from_instruction_token2, + ACTIONS(477), 1, anon_sym_DOLLAR2, - anon_sym_AT, - [1991] = 5, - ACTIONS(426), 1, + ACTIONS(479), 1, + aux_sym_image_digest_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(63), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [1895] = 6, + ACTIONS(455), 1, + anon_sym_DOLLAR2, + ACTIONS(481), 1, anon_sym_LF, ACTIONS(483), 1, aux_sym_path_token3, ACTIONS(485), 1, - anon_sym_DOLLAR2, - ACTIONS(5), 2, + sym__non_newline_whitespace, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(81), 3, + STATE(65), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2010] = 5, - ACTIONS(487), 1, + [1917] = 8, + ACTIONS(395), 1, + aux_sym_path_token1, + ACTIONS(397), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(399), 1, + anon_sym_DOLLAR, + ACTIONS(401), 1, + sym_heredoc_marker, + STATE(44), 1, + sym_expansion, + STATE(64), 1, + aux_sym_add_instruction_repeat2, + STATE(98), 1, + sym_path_with_heredoc, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [1943] = 5, + ACTIONS(457), 1, anon_sym_LF, + ACTIONS(487), 1, + aux_sym_path_token3, ACTIONS(489), 1, - aux_sym__stopsignal_value_token2, - ACTIONS(492), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(77), 3, + STATE(94), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2029] = 3, - ACTIONS(5), 2, + aux_sym_path_repeat1, + [1962] = 5, + ACTIONS(112), 1, + sym_heredoc_marker, + ACTIONS(493), 1, + aux_sym__shell_fragment_token2, + STATE(27), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 2, - aux_sym_from_instruction_token2, - aux_sym_image_name_token2, - ACTIONS(479), 4, - anon_sym_LF, - anon_sym_COLON, - anon_sym_DOLLAR2, - anon_sym_AT, - [2044] = 5, + ACTIONS(491), 3, + aux_sym_path_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1981] = 7, ACTIONS(495), 1, anon_sym_LF, ACTIONS(497), 1, - anon_sym_DOLLAR2, - ACTIONS(499), 1, - aux_sym_image_alias_token2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(85), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_alias_repeat1, - [2063] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(503), 2, aux_sym_from_instruction_token2, - aux_sym_image_name_token2, - ACTIONS(501), 4, - anon_sym_LF, + ACTIONS(499), 1, anon_sym_COLON, - anon_sym_DOLLAR2, + ACTIONS(501), 1, anon_sym_AT, - [2078] = 5, - ACTIONS(467), 1, + STATE(146), 1, + sym_image_tag, + STATE(227), 1, + sym_image_digest, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [2004] = 5, + ACTIONS(503), 1, anon_sym_LF, - ACTIONS(485), 1, - anon_sym_DOLLAR2, ACTIONS(505), 1, + anon_sym_DOLLAR, + ACTIONS(508), 1, + aux_sym_expose_port_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(78), 3, + sym_expansion, + sym_expose_port, + aux_sym_expose_instruction_repeat1, + [2023] = 5, + ACTIONS(346), 1, + sym__non_newline_whitespace, + ACTIONS(511), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(513), 1, + anon_sym_DOLLAR2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(86), 3, + STATE(85), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2097] = 5, - ACTIONS(358), 1, - sym__non_newline_whitespace, - ACTIONS(507), 1, - aux_sym_path_token3, - ACTIONS(510), 1, + [2042] = 5, + ACTIONS(265), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(411), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + STATE(61), 1, + aux_sym__immediate_user_name_or_group, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(82), 3, + STATE(200), 3, + sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [2116] = 7, - ACTIONS(513), 1, - anon_sym_LF, + [2061] = 5, ACTIONS(515), 1, - aux_sym_from_instruction_token2, + anon_sym_LF, ACTIONS(517), 1, - anon_sym_COLON, + aux_sym__stopsignal_value_token2, ACTIONS(519), 1, - anon_sym_AT, - STATE(143), 1, - sym_image_tag, - STATE(245), 1, - sym_image_digest, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [2139] = 5, - ACTIONS(328), 1, - sym__non_newline_whitespace, - ACTIONS(521), 1, - aux_sym_path_token3, - ACTIONS(523), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(93), 3, + STATE(87), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [2158] = 5, - ACTIONS(525), 1, + aux_sym__stopsignal_value_repeat1, + [2080] = 3, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(467), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token2, + ACTIONS(465), 4, anon_sym_LF, - ACTIONS(527), 1, + anon_sym_COLON, + anon_sym_DOLLAR2, + anon_sym_AT, + [2095] = 5, + ACTIONS(521), 1, + anon_sym_LF, + ACTIONS(523), 1, anon_sym_DOLLAR2, - ACTIONS(530), 1, + ACTIONS(525), 1, aux_sym_image_alias_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(85), 3, + STATE(89), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_alias_repeat1, - [2177] = 5, - ACTIONS(358), 1, + [2114] = 5, + ACTIONS(527), 1, anon_sym_LF, + ACTIONS(529), 1, + anon_sym_DOLLAR, + ACTIONS(531), 1, + aux_sym_expose_port_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(78), 3, + sym_expansion, + sym_expose_port, + aux_sym_expose_instruction_repeat1, + [2133] = 5, + ACTIONS(364), 1, + sym__non_newline_whitespace, ACTIONS(533), 1, aux_sym_path_token3, ACTIONS(536), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(86), 3, + STATE(85), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2196] = 5, + [2152] = 5, + ACTIONS(330), 1, + sym__non_newline_whitespace, + ACTIONS(513), 1, + anon_sym_DOLLAR2, ACTIONS(539), 1, - anon_sym_LF, + aux_sym_path_token3, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(79), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_path_repeat1, + [2171] = 5, ACTIONS(541), 1, - anon_sym_DOLLAR, + anon_sym_LF, ACTIONS(543), 1, - aux_sym_expose_port_token1, - ACTIONS(5), 2, + aux_sym__stopsignal_value_token2, + ACTIONS(546), 1, + anon_sym_DOLLAR2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(90), 3, - sym_expansion, - sym_expose_port, - aux_sym_expose_instruction_repeat1, - [2215] = 6, - ACTIONS(13), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(545), 1, - anon_sym_NONE, - ACTIONS(547), 1, - anon_sym_DASH_DASH, - STATE(257), 1, - sym_cmd_instruction, - ACTIONS(3), 2, + STATE(87), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym__stopsignal_value_repeat1, + [2190] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(97), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [2236] = 5, - ACTIONS(497), 1, + ACTIONS(471), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token2, + ACTIONS(469), 4, + anon_sym_LF, + anon_sym_COLON, + anon_sym_DOLLAR2, + anon_sym_AT, + [2205] = 5, + ACTIONS(523), 1, anon_sym_DOLLAR2, ACTIONS(549), 1, anon_sym_LF, ACTIONS(551), 1, aux_sym_image_alias_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(79), 3, + STATE(91), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_alias_repeat1, - [2255] = 5, + [2224] = 6, + ACTIONS(11), 1, + aux_sym_cmd_instruction_token1, ACTIONS(553), 1, - anon_sym_LF, + anon_sym_NONE, ACTIONS(555), 1, - anon_sym_DOLLAR, - ACTIONS(558), 1, - aux_sym_expose_port_token1, - ACTIONS(5), 2, + anon_sym_DASH_DASH, + STATE(287), 1, + sym_cmd_instruction, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(90), 3, - sym_expansion, - sym_expose_port, - aux_sym_expose_instruction_repeat1, - [2274] = 5, - ACTIONS(561), 1, + STATE(111), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [2245] = 5, + ACTIONS(557), 1, anon_sym_LF, - ACTIONS(563), 1, - aux_sym__stopsignal_value_token2, - ACTIONS(565), 1, + ACTIONS(559), 1, anon_sym_DOLLAR2, - ACTIONS(5), 2, + ACTIONS(562), 1, + aux_sym_image_alias_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(94), 3, + STATE(91), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2293] = 5, - ACTIONS(254), 1, - anon_sym_DOLLAR2, - ACTIONS(406), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - STATE(57), 1, - aux_sym__immediate_user_name_or_group, + aux_sym_image_alias_repeat1, + [2264] = 5, + ACTIONS(181), 1, + sym_heredoc_marker, + ACTIONS(567), 1, + aux_sym__shell_fragment_token2, + STATE(48), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(164), 3, - sym__immediate_user_name_or_group_fragment, + ACTIONS(565), 3, + aux_sym_path_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [2283] = 5, + ACTIONS(519), 1, + anon_sym_DOLLAR2, + ACTIONS(569), 1, + anon_sym_LF, + ACTIONS(571), 1, + aux_sym__stopsignal_value_token2, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(81), 3, sym__immediate_expansion, sym__imm_expansion, - [2312] = 5, - ACTIONS(340), 1, - sym__non_newline_whitespace, - ACTIONS(523), 1, + aux_sym__stopsignal_value_repeat1, + [2302] = 5, + ACTIONS(485), 1, + anon_sym_LF, + ACTIONS(489), 1, anon_sym_DOLLAR2, - ACTIONS(567), 1, + ACTIONS(573), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(82), 3, + STATE(95), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2331] = 5, - ACTIONS(565), 1, - anon_sym_DOLLAR2, - ACTIONS(569), 1, + [2321] = 5, + ACTIONS(364), 1, anon_sym_LF, - ACTIONS(571), 1, - aux_sym__stopsignal_value_token2, - ACTIONS(5), 2, + ACTIONS(575), 1, + aux_sym_path_token3, + ACTIONS(578), 1, + anon_sym_DOLLAR2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(77), 3, + STATE(95), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2350] = 3, - ACTIONS(5), 2, + aux_sym_path_repeat1, + [2340] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(477), 2, + ACTIONS(583), 2, aux_sym_from_instruction_token2, - aux_sym_image_tag_token1, - ACTIONS(475), 3, + aux_sym_image_name_token2, + ACTIONS(581), 4, anon_sym_LF, + anon_sym_COLON, anon_sym_DOLLAR2, anon_sym_AT, - [2364] = 5, - ACTIONS(573), 1, - anon_sym_LF, - ACTIONS(575), 1, - aux_sym__env_key_token1, - STATE(271), 1, - sym__env_key, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(96), 2, - sym_env_pair, - aux_sym_env_instruction_repeat1, - [2382] = 5, - ACTIONS(13), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(547), 1, - anon_sym_DASH_DASH, - STATE(282), 1, - sym_cmd_instruction, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(153), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [2400] = 5, - ACTIONS(578), 1, + [2355] = 5, + ACTIONS(585), 1, anon_sym_LF, - ACTIONS(580), 1, + ACTIONS(587), 1, sym__non_newline_whitespace, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(5), 2, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(154), 2, + STATE(156), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [2418] = 4, - ACTIONS(584), 1, + [2373] = 5, + ACTIONS(587), 1, + sym__non_newline_whitespace, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(591), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(586), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - ACTIONS(588), 2, - anon_sym_SLASHtcp, - anon_sym_SLASHudp, - [2434] = 5, - ACTIONS(580), 1, + STATE(147), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [2391] = 5, + ACTIONS(587), 1, sym__non_newline_whitespace, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(590), 1, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(593), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(158), 2, + STATE(155), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [2452] = 7, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(382), 1, - aux_sym_path_token1, - ACTIONS(384), 1, - aux_sym_path_token2, - ACTIONS(386), 1, - anon_sym_DOLLAR, - STATE(60), 1, - sym_expansion, - STATE(241), 1, - sym_path, - [2474] = 5, - ACTIONS(592), 1, - aux_sym__env_key_token1, - STATE(242), 1, - sym__env_key, - STATE(278), 1, - sym__spaced_env_pair, + [2409] = 4, + ACTIONS(477), 1, + anon_sym_DOLLAR2, + ACTIONS(595), 1, + aux_sym_image_digest_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(103), 2, - sym_env_pair, - aux_sym_env_instruction_repeat1, - [2492] = 5, - ACTIONS(594), 1, - anon_sym_LF, - ACTIONS(596), 1, - aux_sym__env_key_token1, - STATE(271), 1, - sym__env_key, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(96), 2, - sym_env_pair, - aux_sym_env_instruction_repeat1, - [2510] = 4, - ACTIONS(598), 1, + STATE(72), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [2425] = 4, + ACTIONS(597), 1, anon_sym_DOLLAR, - ACTIONS(600), 1, + ACTIONS(599), 1, aux_sym_expose_port_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(87), 3, + STATE(84), 3, sym_expansion, sym_expose_port, aux_sym_expose_instruction_repeat1, - [2526] = 7, - ACTIONS(3), 1, + [2441] = 6, + ACTIONS(459), 1, + aux_sym_path_token1, + ACTIONS(461), 1, + aux_sym_path_token2, + ACTIONS(463), 1, + anon_sym_DOLLAR, + STATE(67), 1, + sym_expansion, + STATE(236), 1, + sym_path, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(469), 1, + [2461] = 5, + ACTIONS(603), 1, + anon_sym_SQUOTE, + ACTIONS(605), 1, + sym_single_quoted_escape_sequence, + STATE(106), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(601), 2, + anon_sym_BSLASH, + aux_sym_single_quoted_string_token1, + [2479] = 6, + ACTIONS(403), 1, anon_sym_DOLLAR, - ACTIONS(471), 1, + ACTIONS(405), 1, aux_sym_image_name_token1, - STATE(21), 1, + STATE(25), 1, sym_expansion, - STATE(83), 1, + STATE(77), 1, sym_image_name, - STATE(246), 1, + STATE(217), 1, sym_image_spec, - [2548] = 5, - ACTIONS(604), 1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [2499] = 5, + ACTIONS(607), 1, + anon_sym_LF, + ACTIONS(609), 1, + aux_sym__env_key_token1, + STATE(262), 1, + sym__env_key, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(105), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [2517] = 5, + ACTIONS(614), 1, anon_sym_SQUOTE, - ACTIONS(606), 1, + ACTIONS(616), 1, sym_single_quoted_escape_sequence, - STATE(116), 1, + STATE(124), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(602), 2, + ACTIONS(612), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2566] = 5, - ACTIONS(3), 1, + [2535] = 4, + ACTIONS(618), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(238), 1, - anon_sym_DOLLAR2, - ACTIONS(608), 1, - aux_sym_image_tag_token1, - STATE(29), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_tag_repeat1, - [2584] = 4, - ACTIONS(392), 1, - anon_sym_DOLLAR2, - ACTIONS(610), 1, - aux_sym_image_digest_token1, + ACTIONS(620), 2, + anon_sym_DOLLAR, + aux_sym_expose_port_token1, + ACTIONS(622), 2, + anon_sym_SLASHtcp, + anon_sym_SLASHudp, + [2551] = 6, + ACTIONS(624), 1, + aux_sym_path_token1, + ACTIONS(626), 1, + aux_sym_path_token2, + ACTIONS(628), 1, + anon_sym_DOLLAR, + STATE(75), 1, + sym_expansion, + STATE(259), 1, + sym_path, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(55), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_digest_repeat1, - [2600] = 3, - ACTIONS(5), 2, + [2571] = 5, + ACTIONS(587), 1, + sym__non_newline_whitespace, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(630), 1, + anon_sym_LF, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(141), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [2589] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(465), 2, anon_sym_DOLLAR2, sym_double_quoted_escape_sequence, - ACTIONS(477), 3, + ACTIONS(467), 3, anon_sym_DQUOTE, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - [2614] = 7, - ACTIONS(3), 1, + [2603] = 5, + ACTIONS(11), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(555), 1, + anon_sym_DASH_DASH, + STATE(312), 1, + sym_cmd_instruction, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(612), 1, - aux_sym_path_token1, - ACTIONS(614), 1, - aux_sym_path_token2, - ACTIONS(616), 1, - anon_sym_DOLLAR, - STATE(76), 1, - sym_expansion, - STATE(250), 1, - sym_path, - [2636] = 4, - ACTIONS(3), 1, + STATE(131), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [2621] = 5, + ACTIONS(632), 1, + anon_sym_LF, + ACTIONS(634), 1, + aux_sym__env_key_token1, + STATE(262), 1, + sym__env_key, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(459), 1, + STATE(105), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [2639] = 3, + ACTIONS(447), 1, aux_sym_path_token1, - ACTIONS(461), 4, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(449), 4, sym_heredoc_marker, aux_sym_path_with_heredoc_token1, anon_sym_DOLLAR, anon_sym_DASH_DASH, - [2652] = 5, - ACTIONS(620), 1, - anon_sym_SQUOTE, - ACTIONS(622), 1, - sym_single_quoted_escape_sequence, - STATE(106), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + [2653] = 5, + ACTIONS(636), 1, + aux_sym__env_key_token1, + STATE(228), 1, + sym__env_key, + STATE(268), 1, + sym__spaced_env_pair, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(618), 2, - anon_sym_BSLASH, - aux_sym_single_quoted_string_token1, - [2670] = 3, - ACTIONS(5), 2, + STATE(112), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [2671] = 3, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(583), 2, + anon_sym_LF, + aux_sym_path_token3, + ACTIONS(581), 3, + sym__heredoc_nl, + anon_sym_DOLLAR2, + sym__non_newline_whitespace, + [2685] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(503), 2, + ACTIONS(467), 2, + aux_sym_from_instruction_token2, + aux_sym_image_tag_token1, + ACTIONS(465), 3, anon_sym_LF, - aux_sym_path_token3, - ACTIONS(501), 3, - sym_heredoc_nl, anon_sym_DOLLAR2, - sym__non_newline_whitespace, - [2684] = 3, - ACTIONS(5), 2, + anon_sym_AT, + [2699] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(469), 2, anon_sym_DOLLAR2, sym_double_quoted_escape_sequence, - ACTIONS(481), 3, + ACTIONS(471), 3, anon_sym_DQUOTE, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - [2698] = 3, - ACTIONS(5), 2, + [2713] = 4, + ACTIONS(277), 1, + anon_sym_DOLLAR2, + ACTIONS(638), 1, + aux_sym_image_tag_token1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 2, + STATE(35), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_tag_repeat1, + [2729] = 3, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(471), 2, anon_sym_LF, aux_sym_path_token3, - ACTIONS(479), 3, - sym_heredoc_nl, + ACTIONS(469), 3, + sym__heredoc_nl, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [2712] = 5, - ACTIONS(627), 1, - anon_sym_SQUOTE, - ACTIONS(629), 1, - sym_single_quoted_escape_sequence, - STATE(116), 1, - aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(624), 2, - anon_sym_BSLASH, - aux_sym_single_quoted_string_token1, - [2730] = 3, - ACTIONS(5), 2, + [2743] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(465), 2, anon_sym_LF, anon_sym_DOLLAR2, - ACTIONS(477), 3, + ACTIONS(467), 3, aux_sym__env_key_token1, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - [2744] = 3, - ACTIONS(5), 2, + [2757] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 2, + ACTIONS(471), 2, aux_sym_from_instruction_token2, aux_sym_image_tag_token1, - ACTIONS(479), 3, + ACTIONS(469), 3, anon_sym_LF, anon_sym_DOLLAR2, anon_sym_AT, - [2758] = 3, - ACTIONS(5), 2, + [2771] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(477), 2, + ACTIONS(467), 2, anon_sym_LF, aux_sym_path_token3, - ACTIONS(475), 3, - sym_heredoc_nl, + ACTIONS(465), 3, + sym__heredoc_nl, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [2772] = 3, - ACTIONS(5), 2, + [2785] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(469), 2, anon_sym_LF, anon_sym_DOLLAR2, - ACTIONS(481), 3, + ACTIONS(471), 3, aux_sym__env_key_token1, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - [2786] = 5, - ACTIONS(580), 1, - sym__non_newline_whitespace, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(632), 1, - anon_sym_LF, - ACTIONS(5), 2, + [2799] = 5, + ACTIONS(643), 1, + anon_sym_SQUOTE, + ACTIONS(645), 1, + sym_single_quoted_escape_sequence, + STATE(124), 1, + aux_sym_single_quoted_string_repeat1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(142), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2804] = 5, - ACTIONS(636), 1, + ACTIONS(640), 2, + anon_sym_BSLASH, + aux_sym_single_quoted_string_token1, + [2817] = 5, + ACTIONS(650), 1, anon_sym_SQUOTE, - ACTIONS(638), 1, + ACTIONS(652), 1, sym_single_quoted_escape_sequence, - STATE(123), 1, + STATE(126), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(634), 2, + ACTIONS(648), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2822] = 5, - ACTIONS(606), 1, + [2835] = 5, + ACTIONS(616), 1, sym_single_quoted_escape_sequence, - ACTIONS(640), 1, + ACTIONS(654), 1, anon_sym_SQUOTE, - STATE(116), 1, + STATE(124), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(602), 2, + ACTIONS(612), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2840] = 5, - ACTIONS(580), 1, - sym__non_newline_whitespace, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(642), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(146), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2858] = 5, - ACTIONS(646), 1, + [2853] = 5, + ACTIONS(658), 1, anon_sym_SQUOTE, - ACTIONS(648), 1, + ACTIONS(660), 1, sym_single_quoted_escape_sequence, - STATE(126), 1, + STATE(128), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(644), 2, + ACTIONS(656), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2876] = 5, - ACTIONS(606), 1, + [2871] = 5, + ACTIONS(616), 1, sym_single_quoted_escape_sequence, - ACTIONS(650), 1, + ACTIONS(662), 1, anon_sym_SQUOTE, - STATE(116), 1, + STATE(124), 1, aux_sym_single_quoted_string_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(602), 2, + ACTIONS(612), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2894] = 3, - ACTIONS(652), 1, + [2889] = 3, + ACTIONS(467), 1, + aux_sym_from_instruction_token2, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(465), 3, + anon_sym_LF, + anon_sym_DOLLAR2, + aux_sym_image_digest_token1, + [2902] = 3, + ACTIONS(664), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(654), 3, + ACTIONS(666), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - [2907] = 4, - ACTIONS(656), 1, + [2915] = 4, + ACTIONS(390), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(668), 1, + anon_sym_DASH_DASH, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(131), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [2930] = 3, + ACTIONS(671), 1, anon_sym_LF, - ACTIONS(658), 1, - sym_heredoc_nl, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(128), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2922] = 4, - ACTIONS(663), 1, - sym_required_line_continuation, - STATE(129), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, + ACTIONS(673), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [2943] = 5, + ACTIONS(675), 1, + anon_sym_DQUOTE, + ACTIONS(677), 1, + aux_sym_json_string_token1, + ACTIONS(679), 1, + sym_json_escape_sequence, + STATE(152), 1, + aux_sym_json_string_repeat1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(661), 2, - sym_heredoc_nl, - anon_sym_LF, - [2937] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(666), 1, + [2960] = 3, + ACTIONS(681), 1, + aux_sym_path_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(683), 3, + sym_heredoc_marker, + aux_sym_path_with_heredoc_token1, + anon_sym_DOLLAR, + [2973] = 3, + ACTIONS(685), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(128), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2952] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(668), 1, + ACTIONS(687), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [2986] = 3, + ACTIONS(689), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(130), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2967] = 5, - ACTIONS(670), 1, + ACTIONS(691), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [2999] = 5, + ACTIONS(693), 1, aux_sym__stopsignal_value_token1, - ACTIONS(672), 1, + ACTIONS(695), 1, anon_sym_DOLLAR, - STATE(91), 1, + STATE(93), 1, sym_expansion, - STATE(256), 1, + STATE(280), 1, sym__stopsignal_value, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [2984] = 3, - ACTIONS(5), 2, + [3016] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(697), 1, + anon_sym_LF, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + STATE(157), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3031] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 2, + ACTIONS(581), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - ACTIONS(503), 2, + ACTIONS(583), 2, anon_sym_LF, aux_sym_path_token3, - [2997] = 3, - ACTIONS(5), 2, + [3044] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(465), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - ACTIONS(477), 2, + ACTIONS(467), 2, anon_sym_LF, aux_sym_path_token3, - [3010] = 5, - ACTIONS(674), 1, - anon_sym_DQUOTE, - ACTIONS(676), 1, - aux_sym_json_string_token1, - ACTIONS(679), 1, - sym_json_escape_sequence, - STATE(135), 1, - aux_sym_json_string_repeat1, - ACTIONS(5), 2, + [3057] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(699), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3027] = 3, - ACTIONS(5), 2, + STATE(157), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3072] = 3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(469), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - ACTIONS(481), 2, + ACTIONS(471), 2, anon_sym_LF, aux_sym_path_token3, - [3040] = 2, - ACTIONS(5), 2, + [3085] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 4, + ACTIONS(581), 4, anon_sym_LF, anon_sym_COLON, aux_sym__immediate_user_name_or_group_fragment_token1, anon_sym_DOLLAR2, - [3051] = 2, - ACTIONS(5), 2, + [3096] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 4, + ACTIONS(465), 4, anon_sym_LF, anon_sym_COLON, aux_sym__immediate_user_name_or_group_fragment_token1, anon_sym_DOLLAR2, - [3062] = 2, - ACTIONS(5), 2, + [3107] = 3, + ACTIONS(701), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 4, - anon_sym_LF, - anon_sym_COLON, - aux_sym__immediate_user_name_or_group_fragment_token1, - anon_sym_DOLLAR2, - [3073] = 5, - ACTIONS(682), 1, + ACTIONS(703), 3, + aux_sym_label_pair_token1, anon_sym_DQUOTE, - ACTIONS(684), 1, - aux_sym_json_string_token1, - ACTIONS(686), 1, - sym_json_escape_sequence, - STATE(157), 1, - aux_sym_json_string_repeat1, - ACTIONS(5), 2, + anon_sym_SQUOTE, + [3120] = 5, + ACTIONS(501), 1, + anon_sym_AT, + ACTIONS(705), 1, + anon_sym_LF, + ACTIONS(707), 1, + aux_sym_from_instruction_token2, + STATE(239), 1, + sym_image_digest, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3090] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(688), 1, + [3137] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(709), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(156), 2, + STATE(157), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3105] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(690), 1, + [3152] = 4, + ACTIONS(150), 1, + sym_required_line_continuation, + STATE(160), 1, + aux_sym_shell_command_repeat1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(711), 2, + sym__heredoc_nl, anon_sym_LF, - ACTIONS(5), 2, + [3167] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(713), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(128), 2, + STATE(138), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3120] = 5, - ACTIONS(519), 1, - anon_sym_AT, - ACTIONS(692), 1, + [3182] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(697), 1, anon_sym_LF, - ACTIONS(694), 1, - aux_sym_from_instruction_token2, - STATE(219), 1, - sym_image_digest, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3137] = 5, - ACTIONS(696), 1, + STATE(161), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3197] = 5, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(698), 1, + ACTIONS(717), 1, aux_sym_image_alias_token1, - STATE(89), 1, + STATE(83), 1, sym_expansion, - STATE(295), 1, + STATE(257), 1, sym_image_alias, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3154] = 5, - ACTIONS(700), 1, - aux_sym__user_name_or_group_token1, - ACTIONS(702), 1, - anon_sym_DOLLAR, - STATE(31), 1, - sym_expansion, - STATE(247), 1, - sym__user_name_or_group, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3171] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(704), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(128), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [3186] = 4, - ACTIONS(3), 1, + [3214] = 5, + ACTIONS(719), 1, + anon_sym_DQUOTE, + ACTIONS(721), 1, + aux_sym_json_string_token1, + ACTIONS(723), 1, + sym_json_escape_sequence, + STATE(153), 1, + aux_sym_json_string_repeat1, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(706), 1, - aux_sym_path_token1, - ACTIONS(708), 3, - sym_heredoc_marker, - aux_sym_path_with_heredoc_token1, - anon_sym_DOLLAR, - [3201] = 3, - ACTIONS(710), 1, - anon_sym_LF, - ACTIONS(5), 2, + [3231] = 5, + ACTIONS(725), 1, + anon_sym_DQUOTE, + ACTIONS(727), 1, + aux_sym_json_string_token1, + ACTIONS(730), 1, + sym_json_escape_sequence, + STATE(153), 1, + aux_sym_json_string_repeat1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(712), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3214] = 3, - ACTIONS(481), 1, + [3248] = 3, + ACTIONS(471), 1, aux_sym_from_instruction_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 3, + ACTIONS(469), 3, anon_sym_LF, anon_sym_DOLLAR2, aux_sym_image_digest_token1, - [3227] = 4, - ACTIONS(716), 1, - sym_required_line_continuation, - STATE(152), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(714), 2, - sym_heredoc_nl, - anon_sym_LF, - [3242] = 3, - ACTIONS(718), 1, + [3261] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(733), 1, anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(720), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3255] = 4, - ACTIONS(716), 1, - sym_required_line_continuation, - STATE(129), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(722), 2, - sym_heredoc_nl, + STATE(157), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3276] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(735), 1, anon_sym_LF, - [3270] = 4, - ACTIONS(436), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(724), 1, - anon_sym_DASH_DASH, - ACTIONS(3), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(153), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [3285] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(727), 1, + STATE(157), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3291] = 4, + ACTIONS(737), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(739), 1, + sym__heredoc_nl, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(128), 2, + STATE(157), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3300] = 5, - ACTIONS(696), 1, + [3306] = 5, + ACTIONS(715), 1, anon_sym_DOLLAR, - ACTIONS(698), 1, + ACTIONS(717), 1, aux_sym_image_alias_token1, - STATE(89), 1, + STATE(83), 1, sym_expansion, - STATE(261), 1, + STATE(277), 1, sym_image_alias, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3317] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(668), 1, - anon_sym_LF, - ACTIONS(5), 2, + [3323] = 5, + ACTIONS(742), 1, + aux_sym__user_name_or_group_token1, + ACTIONS(744), 1, + anon_sym_DOLLAR, + STATE(45), 1, + sym_expansion, + STATE(234), 1, + sym__user_name_or_group, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(128), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [3332] = 5, - ACTIONS(729), 1, - anon_sym_DQUOTE, - ACTIONS(731), 1, - aux_sym_json_string_token1, - ACTIONS(733), 1, - sym_json_escape_sequence, - STATE(135), 1, - aux_sym_json_string_repeat1, - ACTIONS(5), 2, + [3340] = 4, + ACTIONS(746), 1, + sym_required_line_continuation, + STATE(160), 1, + aux_sym_shell_command_repeat1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3349] = 4, - ACTIONS(582), 1, - sym_heredoc_nl, - ACTIONS(735), 1, + ACTIONS(221), 2, + sym__heredoc_nl, + anon_sym_LF, + [3355] = 4, + ACTIONS(589), 1, + sym__heredoc_nl, + ACTIONS(749), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - STATE(128), 2, + STATE(157), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3364] = 3, - ACTIONS(737), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(739), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3377] = 3, - ACTIONS(741), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(743), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3390] = 3, - ACTIONS(477), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, + [3370] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 3, + ACTIONS(469), 4, anon_sym_LF, - anon_sym_DOLLAR2, - aux_sym_image_digest_token1, - [3403] = 4, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(747), 1, - sym_variable, - STATE(133), 1, - sym__expansion_body, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3417] = 3, - ACTIONS(749), 1, + anon_sym_COLON, + aux_sym__immediate_user_name_or_group_fragment_token1, + anon_sym_DOLLAR2, + [3381] = 3, + ACTIONS(581), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(751), 2, + ACTIONS(583), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - [3429] = 2, - ACTIONS(5), 2, + [3393] = 4, + ACTIONS(751), 1, + anon_sym_RBRACK, + ACTIONS(753), 1, + anon_sym_DQUOTE, + STATE(178), 1, + sym_json_string, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(753), 3, - anon_sym_LF, - aux_sym__immediate_user_name_or_group_fragment_token1, - anon_sym_DOLLAR2, - [3439] = 4, + [3407] = 4, ACTIONS(755), 1, anon_sym_COMMA2, ACTIONS(758), 1, @@ -6457,9 +6423,9 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3453] = 4, + [3421] = 4, ACTIONS(760), 1, - sym_heredoc_line, + sym__heredoc_line, ACTIONS(763), 1, sym_heredoc_end, STATE(166), 1, @@ -6467,1194 +6433,1167 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3467] = 4, - ACTIONS(714), 1, - anon_sym_LF, + [3435] = 4, ACTIONS(765), 1, - sym_required_line_continuation, - STATE(173), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [3481] = 3, - ACTIONS(322), 1, anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(328), 2, - sym_heredoc_nl, - sym__non_newline_whitespace, - [3493] = 4, ACTIONS(767), 1, - anon_sym_LF, - ACTIONS(769), 1, sym__non_newline_whitespace, - STATE(202), 1, + STATE(188), 1, aux_sym_volume_instruction_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3507] = 3, - ACTIONS(501), 1, + [3449] = 3, + ACTIONS(324), 1, anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(503), 2, - anon_sym_DOLLAR, - aux_sym_expose_port_token1, - [3519] = 4, - ACTIONS(771), 1, - anon_sym_LBRACE, - ACTIONS(773), 1, - sym_variable, - STATE(109), 1, - sym__expansion_body, - ACTIONS(3), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3533] = 4, - ACTIONS(775), 1, + ACTIONS(330), 2, + sym__heredoc_nl, + sym__non_newline_whitespace, + [3461] = 4, + ACTIONS(769), 1, anon_sym_LBRACE, - ACTIONS(777), 1, + ACTIONS(771), 1, sym_variable, - STATE(75), 1, + STATE(110), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3547] = 4, - ACTIONS(722), 1, - anon_sym_LF, - ACTIONS(765), 1, + [3475] = 4, + ACTIONS(185), 1, sym_required_line_continuation, - STATE(174), 1, + ACTIONS(711), 1, + anon_sym_LF, + STATE(171), 1, aux_sym_shell_command_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3561] = 4, - ACTIONS(661), 1, + [3489] = 4, + ACTIONS(221), 1, anon_sym_LF, - ACTIONS(779), 1, + ACTIONS(773), 1, sym_required_line_continuation, - STATE(174), 1, + STATE(171), 1, aux_sym_shell_command_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3575] = 3, - ACTIONS(479), 1, + [3503] = 4, + ACTIONS(776), 1, + anon_sym_COMMA2, + ACTIONS(778), 1, + anon_sym_RBRACK, + STATE(165), 1, + aux_sym_json_string_array_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3517] = 3, + ACTIONS(469), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 2, + ACTIONS(471), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - [3587] = 3, - ACTIONS(503), 1, + [3529] = 3, + ACTIONS(583), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 2, + ACTIONS(581), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [3599] = 3, - ACTIONS(477), 1, + [3541] = 3, + ACTIONS(467), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(465), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [3611] = 3, - ACTIONS(481), 1, + [3553] = 3, + ACTIONS(471), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(469), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [3623] = 4, + [3565] = 4, + ACTIONS(780), 1, + sym__heredoc_line, ACTIONS(782), 1, + sym_heredoc_end, + STATE(166), 1, + aux_sym_heredoc_block_repeat1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3579] = 4, + ACTIONS(776), 1, anon_sym_COMMA2, ACTIONS(784), 1, anon_sym_RBRACK, - STATE(165), 1, + STATE(172), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3637] = 4, - ACTIONS(786), 1, - sym_heredoc_line, - ACTIONS(788), 1, - sym_heredoc_end, - STATE(166), 1, - aux_sym_heredoc_block_repeat1, - ACTIONS(3), 2, + [3593] = 3, + ACTIONS(583), 1, + aux_sym_path_token3, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3651] = 3, - ACTIONS(503), 1, + ACTIONS(581), 2, + anon_sym_LF, + anon_sym_DOLLAR2, + [3605] = 3, + ACTIONS(467), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 2, + ACTIONS(465), 2, anon_sym_LF, anon_sym_DOLLAR2, - [3663] = 3, - ACTIONS(477), 1, + [3617] = 3, + ACTIONS(471), 1, aux_sym_path_token3, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 2, + ACTIONS(469), 2, anon_sym_LF, anon_sym_DOLLAR2, - [3675] = 3, - ACTIONS(481), 1, - aux_sym_path_token3, - ACTIONS(5), 2, + [3629] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 2, + ACTIONS(581), 3, anon_sym_LF, + aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3687] = 2, - ACTIONS(5), 2, + [3639] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 3, + ACTIONS(465), 3, anon_sym_LF, aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3697] = 2, - ACTIONS(5), 2, + [3649] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 3, + ACTIONS(469), 3, anon_sym_LF, aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3707] = 4, + [3659] = 2, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + ACTIONS(581), 3, + anon_sym_LF, + anon_sym_DOLLAR2, + aux_sym_image_alias_token2, + [3669] = 4, + ACTIONS(786), 1, + anon_sym_LBRACE, + ACTIONS(788), 1, + sym_variable, + STATE(96), 1, + sym__expansion_body, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3683] = 4, ACTIONS(790), 1, anon_sym_LBRACE, ACTIONS(792), 1, sym_variable, - STATE(193), 1, + STATE(190), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3721] = 3, + [3697] = 4, + ACTIONS(767), 1, + sym__non_newline_whitespace, ACTIONS(794), 1, - sym_required_line_continuation, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(661), 2, - sym_heredoc_nl, anon_sym_LF, - [3733] = 2, - ACTIONS(5), 2, + STATE(193), 1, + aux_sym_volume_instruction_repeat1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(501), 3, - anon_sym_LF, - anon_sym_DOLLAR2, - aux_sym_image_alias_token2, - [3743] = 4, - ACTIONS(782), 1, - anon_sym_COMMA2, + [3711] = 4, + ACTIONS(780), 1, + sym__heredoc_line, ACTIONS(796), 1, - anon_sym_RBRACK, - STATE(179), 1, - aux_sym_json_string_array_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3757] = 4, - ACTIONS(786), 1, - sym_heredoc_line, - ACTIONS(798), 1, sym_heredoc_end, - STATE(180), 1, + STATE(177), 1, aux_sym_heredoc_block_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3771] = 4, - ACTIONS(800), 1, - anon_sym_RBRACK, - ACTIONS(802), 1, - anon_sym_DQUOTE, - STATE(189), 1, - sym_json_string, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3785] = 2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(479), 3, - anon_sym_LF, - anon_sym_DOLLAR2, - aux_sym_image_alias_token2, - [3795] = 2, - ACTIONS(5), 2, + [3725] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(475), 3, + ACTIONS(465), 3, anon_sym_LF, anon_sym_DOLLAR2, aux_sym_image_alias_token2, - [3805] = 4, - ACTIONS(804), 1, + [3735] = 4, + ACTIONS(798), 1, anon_sym_LBRACE, - ACTIONS(806), 1, + ACTIONS(800), 1, sym_variable, - STATE(170), 1, + STATE(163), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3819] = 4, - ACTIONS(802), 1, + [3749] = 4, + ACTIONS(753), 1, anon_sym_DQUOTE, - ACTIONS(808), 1, + ACTIONS(802), 1, anon_sym_RBRACK, - STATE(196), 1, + STATE(194), 1, sym_json_string, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3833] = 4, - ACTIONS(782), 1, + [3763] = 4, + ACTIONS(804), 1, + anon_sym_LF, + ACTIONS(806), 1, + sym__non_newline_whitespace, + STATE(193), 1, + aux_sym_volume_instruction_repeat1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [3777] = 4, + ACTIONS(776), 1, anon_sym_COMMA2, - ACTIONS(810), 1, + ACTIONS(809), 1, anon_sym_RBRACK, - STATE(199), 1, + STATE(197), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3847] = 4, - ACTIONS(775), 1, + [3791] = 4, + ACTIONS(786), 1, anon_sym_LBRACE, - ACTIONS(812), 1, + ACTIONS(811), 1, sym_variable, - STATE(80), 1, + STATE(82), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3861] = 4, - ACTIONS(769), 1, - sym__non_newline_whitespace, - ACTIONS(814), 1, + [3805] = 3, + ACTIONS(813), 1, anon_sym_LF, - STATE(169), 1, - aux_sym_volume_instruction_repeat1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3875] = 4, - ACTIONS(782), 1, + ACTIONS(815), 2, + anon_sym_DOLLAR, + aux_sym_expose_port_token1, + [3817] = 4, + ACTIONS(776), 1, anon_sym_COMMA2, - ACTIONS(816), 1, + ACTIONS(817), 1, anon_sym_RBRACK, STATE(165), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3889] = 4, - ACTIONS(818), 1, + [3831] = 4, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(821), 1, sym_variable, - STATE(177), 1, + STATE(175), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3903] = 4, - ACTIONS(818), 1, + [3845] = 4, + ACTIONS(819), 1, anon_sym_LBRACE, - ACTIONS(822), 1, + ACTIONS(823), 1, sym_variable, - STATE(176), 1, + STATE(174), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3917] = 4, - ACTIONS(824), 1, - anon_sym_LF, - ACTIONS(826), 1, - sym__non_newline_whitespace, - STATE(202), 1, - aux_sym_volume_instruction_repeat1, - ACTIONS(5), 2, + [3859] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [3931] = 4, - ACTIONS(745), 1, + ACTIONS(825), 3, + anon_sym_LF, + aux_sym__immediate_user_name_or_group_fragment_token1, + anon_sym_DOLLAR2, + [3869] = 4, + ACTIONS(827), 1, anon_sym_LBRACE, ACTIONS(829), 1, sym_variable, - STATE(134), 1, + STATE(140), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3945] = 4, - ACTIONS(831), 1, + [3883] = 4, + ACTIONS(827), 1, anon_sym_LBRACE, - ACTIONS(833), 1, + ACTIONS(831), 1, sym_variable, - STATE(138), 1, + STATE(139), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3959] = 4, - ACTIONS(831), 1, + [3897] = 4, + ACTIONS(833), 1, anon_sym_LBRACE, ACTIONS(835), 1, sym_variable, - STATE(137), 1, + STATE(144), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3973] = 4, - ACTIONS(837), 1, + [3911] = 4, + ACTIONS(833), 1, anon_sym_LBRACE, - ACTIONS(839), 1, + ACTIONS(837), 1, sym_variable, - STATE(182), 1, + STATE(143), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3987] = 4, - ACTIONS(837), 1, + [3925] = 4, + ACTIONS(839), 1, anon_sym_LBRACE, ACTIONS(841), 1, sym_variable, - STATE(181), 1, + STATE(180), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4001] = 4, - ACTIONS(843), 1, + [3939] = 4, + ACTIONS(839), 1, anon_sym_LBRACE, - ACTIONS(845), 1, + ACTIONS(843), 1, sym_variable, - STATE(185), 1, + STATE(179), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4015] = 4, - ACTIONS(843), 1, + [3953] = 4, + ACTIONS(845), 1, anon_sym_LBRACE, ACTIONS(847), 1, sym_variable, - STATE(184), 1, + STATE(183), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4029] = 4, - ACTIONS(849), 1, + [3967] = 4, + ACTIONS(845), 1, anon_sym_LBRACE, - ACTIONS(851), 1, + ACTIONS(849), 1, sym_variable, - STATE(95), 1, + STATE(182), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4043] = 4, - ACTIONS(853), 1, + [3981] = 4, + ACTIONS(851), 1, anon_sym_LBRACE, - ACTIONS(855), 1, + ACTIONS(853), 1, sym_variable, - STATE(113), 1, + STATE(116), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4057] = 4, - ACTIONS(857), 1, + [3995] = 4, + ACTIONS(855), 1, anon_sym_LBRACE, - ACTIONS(859), 1, + ACTIONS(857), 1, sym_variable, - STATE(161), 1, + STATE(115), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4071] = 4, - ACTIONS(790), 1, + [4009] = 4, + ACTIONS(859), 1, anon_sym_LBRACE, ACTIONS(861), 1, sym_variable, - STATE(188), 1, + STATE(129), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4085] = 4, - ACTIONS(863), 1, + [4023] = 4, + ACTIONS(790), 1, anon_sym_LBRACE, - ACTIONS(865), 1, + ACTIONS(863), 1, sym_variable, - STATE(72), 1, + STATE(185), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4099] = 4, - ACTIONS(867), 1, + [4037] = 4, + ACTIONS(865), 1, anon_sym_LBRACE, - ACTIONS(869), 1, + ACTIONS(867), 1, sym_variable, - STATE(117), 1, + STATE(69), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4113] = 4, - ACTIONS(853), 1, + [4051] = 4, + ACTIONS(869), 1, anon_sym_LBRACE, ACTIONS(871), 1, sym_variable, - STATE(119), 1, + STATE(120), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4127] = 2, - ACTIONS(5), 2, + [4065] = 4, + ACTIONS(855), 1, + anon_sym_LBRACE, + ACTIONS(873), 1, + sym_variable, + STATE(122), 1, + sym__expansion_body, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(479), 3, - anon_sym_LF, - aux_sym__stopsignal_value_token2, - anon_sym_DOLLAR2, - [4137] = 2, - ACTIONS(5), 2, + [4079] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(873), 2, - sym_heredoc_nl, + ACTIONS(469), 3, anon_sym_LF, - [4146] = 3, + anon_sym_DOLLAR2, + aux_sym_image_alias_token2, + [4089] = 3, ACTIONS(875), 1, anon_sym_LF, ACTIONS(877), 1, aux_sym_from_instruction_token2, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4157] = 3, - ACTIONS(879), 1, - aux_sym_param_token1, - ACTIONS(881), 1, - anon_sym_mount, + [4100] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4168] = 4, - ACTIONS(3), 1, + ACTIONS(758), 2, + anon_sym_COMMA2, + anon_sym_RBRACK, + [4109] = 2, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(459), 1, - aux_sym_image_name_token1, - ACTIONS(461), 1, - anon_sym_DOLLAR, - [4181] = 3, - ACTIONS(710), 1, + ACTIONS(879), 2, + sym__heredoc_nl, + anon_sym_LF, + [4118] = 3, + ACTIONS(701), 1, anon_sym_LF, - ACTIONS(712), 1, + ACTIONS(703), 1, aux_sym__env_key_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4192] = 3, - ACTIONS(718), 1, + [4129] = 3, + ACTIONS(664), 1, anon_sym_LF, - ACTIONS(720), 1, + ACTIONS(666), 1, aux_sym__env_key_token1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4203] = 2, - ACTIONS(3), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(763), 2, - sym_heredoc_line, - sym_heredoc_end, - [4212] = 3, - ACTIONS(737), 1, + [4140] = 3, + ACTIONS(685), 1, anon_sym_LF, - ACTIONS(739), 1, + ACTIONS(687), 1, aux_sym__env_key_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4223] = 3, - ACTIONS(741), 1, + [4151] = 3, + ACTIONS(689), 1, anon_sym_LF, - ACTIONS(743), 1, + ACTIONS(691), 1, aux_sym__env_key_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4234] = 4, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(883), 1, - aux_sym_mount_param_param_token1, - STATE(26), 1, - sym_mount_param_param, - [4247] = 2, - ACTIONS(5), 2, + [4162] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(885), 2, - sym_heredoc_nl, + ACTIONS(881), 2, + sym__heredoc_nl, anon_sym_LF, - [4256] = 2, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(887), 2, - anon_sym_COMMA2, - anon_sym_RBRACK, - [4265] = 3, - ACTIONS(802), 1, - anon_sym_DQUOTE, - STATE(244), 1, - sym_json_string, + [4171] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4276] = 2, - ACTIONS(5), 2, + ACTIONS(763), 2, + sym__heredoc_line, + sym_heredoc_end, + [4180] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(889), 2, - sym_heredoc_nl, + ACTIONS(883), 2, + sym__heredoc_nl, anon_sym_LF, - [4285] = 2, - ACTIONS(3), 2, + [4189] = 3, + ACTIONS(885), 1, + anon_sym_LF, + ACTIONS(887), 1, + aux_sym_from_instruction_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(461), 2, - aux_sym_cmd_instruction_token1, - anon_sym_DASH_DASH, - [4294] = 2, - ACTIONS(5), 2, + [4200] = 3, + ACTIONS(889), 1, + anon_sym_EQ, + ACTIONS(891), 1, + aux_sym__spaced_env_pair_token1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - ACTIONS(891), 2, - sym_heredoc_nl, - anon_sym_LF, - [4303] = 3, - ACTIONS(140), 1, - anon_sym_LBRACK, - STATE(273), 1, - sym_json_string_array, + [4211] = 3, + ACTIONS(447), 1, + aux_sym_image_name_token1, + ACTIONS(449), 1, + anon_sym_DOLLAR, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4314] = 4, - ACTIONS(3), 1, + [4222] = 2, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(883), 1, + ACTIONS(449), 2, + aux_sym_cmd_instruction_token1, + anon_sym_DASH_DASH, + [4231] = 3, + ACTIONS(893), 1, aux_sym_mount_param_param_token1, STATE(42), 1, sym_mount_param_param, - [4327] = 2, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(893), 2, - sym_heredoc_nl, - anon_sym_LF, - [4336] = 3, + [4242] = 3, ACTIONS(895), 1, anon_sym_LF, ACTIONS(897), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, + aux_sym__env_key_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4253] = 3, + ACTIONS(179), 1, + anon_sym_LBRACK, + STATE(295), 1, + sym_json_string_array, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4347] = 3, + [4264] = 3, ACTIONS(899), 1, anon_sym_LF, ACTIONS(901), 1, - anon_sym_EQ, - ACTIONS(5), 2, + anon_sym_COLON, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4358] = 3, + [4275] = 3, ACTIONS(903), 1, - anon_sym_LF, + aux_sym_param_token1, ACTIONS(905), 1, - aux_sym__env_key_token1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4369] = 2, + anon_sym_mount, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(907), 2, - anon_sym_COMMA2, - anon_sym_RBRACK, - [4378] = 3, - ACTIONS(824), 1, + [4286] = 3, + ACTIONS(804), 1, anon_sym_LF, - ACTIONS(909), 1, + ACTIONS(907), 1, sym__non_newline_whitespace, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4389] = 3, + [4297] = 3, + ACTIONS(909), 1, + anon_sym_LF, ACTIONS(911), 1, anon_sym_EQ, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4308] = 3, ACTIONS(913), 1, - aux_sym__spaced_env_pair_token1, - ACTIONS(5), 2, + anon_sym_LF, + ACTIONS(915), 1, + aux_sym_from_instruction_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4400] = 3, - ACTIONS(661), 1, + [4319] = 3, + ACTIONS(917), 1, anon_sym_LF, - ACTIONS(794), 1, - sym_required_line_continuation, - ACTIONS(5), 2, + ACTIONS(919), 1, + aux_sym_from_instruction_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4411] = 2, + [4330] = 3, + ACTIONS(893), 1, + aux_sym_mount_param_param_token1, + STATE(28), 1, + sym_mount_param_param, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(758), 2, + [4341] = 2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(921), 2, anon_sym_COMMA2, anon_sym_RBRACK, - [4420] = 3, - ACTIONS(915), 1, - anon_sym_LF, - ACTIONS(917), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, + [4350] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4431] = 3, - ACTIONS(919), 1, + ACTIONS(923), 2, + sym__heredoc_nl, anon_sym_LF, - ACTIONS(921), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, + [4359] = 3, + ACTIONS(753), 1, + anon_sym_DQUOTE, + STATE(218), 1, + sym_json_string, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4442] = 3, - ACTIONS(923), 1, - anon_sym_LF, - ACTIONS(925), 1, - anon_sym_COLON, - ACTIONS(5), 2, + [4370] = 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4453] = 2, - ACTIONS(927), 1, - aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(925), 2, + anon_sym_COMMA2, + anon_sym_RBRACK, + [4379] = 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4461] = 2, + ACTIONS(927), 2, + sym__heredoc_nl, + anon_sym_LF, + [4388] = 2, ACTIONS(929), 1, - anon_sym_EQ, - ACTIONS(3), 2, + aux_sym__expansion_body_token1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4469] = 2, + [4396] = 2, ACTIONS(931), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4477] = 2, + [4404] = 2, ACTIONS(933), 1, - aux_sym__expansion_body_token1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4485] = 2, - ACTIONS(737), 1, - anon_sym_EQ, + ts_builtin_sym_end, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4493] = 2, + [4412] = 2, ACTIONS(935), 1, - ts_builtin_sym_end, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4501] = 2, - ACTIONS(741), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [4420] = 2, + ACTIONS(937), 1, + aux_sym__shell_fragment_token1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4509] = 2, - ACTIONS(937), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4428] = 2, + ACTIONS(664), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4517] = 2, + [4436] = 2, ACTIONS(939), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4525] = 2, + [4444] = 2, ACTIONS(941), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4533] = 2, + [4452] = 2, ACTIONS(943), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4541] = 2, + [4460] = 2, ACTIONS(945), 1, - aux_sym_maintainer_instruction_token2, - ACTIONS(5), 2, + aux_sym__expansion_body_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4468] = 2, + ACTIONS(685), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4549] = 2, + [4476] = 2, ACTIONS(947), 1, - aux_sym_shell_fragment_token1, - ACTIONS(5), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4557] = 2, + [4484] = 2, ACTIONS(949), 1, - anon_sym_LF, - ACTIONS(5), 2, + aux_sym__shell_fragment_token1, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4565] = 2, + [4492] = 2, ACTIONS(951), 1, - aux_sym_arg_instruction_token2, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4573] = 2, + [4500] = 2, ACTIONS(953), 1, - anon_sym_LF, - ACTIONS(5), 2, + aux_sym_maintainer_instruction_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4581] = 2, + [4508] = 2, ACTIONS(955), 1, + aux_sym_param_token2, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4516] = 2, + ACTIONS(889), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4589] = 2, + [4524] = 2, ACTIONS(957), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4597] = 2, + [4532] = 2, ACTIONS(959), 1, - anon_sym_EQ, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4605] = 2, + [4540] = 2, ACTIONS(961), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4613] = 3, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, + [4548] = 2, ACTIONS(963), 1, aux_sym_param_token2, - [4623] = 2, - ACTIONS(893), 1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4556] = 2, + ACTIONS(923), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4631] = 2, + [4564] = 2, ACTIONS(965), 1, - aux_sym_maintainer_instruction_token2, - ACTIONS(5), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4639] = 2, - ACTIONS(911), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [4572] = 2, + ACTIONS(967), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4647] = 2, - ACTIONS(710), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [4580] = 2, + ACTIONS(587), 1, + sym__non_newline_whitespace, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4655] = 2, - ACTIONS(967), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4588] = 2, + ACTIONS(969), 1, + aux_sym_maintainer_instruction_token2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4663] = 2, - ACTIONS(969), 1, + [4596] = 2, + ACTIONS(971), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4671] = 2, - ACTIONS(971), 1, + [4604] = 2, + ACTIONS(973), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4679] = 2, - ACTIONS(973), 1, + [4612] = 2, + ACTIONS(975), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4687] = 3, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(975), 1, - aux_sym_param_token2, - [4697] = 2, + [4620] = 2, ACTIONS(977), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4705] = 2, - ACTIONS(718), 1, - anon_sym_EQ, + aux_sym_param_token2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4713] = 2, + [4628] = 2, ACTIONS(979), 1, - anon_sym_RBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4721] = 3, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, + [4636] = 2, ACTIONS(981), 1, - aux_sym_param_token2, - [4731] = 2, - ACTIONS(983), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4739] = 2, - ACTIONS(985), 1, + [4644] = 2, + ACTIONS(983), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4747] = 2, - ACTIONS(987), 1, - anon_sym_RBRACE, + [4652] = 2, + ACTIONS(985), 1, + aux_sym_param_token2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4755] = 3, - ACTIONS(3), 1, + [4660] = 2, + ACTIONS(987), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, + [4668] = 2, ACTIONS(989), 1, aux_sym_mount_param_param_token1, - [4765] = 2, - ACTIONS(991), 1, - aux_sym_shell_fragment_token1, - ACTIONS(5), 2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4773] = 2, - ACTIONS(993), 1, + [4676] = 2, + ACTIONS(991), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4781] = 2, - ACTIONS(873), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4684] = 2, + ACTIONS(330), 1, + sym__non_newline_whitespace, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4789] = 2, - ACTIONS(889), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4692] = 2, + ACTIONS(689), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4797] = 2, - ACTIONS(995), 1, + [4700] = 2, + ACTIONS(993), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4805] = 2, - ACTIONS(997), 1, + [4708] = 2, + ACTIONS(995), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4813] = 2, - ACTIONS(999), 1, + [4716] = 2, + ACTIONS(997), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4821] = 2, - ACTIONS(1001), 1, + [4724] = 2, + ACTIONS(999), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4829] = 2, - ACTIONS(328), 1, - sym__non_newline_whitespace, - ACTIONS(5), 2, + [4732] = 2, + ACTIONS(701), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4740] = 2, + ACTIONS(1001), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4837] = 2, + [4748] = 2, ACTIONS(1003), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4845] = 2, + [4756] = 2, ACTIONS(1005), 1, - anon_sym_RBRACE, + aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4853] = 2, + [4764] = 2, ACTIONS(1007), 1, anon_sym_LF, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4861] = 2, + [4772] = 2, ACTIONS(1009), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4869] = 2, - ACTIONS(580), 1, - sym__non_newline_whitespace, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4877] = 2, + [4780] = 2, ACTIONS(1011), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4885] = 2, + [4788] = 2, ACTIONS(1013), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4893] = 2, + [4796] = 2, ACTIONS(1015), 1, - anon_sym_RBRACE, + aux_sym_arg_instruction_token2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4901] = 2, + [4804] = 2, ACTIONS(1017), 1, - aux_sym_param_token1, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4909] = 2, + [4812] = 2, ACTIONS(1019), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4917] = 2, + [4820] = 2, ACTIONS(1021), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4925] = 2, + [4828] = 2, + ACTIONS(879), 1, + anon_sym_LF, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4836] = 2, ACTIONS(1023), 1, - aux_sym__expansion_body_token1, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4933] = 2, + [4844] = 2, ACTIONS(1025), 1, - anon_sym_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4941] = 2, + [4852] = 2, ACTIONS(1027), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4949] = 2, + [4860] = 2, ACTIONS(1029), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4957] = 2, + [4868] = 2, ACTIONS(1031), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4965] = 2, + [4876] = 2, ACTIONS(1033), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4973] = 2, + [4884] = 2, ACTIONS(1035), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4981] = 2, + [4892] = 2, ACTIONS(1037), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4989] = 2, + [4900] = 2, ACTIONS(1039), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [4997] = 2, + [4908] = 2, ACTIONS(1041), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5005] = 2, + [4916] = 2, ACTIONS(1043), 1, - aux_sym__expansion_body_token1, - ACTIONS(5), 2, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5013] = 2, + [4924] = 2, ACTIONS(1045), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5021] = 2, + [4932] = 2, ACTIONS(1047), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5029] = 2, + [4940] = 2, ACTIONS(1049), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5037] = 2, + [4948] = 2, ACTIONS(1051), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5045] = 2, + [4956] = 2, ACTIONS(1053), 1, aux_sym__expansion_body_token1, - ACTIONS(5), 2, + ACTIONS(120), 2, sym_line_continuation, sym_comment, - [5053] = 2, + [4964] = 2, ACTIONS(1055), 1, + aux_sym__expansion_body_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4972] = 2, + ACTIONS(1057), 1, + aux_sym__expansion_body_token1, + ACTIONS(120), 2, + sym_line_continuation, + sym_comment, + [4980] = 2, + ACTIONS(1059), 1, aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [5061] = 2, - ACTIONS(1057), 1, + [4988] = 2, + ACTIONS(1061), 1, aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [5069] = 3, - ACTIONS(3), 1, + [4996] = 2, + ACTIONS(927), 1, + anon_sym_LF, + ACTIONS(120), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(1059), 1, - aux_sym_param_token2, }; static const uint32_t ts_small_parse_table_map[] = { @@ -7663,844 +7602,843 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(4)] = 180, [SMALL_STATE(5)] = 264, [SMALL_STATE(6)] = 291, - [SMALL_STATE(7)] = 326, - [SMALL_STATE(8)] = 361, - [SMALL_STATE(9)] = 395, - [SMALL_STATE(10)] = 425, - [SMALL_STATE(11)] = 455, - [SMALL_STATE(12)] = 485, - [SMALL_STATE(13)] = 514, - [SMALL_STATE(14)] = 549, - [SMALL_STATE(15)] = 584, - [SMALL_STATE(16)] = 619, - [SMALL_STATE(17)] = 648, - [SMALL_STATE(18)] = 683, - [SMALL_STATE(19)] = 708, - [SMALL_STATE(20)] = 731, - [SMALL_STATE(21)] = 756, - [SMALL_STATE(22)] = 780, - [SMALL_STATE(23)] = 804, - [SMALL_STATE(24)] = 828, - [SMALL_STATE(25)] = 852, - [SMALL_STATE(26)] = 876, - [SMALL_STATE(27)] = 898, - [SMALL_STATE(28)] = 920, - [SMALL_STATE(29)] = 942, - [SMALL_STATE(30)] = 965, - [SMALL_STATE(31)] = 988, - [SMALL_STATE(32)] = 1009, - [SMALL_STATE(33)] = 1026, - [SMALL_STATE(34)] = 1049, - [SMALL_STATE(35)] = 1074, - [SMALL_STATE(36)] = 1095, - [SMALL_STATE(37)] = 1118, - [SMALL_STATE(38)] = 1141, - [SMALL_STATE(39)] = 1162, - [SMALL_STATE(40)] = 1185, - [SMALL_STATE(41)] = 1210, - [SMALL_STATE(42)] = 1227, - [SMALL_STATE(43)] = 1244, - [SMALL_STATE(44)] = 1267, - [SMALL_STATE(45)] = 1290, - [SMALL_STATE(46)] = 1313, - [SMALL_STATE(47)] = 1336, - [SMALL_STATE(48)] = 1359, - [SMALL_STATE(49)] = 1382, - [SMALL_STATE(50)] = 1405, - [SMALL_STATE(51)] = 1428, - [SMALL_STATE(52)] = 1451, - [SMALL_STATE(53)] = 1474, - [SMALL_STATE(54)] = 1496, - [SMALL_STATE(55)] = 1524, - [SMALL_STATE(56)] = 1546, - [SMALL_STATE(57)] = 1574, - [SMALL_STATE(58)] = 1596, - [SMALL_STATE(59)] = 1618, - [SMALL_STATE(60)] = 1640, - [SMALL_STATE(61)] = 1662, - [SMALL_STATE(62)] = 1684, - [SMALL_STATE(63)] = 1700, - [SMALL_STATE(64)] = 1722, - [SMALL_STATE(65)] = 1744, - [SMALL_STATE(66)] = 1772, - [SMALL_STATE(67)] = 1800, - [SMALL_STATE(68)] = 1822, - [SMALL_STATE(69)] = 1838, - [SMALL_STATE(70)] = 1866, - [SMALL_STATE(71)] = 1888, - [SMALL_STATE(72)] = 1916, - [SMALL_STATE(73)] = 1932, - [SMALL_STATE(74)] = 1948, - [SMALL_STATE(75)] = 1976, - [SMALL_STATE(76)] = 1991, - [SMALL_STATE(77)] = 2010, - [SMALL_STATE(78)] = 2029, - [SMALL_STATE(79)] = 2044, - [SMALL_STATE(80)] = 2063, - [SMALL_STATE(81)] = 2078, - [SMALL_STATE(82)] = 2097, - [SMALL_STATE(83)] = 2116, - [SMALL_STATE(84)] = 2139, - [SMALL_STATE(85)] = 2158, - [SMALL_STATE(86)] = 2177, - [SMALL_STATE(87)] = 2196, - [SMALL_STATE(88)] = 2215, - [SMALL_STATE(89)] = 2236, - [SMALL_STATE(90)] = 2255, - [SMALL_STATE(91)] = 2274, - [SMALL_STATE(92)] = 2293, - [SMALL_STATE(93)] = 2312, - [SMALL_STATE(94)] = 2331, - [SMALL_STATE(95)] = 2350, - [SMALL_STATE(96)] = 2364, - [SMALL_STATE(97)] = 2382, - [SMALL_STATE(98)] = 2400, - [SMALL_STATE(99)] = 2418, - [SMALL_STATE(100)] = 2434, - [SMALL_STATE(101)] = 2452, - [SMALL_STATE(102)] = 2474, - [SMALL_STATE(103)] = 2492, - [SMALL_STATE(104)] = 2510, - [SMALL_STATE(105)] = 2526, - [SMALL_STATE(106)] = 2548, - [SMALL_STATE(107)] = 2566, - [SMALL_STATE(108)] = 2584, - [SMALL_STATE(109)] = 2600, - [SMALL_STATE(110)] = 2614, - [SMALL_STATE(111)] = 2636, - [SMALL_STATE(112)] = 2652, - [SMALL_STATE(113)] = 2670, - [SMALL_STATE(114)] = 2684, - [SMALL_STATE(115)] = 2698, - [SMALL_STATE(116)] = 2712, - [SMALL_STATE(117)] = 2730, - [SMALL_STATE(118)] = 2744, - [SMALL_STATE(119)] = 2758, - [SMALL_STATE(120)] = 2772, - [SMALL_STATE(121)] = 2786, - [SMALL_STATE(122)] = 2804, - [SMALL_STATE(123)] = 2822, - [SMALL_STATE(124)] = 2840, - [SMALL_STATE(125)] = 2858, - [SMALL_STATE(126)] = 2876, - [SMALL_STATE(127)] = 2894, - [SMALL_STATE(128)] = 2907, - [SMALL_STATE(129)] = 2922, - [SMALL_STATE(130)] = 2937, - [SMALL_STATE(131)] = 2952, - [SMALL_STATE(132)] = 2967, - [SMALL_STATE(133)] = 2984, - [SMALL_STATE(134)] = 2997, - [SMALL_STATE(135)] = 3010, - [SMALL_STATE(136)] = 3027, - [SMALL_STATE(137)] = 3040, - [SMALL_STATE(138)] = 3051, - [SMALL_STATE(139)] = 3062, - [SMALL_STATE(140)] = 3073, - [SMALL_STATE(141)] = 3090, - [SMALL_STATE(142)] = 3105, - [SMALL_STATE(143)] = 3120, - [SMALL_STATE(144)] = 3137, - [SMALL_STATE(145)] = 3154, - [SMALL_STATE(146)] = 3171, - [SMALL_STATE(147)] = 3186, - [SMALL_STATE(148)] = 3201, - [SMALL_STATE(149)] = 3214, - [SMALL_STATE(150)] = 3227, - [SMALL_STATE(151)] = 3242, - [SMALL_STATE(152)] = 3255, - [SMALL_STATE(153)] = 3270, - [SMALL_STATE(154)] = 3285, - [SMALL_STATE(155)] = 3300, - [SMALL_STATE(156)] = 3317, - [SMALL_STATE(157)] = 3332, - [SMALL_STATE(158)] = 3349, - [SMALL_STATE(159)] = 3364, - [SMALL_STATE(160)] = 3377, - [SMALL_STATE(161)] = 3390, - [SMALL_STATE(162)] = 3403, - [SMALL_STATE(163)] = 3417, - [SMALL_STATE(164)] = 3429, - [SMALL_STATE(165)] = 3439, - [SMALL_STATE(166)] = 3453, - [SMALL_STATE(167)] = 3467, - [SMALL_STATE(168)] = 3481, - [SMALL_STATE(169)] = 3493, - [SMALL_STATE(170)] = 3507, - [SMALL_STATE(171)] = 3519, - [SMALL_STATE(172)] = 3533, - [SMALL_STATE(173)] = 3547, - [SMALL_STATE(174)] = 3561, - [SMALL_STATE(175)] = 3575, - [SMALL_STATE(176)] = 3587, - [SMALL_STATE(177)] = 3599, - [SMALL_STATE(178)] = 3611, - [SMALL_STATE(179)] = 3623, - [SMALL_STATE(180)] = 3637, - [SMALL_STATE(181)] = 3651, - [SMALL_STATE(182)] = 3663, - [SMALL_STATE(183)] = 3675, - [SMALL_STATE(184)] = 3687, - [SMALL_STATE(185)] = 3697, - [SMALL_STATE(186)] = 3707, - [SMALL_STATE(187)] = 3721, - [SMALL_STATE(188)] = 3733, - [SMALL_STATE(189)] = 3743, - [SMALL_STATE(190)] = 3757, - [SMALL_STATE(191)] = 3771, - [SMALL_STATE(192)] = 3785, - [SMALL_STATE(193)] = 3795, - [SMALL_STATE(194)] = 3805, - [SMALL_STATE(195)] = 3819, - [SMALL_STATE(196)] = 3833, - [SMALL_STATE(197)] = 3847, - [SMALL_STATE(198)] = 3861, - [SMALL_STATE(199)] = 3875, - [SMALL_STATE(200)] = 3889, - [SMALL_STATE(201)] = 3903, - [SMALL_STATE(202)] = 3917, - [SMALL_STATE(203)] = 3931, - [SMALL_STATE(204)] = 3945, - [SMALL_STATE(205)] = 3959, - [SMALL_STATE(206)] = 3973, - [SMALL_STATE(207)] = 3987, - [SMALL_STATE(208)] = 4001, - [SMALL_STATE(209)] = 4015, - [SMALL_STATE(210)] = 4029, - [SMALL_STATE(211)] = 4043, - [SMALL_STATE(212)] = 4057, - [SMALL_STATE(213)] = 4071, - [SMALL_STATE(214)] = 4085, - [SMALL_STATE(215)] = 4099, - [SMALL_STATE(216)] = 4113, - [SMALL_STATE(217)] = 4127, - [SMALL_STATE(218)] = 4137, - [SMALL_STATE(219)] = 4146, - [SMALL_STATE(220)] = 4157, - [SMALL_STATE(221)] = 4168, - [SMALL_STATE(222)] = 4181, - [SMALL_STATE(223)] = 4192, - [SMALL_STATE(224)] = 4203, - [SMALL_STATE(225)] = 4212, - [SMALL_STATE(226)] = 4223, - [SMALL_STATE(227)] = 4234, - [SMALL_STATE(228)] = 4247, - [SMALL_STATE(229)] = 4256, - [SMALL_STATE(230)] = 4265, - [SMALL_STATE(231)] = 4276, - [SMALL_STATE(232)] = 4285, - [SMALL_STATE(233)] = 4294, - [SMALL_STATE(234)] = 4303, - [SMALL_STATE(235)] = 4314, - [SMALL_STATE(236)] = 4327, - [SMALL_STATE(237)] = 4336, - [SMALL_STATE(238)] = 4347, - [SMALL_STATE(239)] = 4358, - [SMALL_STATE(240)] = 4369, - [SMALL_STATE(241)] = 4378, - [SMALL_STATE(242)] = 4389, - [SMALL_STATE(243)] = 4400, - [SMALL_STATE(244)] = 4411, - [SMALL_STATE(245)] = 4420, - [SMALL_STATE(246)] = 4431, - [SMALL_STATE(247)] = 4442, - [SMALL_STATE(248)] = 4453, - [SMALL_STATE(249)] = 4461, - [SMALL_STATE(250)] = 4469, - [SMALL_STATE(251)] = 4477, - [SMALL_STATE(252)] = 4485, - [SMALL_STATE(253)] = 4493, - [SMALL_STATE(254)] = 4501, - [SMALL_STATE(255)] = 4509, - [SMALL_STATE(256)] = 4517, - [SMALL_STATE(257)] = 4525, - [SMALL_STATE(258)] = 4533, - [SMALL_STATE(259)] = 4541, - [SMALL_STATE(260)] = 4549, - [SMALL_STATE(261)] = 4557, - [SMALL_STATE(262)] = 4565, - [SMALL_STATE(263)] = 4573, - [SMALL_STATE(264)] = 4581, - [SMALL_STATE(265)] = 4589, - [SMALL_STATE(266)] = 4597, - [SMALL_STATE(267)] = 4605, - [SMALL_STATE(268)] = 4613, - [SMALL_STATE(269)] = 4623, - [SMALL_STATE(270)] = 4631, - [SMALL_STATE(271)] = 4639, - [SMALL_STATE(272)] = 4647, - [SMALL_STATE(273)] = 4655, - [SMALL_STATE(274)] = 4663, - [SMALL_STATE(275)] = 4671, - [SMALL_STATE(276)] = 4679, - [SMALL_STATE(277)] = 4687, - [SMALL_STATE(278)] = 4697, - [SMALL_STATE(279)] = 4705, - [SMALL_STATE(280)] = 4713, - [SMALL_STATE(281)] = 4721, - [SMALL_STATE(282)] = 4731, - [SMALL_STATE(283)] = 4739, - [SMALL_STATE(284)] = 4747, - [SMALL_STATE(285)] = 4755, - [SMALL_STATE(286)] = 4765, - [SMALL_STATE(287)] = 4773, - [SMALL_STATE(288)] = 4781, - [SMALL_STATE(289)] = 4789, - [SMALL_STATE(290)] = 4797, - [SMALL_STATE(291)] = 4805, - [SMALL_STATE(292)] = 4813, - [SMALL_STATE(293)] = 4821, - [SMALL_STATE(294)] = 4829, - [SMALL_STATE(295)] = 4837, - [SMALL_STATE(296)] = 4845, - [SMALL_STATE(297)] = 4853, - [SMALL_STATE(298)] = 4861, - [SMALL_STATE(299)] = 4869, - [SMALL_STATE(300)] = 4877, - [SMALL_STATE(301)] = 4885, - [SMALL_STATE(302)] = 4893, - [SMALL_STATE(303)] = 4901, - [SMALL_STATE(304)] = 4909, - [SMALL_STATE(305)] = 4917, - [SMALL_STATE(306)] = 4925, - [SMALL_STATE(307)] = 4933, - [SMALL_STATE(308)] = 4941, - [SMALL_STATE(309)] = 4949, - [SMALL_STATE(310)] = 4957, - [SMALL_STATE(311)] = 4965, - [SMALL_STATE(312)] = 4973, - [SMALL_STATE(313)] = 4981, - [SMALL_STATE(314)] = 4989, - [SMALL_STATE(315)] = 4997, - [SMALL_STATE(316)] = 5005, - [SMALL_STATE(317)] = 5013, - [SMALL_STATE(318)] = 5021, - [SMALL_STATE(319)] = 5029, - [SMALL_STATE(320)] = 5037, - [SMALL_STATE(321)] = 5045, - [SMALL_STATE(322)] = 5053, - [SMALL_STATE(323)] = 5061, - [SMALL_STATE(324)] = 5069, + [SMALL_STATE(7)] = 323, + [SMALL_STATE(8)] = 355, + [SMALL_STATE(9)] = 389, + [SMALL_STATE(10)] = 417, + [SMALL_STATE(11)] = 445, + [SMALL_STATE(12)] = 473, + [SMALL_STATE(13)] = 506, + [SMALL_STATE(14)] = 533, + [SMALL_STATE(15)] = 566, + [SMALL_STATE(16)] = 599, + [SMALL_STATE(17)] = 622, + [SMALL_STATE(18)] = 655, + [SMALL_STATE(19)] = 680, + [SMALL_STATE(20)] = 705, + [SMALL_STATE(21)] = 731, + [SMALL_STATE(22)] = 757, + [SMALL_STATE(23)] = 781, + [SMALL_STATE(24)] = 805, + [SMALL_STATE(25)] = 831, + [SMALL_STATE(26)] = 855, + [SMALL_STATE(27)] = 879, + [SMALL_STATE(28)] = 903, + [SMALL_STATE(29)] = 925, + [SMALL_STATE(30)] = 947, + [SMALL_STATE(31)] = 969, + [SMALL_STATE(32)] = 992, + [SMALL_STATE(33)] = 1015, + [SMALL_STATE(34)] = 1036, + [SMALL_STATE(35)] = 1059, + [SMALL_STATE(36)] = 1082, + [SMALL_STATE(37)] = 1107, + [SMALL_STATE(38)] = 1128, + [SMALL_STATE(39)] = 1151, + [SMALL_STATE(40)] = 1174, + [SMALL_STATE(41)] = 1199, + [SMALL_STATE(42)] = 1216, + [SMALL_STATE(43)] = 1233, + [SMALL_STATE(44)] = 1250, + [SMALL_STATE(45)] = 1273, + [SMALL_STATE(46)] = 1294, + [SMALL_STATE(47)] = 1317, + [SMALL_STATE(48)] = 1340, + [SMALL_STATE(49)] = 1363, + [SMALL_STATE(50)] = 1386, + [SMALL_STATE(51)] = 1409, + [SMALL_STATE(52)] = 1432, + [SMALL_STATE(53)] = 1455, + [SMALL_STATE(54)] = 1478, + [SMALL_STATE(55)] = 1501, + [SMALL_STATE(56)] = 1523, + [SMALL_STATE(57)] = 1543, + [SMALL_STATE(58)] = 1569, + [SMALL_STATE(59)] = 1595, + [SMALL_STATE(60)] = 1621, + [SMALL_STATE(61)] = 1637, + [SMALL_STATE(62)] = 1659, + [SMALL_STATE(63)] = 1681, + [SMALL_STATE(64)] = 1703, + [SMALL_STATE(65)] = 1729, + [SMALL_STATE(66)] = 1751, + [SMALL_STATE(67)] = 1767, + [SMALL_STATE(68)] = 1789, + [SMALL_STATE(69)] = 1815, + [SMALL_STATE(70)] = 1831, + [SMALL_STATE(71)] = 1847, + [SMALL_STATE(72)] = 1873, + [SMALL_STATE(73)] = 1895, + [SMALL_STATE(74)] = 1917, + [SMALL_STATE(75)] = 1943, + [SMALL_STATE(76)] = 1962, + [SMALL_STATE(77)] = 1981, + [SMALL_STATE(78)] = 2004, + [SMALL_STATE(79)] = 2023, + [SMALL_STATE(80)] = 2042, + [SMALL_STATE(81)] = 2061, + [SMALL_STATE(82)] = 2080, + [SMALL_STATE(83)] = 2095, + [SMALL_STATE(84)] = 2114, + [SMALL_STATE(85)] = 2133, + [SMALL_STATE(86)] = 2152, + [SMALL_STATE(87)] = 2171, + [SMALL_STATE(88)] = 2190, + [SMALL_STATE(89)] = 2205, + [SMALL_STATE(90)] = 2224, + [SMALL_STATE(91)] = 2245, + [SMALL_STATE(92)] = 2264, + [SMALL_STATE(93)] = 2283, + [SMALL_STATE(94)] = 2302, + [SMALL_STATE(95)] = 2321, + [SMALL_STATE(96)] = 2340, + [SMALL_STATE(97)] = 2355, + [SMALL_STATE(98)] = 2373, + [SMALL_STATE(99)] = 2391, + [SMALL_STATE(100)] = 2409, + [SMALL_STATE(101)] = 2425, + [SMALL_STATE(102)] = 2441, + [SMALL_STATE(103)] = 2461, + [SMALL_STATE(104)] = 2479, + [SMALL_STATE(105)] = 2499, + [SMALL_STATE(106)] = 2517, + [SMALL_STATE(107)] = 2535, + [SMALL_STATE(108)] = 2551, + [SMALL_STATE(109)] = 2571, + [SMALL_STATE(110)] = 2589, + [SMALL_STATE(111)] = 2603, + [SMALL_STATE(112)] = 2621, + [SMALL_STATE(113)] = 2639, + [SMALL_STATE(114)] = 2653, + [SMALL_STATE(115)] = 2671, + [SMALL_STATE(116)] = 2685, + [SMALL_STATE(117)] = 2699, + [SMALL_STATE(118)] = 2713, + [SMALL_STATE(119)] = 2729, + [SMALL_STATE(120)] = 2743, + [SMALL_STATE(121)] = 2757, + [SMALL_STATE(122)] = 2771, + [SMALL_STATE(123)] = 2785, + [SMALL_STATE(124)] = 2799, + [SMALL_STATE(125)] = 2817, + [SMALL_STATE(126)] = 2835, + [SMALL_STATE(127)] = 2853, + [SMALL_STATE(128)] = 2871, + [SMALL_STATE(129)] = 2889, + [SMALL_STATE(130)] = 2902, + [SMALL_STATE(131)] = 2915, + [SMALL_STATE(132)] = 2930, + [SMALL_STATE(133)] = 2943, + [SMALL_STATE(134)] = 2960, + [SMALL_STATE(135)] = 2973, + [SMALL_STATE(136)] = 2986, + [SMALL_STATE(137)] = 2999, + [SMALL_STATE(138)] = 3016, + [SMALL_STATE(139)] = 3031, + [SMALL_STATE(140)] = 3044, + [SMALL_STATE(141)] = 3057, + [SMALL_STATE(142)] = 3072, + [SMALL_STATE(143)] = 3085, + [SMALL_STATE(144)] = 3096, + [SMALL_STATE(145)] = 3107, + [SMALL_STATE(146)] = 3120, + [SMALL_STATE(147)] = 3137, + [SMALL_STATE(148)] = 3152, + [SMALL_STATE(149)] = 3167, + [SMALL_STATE(150)] = 3182, + [SMALL_STATE(151)] = 3197, + [SMALL_STATE(152)] = 3214, + [SMALL_STATE(153)] = 3231, + [SMALL_STATE(154)] = 3248, + [SMALL_STATE(155)] = 3261, + [SMALL_STATE(156)] = 3276, + [SMALL_STATE(157)] = 3291, + [SMALL_STATE(158)] = 3306, + [SMALL_STATE(159)] = 3323, + [SMALL_STATE(160)] = 3340, + [SMALL_STATE(161)] = 3355, + [SMALL_STATE(162)] = 3370, + [SMALL_STATE(163)] = 3381, + [SMALL_STATE(164)] = 3393, + [SMALL_STATE(165)] = 3407, + [SMALL_STATE(166)] = 3421, + [SMALL_STATE(167)] = 3435, + [SMALL_STATE(168)] = 3449, + [SMALL_STATE(169)] = 3461, + [SMALL_STATE(170)] = 3475, + [SMALL_STATE(171)] = 3489, + [SMALL_STATE(172)] = 3503, + [SMALL_STATE(173)] = 3517, + [SMALL_STATE(174)] = 3529, + [SMALL_STATE(175)] = 3541, + [SMALL_STATE(176)] = 3553, + [SMALL_STATE(177)] = 3565, + [SMALL_STATE(178)] = 3579, + [SMALL_STATE(179)] = 3593, + [SMALL_STATE(180)] = 3605, + [SMALL_STATE(181)] = 3617, + [SMALL_STATE(182)] = 3629, + [SMALL_STATE(183)] = 3639, + [SMALL_STATE(184)] = 3649, + [SMALL_STATE(185)] = 3659, + [SMALL_STATE(186)] = 3669, + [SMALL_STATE(187)] = 3683, + [SMALL_STATE(188)] = 3697, + [SMALL_STATE(189)] = 3711, + [SMALL_STATE(190)] = 3725, + [SMALL_STATE(191)] = 3735, + [SMALL_STATE(192)] = 3749, + [SMALL_STATE(193)] = 3763, + [SMALL_STATE(194)] = 3777, + [SMALL_STATE(195)] = 3791, + [SMALL_STATE(196)] = 3805, + [SMALL_STATE(197)] = 3817, + [SMALL_STATE(198)] = 3831, + [SMALL_STATE(199)] = 3845, + [SMALL_STATE(200)] = 3859, + [SMALL_STATE(201)] = 3869, + [SMALL_STATE(202)] = 3883, + [SMALL_STATE(203)] = 3897, + [SMALL_STATE(204)] = 3911, + [SMALL_STATE(205)] = 3925, + [SMALL_STATE(206)] = 3939, + [SMALL_STATE(207)] = 3953, + [SMALL_STATE(208)] = 3967, + [SMALL_STATE(209)] = 3981, + [SMALL_STATE(210)] = 3995, + [SMALL_STATE(211)] = 4009, + [SMALL_STATE(212)] = 4023, + [SMALL_STATE(213)] = 4037, + [SMALL_STATE(214)] = 4051, + [SMALL_STATE(215)] = 4065, + [SMALL_STATE(216)] = 4079, + [SMALL_STATE(217)] = 4089, + [SMALL_STATE(218)] = 4100, + [SMALL_STATE(219)] = 4109, + [SMALL_STATE(220)] = 4118, + [SMALL_STATE(221)] = 4129, + [SMALL_STATE(222)] = 4140, + [SMALL_STATE(223)] = 4151, + [SMALL_STATE(224)] = 4162, + [SMALL_STATE(225)] = 4171, + [SMALL_STATE(226)] = 4180, + [SMALL_STATE(227)] = 4189, + [SMALL_STATE(228)] = 4200, + [SMALL_STATE(229)] = 4211, + [SMALL_STATE(230)] = 4222, + [SMALL_STATE(231)] = 4231, + [SMALL_STATE(232)] = 4242, + [SMALL_STATE(233)] = 4253, + [SMALL_STATE(234)] = 4264, + [SMALL_STATE(235)] = 4275, + [SMALL_STATE(236)] = 4286, + [SMALL_STATE(237)] = 4297, + [SMALL_STATE(238)] = 4308, + [SMALL_STATE(239)] = 4319, + [SMALL_STATE(240)] = 4330, + [SMALL_STATE(241)] = 4341, + [SMALL_STATE(242)] = 4350, + [SMALL_STATE(243)] = 4359, + [SMALL_STATE(244)] = 4370, + [SMALL_STATE(245)] = 4379, + [SMALL_STATE(246)] = 4388, + [SMALL_STATE(247)] = 4396, + [SMALL_STATE(248)] = 4404, + [SMALL_STATE(249)] = 4412, + [SMALL_STATE(250)] = 4420, + [SMALL_STATE(251)] = 4428, + [SMALL_STATE(252)] = 4436, + [SMALL_STATE(253)] = 4444, + [SMALL_STATE(254)] = 4452, + [SMALL_STATE(255)] = 4460, + [SMALL_STATE(256)] = 4468, + [SMALL_STATE(257)] = 4476, + [SMALL_STATE(258)] = 4484, + [SMALL_STATE(259)] = 4492, + [SMALL_STATE(260)] = 4500, + [SMALL_STATE(261)] = 4508, + [SMALL_STATE(262)] = 4516, + [SMALL_STATE(263)] = 4524, + [SMALL_STATE(264)] = 4532, + [SMALL_STATE(265)] = 4540, + [SMALL_STATE(266)] = 4548, + [SMALL_STATE(267)] = 4556, + [SMALL_STATE(268)] = 4564, + [SMALL_STATE(269)] = 4572, + [SMALL_STATE(270)] = 4580, + [SMALL_STATE(271)] = 4588, + [SMALL_STATE(272)] = 4596, + [SMALL_STATE(273)] = 4604, + [SMALL_STATE(274)] = 4612, + [SMALL_STATE(275)] = 4620, + [SMALL_STATE(276)] = 4628, + [SMALL_STATE(277)] = 4636, + [SMALL_STATE(278)] = 4644, + [SMALL_STATE(279)] = 4652, + [SMALL_STATE(280)] = 4660, + [SMALL_STATE(281)] = 4668, + [SMALL_STATE(282)] = 4676, + [SMALL_STATE(283)] = 4684, + [SMALL_STATE(284)] = 4692, + [SMALL_STATE(285)] = 4700, + [SMALL_STATE(286)] = 4708, + [SMALL_STATE(287)] = 4716, + [SMALL_STATE(288)] = 4724, + [SMALL_STATE(289)] = 4732, + [SMALL_STATE(290)] = 4740, + [SMALL_STATE(291)] = 4748, + [SMALL_STATE(292)] = 4756, + [SMALL_STATE(293)] = 4764, + [SMALL_STATE(294)] = 4772, + [SMALL_STATE(295)] = 4780, + [SMALL_STATE(296)] = 4788, + [SMALL_STATE(297)] = 4796, + [SMALL_STATE(298)] = 4804, + [SMALL_STATE(299)] = 4812, + [SMALL_STATE(300)] = 4820, + [SMALL_STATE(301)] = 4828, + [SMALL_STATE(302)] = 4836, + [SMALL_STATE(303)] = 4844, + [SMALL_STATE(304)] = 4852, + [SMALL_STATE(305)] = 4860, + [SMALL_STATE(306)] = 4868, + [SMALL_STATE(307)] = 4876, + [SMALL_STATE(308)] = 4884, + [SMALL_STATE(309)] = 4892, + [SMALL_STATE(310)] = 4900, + [SMALL_STATE(311)] = 4908, + [SMALL_STATE(312)] = 4916, + [SMALL_STATE(313)] = 4924, + [SMALL_STATE(314)] = 4932, + [SMALL_STATE(315)] = 4940, + [SMALL_STATE(316)] = 4948, + [SMALL_STATE(317)] = 4956, + [SMALL_STATE(318)] = 4964, + [SMALL_STATE(319)] = 4972, + [SMALL_STATE(320)] = 4980, + [SMALL_STATE(321)] = 4988, + [SMALL_STATE(322)] = 4996, }; static const 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 = false}}, SHIFT_EXTRA(), - [7] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0, 0, 0), + [7] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), - [49] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), - [51] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(71), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7), - [57] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(16), - [60] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(61), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(104), - [66] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(102), - [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(145), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(262), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(132), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(88), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(234), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(259), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(270), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), - [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 2, 0, 1), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 2, 0, 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(125), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(20), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), + [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [45] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [47] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), + [49] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(6), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(24), + [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(62), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(101), + [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(114), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(12), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(20), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(68), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(159), + [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(108), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(297), + [88] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(4), + [91] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(137), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(90), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(233), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(271), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(260), + [106] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), + [108] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), + [114] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 2, 0, 1), + [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 2, 0, 1), + [120] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), - [154] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1, 0, 0), - [156] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1, 0, 0), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [160] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), - [162] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(220), - [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), - [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(214), - [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), - [174] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(20), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1, 0, 0), - [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1, 0, 0), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_fragment, 1, 0, 0), - [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), - [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1, 0, 0), - [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), - [193] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(23), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), - [198] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(286), - [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 2, 0, 0), - [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 2, 0, 0), - [205] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), - [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), - [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [214] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(25), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 4, 0, 13), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 4, 0, 13), - [221] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 5, 0, 15), - [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 5, 0, 15), - [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), - [229] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), - [231] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), SHIFT_REPEAT(235), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2, 0, 0), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2, 0, 0), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [240] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [242] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [244] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [246] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [248] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 1, 0, 0), - [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), - [260] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(249), - [263] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(36), - [266] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(112), - [269] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 2, 0, 0), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [273] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [275] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [279] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(171), - [282] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), - [284] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [287] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [290] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), - [292] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(38), - [295] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(204), - [298] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), - [300] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), - [302] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(210), - [305] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 2, 0, 0), - [310] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [312] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), - [316] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param_param, 3, 0, 0), - [318] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param_param, 3, 0, 0), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), - [326] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), - [330] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(45), - [333] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [336] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), - [338] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), - [342] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), - [344] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(215), - [347] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(48), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [352] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(49), - [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [358] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [360] = {.entry = {.count = 1, .reusable = false}}, SHIFT(148), - [362] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [364] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), - [372] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [374] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), - [376] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(164), - [379] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(204), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(60), - [384] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [386] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2, 0, 0), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2, 0, 0), - [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [396] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 4, 0, 11), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [410] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), - [412] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), - [414] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(212), - [417] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(59), - [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), - [422] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [426] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(249), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [434] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), - [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), - [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(322), - [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(84), - [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(84), - [447] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(201), - [450] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(294), - [453] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [456] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(203), - [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, 0, 13), - [461] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 13), - [463] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [471] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imm_expansion, 2, 0, 0), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__imm_expansion, 2, 0, 0), - [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 0), - [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 3, 0, 0), - [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(81), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), - [489] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(77), - [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(208), - [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 2, 0, 0), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(82), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(200), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, 0, 1), - [515] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, 0, 1), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [525] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), - [527] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(186), - [530] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(85), - [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(86), - [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(206), - [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2, 0, 0), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1, 0, 0), - [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [553] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), - [555] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(194), - [558] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(99), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 1, 0, 0), - [563] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(82), - [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 2, 0, 0), - [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), - [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(271), - [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 3, 0, 0), - [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(147), - [582] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1, 0, 0), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1, 0, 0), - [588] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), - [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 3, 0, 0), - [592] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [594] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 0), - [596] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [600] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(116), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [610] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [624] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [627] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), - [629] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [632] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 4, 0, 0), - [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [642] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 4, 0, 0), - [644] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), - [646] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, 0, 9), - [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, 0, 9), - [656] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), - [658] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(190), - [661] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), - [663] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(58), - [666] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 4, 0, 0), - [668] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3, 0, 0), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), - [676] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [679] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(135), - [682] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [684] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 2, 0, 0), - [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5, 0, 0), - [692] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 5), - [694] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 5), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5, 0, 0), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), - [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2, 0, 0), - [712] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1, 0, 0), - [716] = {.entry = {.count = 1, .reusable = false}}, SHIFT(58), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2, 0, 0), - [720] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2, 0, 0), - [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2, 0, 0), - [724] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [727] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 4, 0, 0), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(240), - [731] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [733] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 4, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3, 0, 0), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3, 0, 0), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3, 0, 0), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2, 0, 0), - [751] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2, 0, 0), - [753] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 1, 0, 0), - [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), SHIFT_REPEAT(230), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1, 0, 0), + [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [152] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), + [154] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(235), + [157] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), + [159] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1, 0, 0), + [161] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1, 0, 0), + [163] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [165] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), + [167] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(213), + [170] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(19), + [175] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [177] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), + [179] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), + [183] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(92), + [187] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 2, 0, 0), + [189] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 2, 0, 0), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), + [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), + [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(23), + [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), + [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(250), + [205] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1, 0, 0), + [207] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1, 0, 0), + [209] = {.entry = {.count = 1, .reusable = false}}, SHIFT(22), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), + [215] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(195), + [218] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(26), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), + [223] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), + [225] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 4, 0, 13), + [227] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 4, 0, 13), + [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [231] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 5, 0, 15), + [233] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 5, 0, 15), + [235] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), + [237] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), + [239] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_mount_param_repeat1, 2, 0, 0), SHIFT_REPEAT(231), + [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [245] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), + [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [250] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(31), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [255] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [257] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), + [261] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 2, 0, 0), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [267] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [273] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2, 0, 0), + [275] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2, 0, 0), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [279] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [281] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 2, 0, 0), + [283] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [285] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), + [287] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), + [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(37), + [294] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(203), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), + [301] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(209), + [304] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [307] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), + [311] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [314] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(34), + [317] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(103), + [320] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param_param, 3, 0, 0), + [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param_param, 3, 0, 0), + [324] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [328] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [330] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 1, 0, 0), + [334] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), + [336] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(46), + [339] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(258), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), + [344] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), + [346] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [350] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(214), + [353] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(50), + [356] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [358] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [361] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [366] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), + [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), + [382] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(200), + [385] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(203), + [388] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), + [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), + [392] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(320), + [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [397] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [399] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [401] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [403] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [407] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 4, 0, 11), + [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [415] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), + [419] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), + [421] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), + [423] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(211), + [426] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(86), + [432] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(86), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(199), + [438] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(283), + [441] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(65), + [444] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(201), + [447] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, 0, 13), + [449] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 13), + [451] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), + [453] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [455] = {.entry = {.count = 1, .reusable = true}}, SHIFT(201), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), + [459] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), + [465] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imm_expansion, 2, 0, 0), + [467] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__imm_expansion, 2, 0, 0), + [469] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 0), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 3, 0, 0), + [473] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2, 0, 0), + [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2, 0, 0), + [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), + [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [481] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(65), + [485] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, 0, 1), + [497] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, 0, 1), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [503] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), + [505] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(191), + [508] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(107), + [511] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [515] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 2, 0, 0), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [521] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1, 0, 0), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2, 0, 0), + [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), + [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), + [533] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(85), + [536] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(198), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), + [543] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(87), + [546] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(207), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 2, 0, 0), + [551] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), + [559] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(91), + [565] = {.entry = {.count = 1, .reusable = false}}, SHIFT(48), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 1, 0, 0), + [571] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), + [575] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(95), + [578] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(205), + [581] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [583] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [585] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 4, 0, 0), + [587] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [591] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 3, 0, 0), + [593] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 4, 0, 0), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), + [599] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(106), + [603] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [605] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [607] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), + [609] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(262), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1, 0, 0), + [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1, 0, 0), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 3, 0, 0), + [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 0), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [640] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [643] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), + [645] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(124), + [648] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [654] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [658] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [666] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [668] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, 0, 9), + [673] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, 0, 9), + [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), + [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [681] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), + [683] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), + [685] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [687] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [689] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [691] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [693] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), + [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [697] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3, 0, 0), + [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 4, 0, 0), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [703] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [705] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 5), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 5), + [709] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 4, 0, 0), + [711] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2, 0, 0), + [713] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 2, 0, 0), + [715] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [717] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [719] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), + [721] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), + [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [725] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), + [727] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [730] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(153), + [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5, 0, 0), + [735] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5, 0, 0), + [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), + [739] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(189), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [746] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [749] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 4, 0, 0), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [755] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), SHIFT_REPEAT(243), [758] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), - [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), SHIFT_REPEAT(291), + [760] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), SHIFT_REPEAT(293), [763] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), - [765] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [767] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3, 0, 0), - [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [773] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [775] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [777] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [779] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(63), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(291), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), - [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(289), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [814] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 2, 0, 0), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), - [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [824] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), - [826] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(101), - [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), - [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), - [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [873] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 4, 0, 0), - [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, 0, 8), - [877] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, 0, 8), - [879] = {.entry = {.count = 1, .reusable = false}}, SHIFT(307), - [881] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [883] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 3, 0, 0), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 2, 0, 0), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 3, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 2, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 2, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 2, 0, 0), - [897] = {.entry = {.count = 1, .reusable = false}}, SHIFT(144), - [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 2, 0, 4), - [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, 0, 10), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, 0, 10), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 3, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), - [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 6), - [917] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 6), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3, 0, 0), - [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), - [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 2, 0, 3), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), - [929] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 2, 0, 0), - [933] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [935] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 2, 0, 0), - [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 2, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, 0, 10), - [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [949] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, 0, 14), - [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [953] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 2, 0, 0), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [957] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 2, 0, 0), - [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(68), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 2, 0, 0), - [969] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [971] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 2, 0, 0), - [973] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [975] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 2), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3, 0, 0), - [985] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [765] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 2, 0, 0), + [767] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [769] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [771] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), + [773] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(92), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [792] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [794] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3, 0, 0), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(304), + [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [804] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), + [806] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(102), + [809] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [811] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [813] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2, 0, 0), + [815] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2, 0, 0), + [817] = {.entry = {.count = 1, .reusable = true}}, SHIFT(301), + [819] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), + [821] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [823] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [825] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 1, 0, 0), + [827] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [829] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [831] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [833] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), + [835] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [837] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [839] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [841] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [843] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [845] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), + [847] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [849] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [851] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [853] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [855] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [857] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [859] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [861] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [863] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [865] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [867] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [869] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [875] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3, 0, 0), + [877] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 4, 0, 0), + [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 2, 0, 0), + [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 3, 0, 0), + [885] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 6), + [887] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 6), + [889] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [891] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [893] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, 0, 10), + [897] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, 0, 10), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 2, 0, 3), + [901] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [903] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [905] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 2, 0, 4), + [911] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 2, 0, 0), + [915] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, 0, 8), + [919] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, 0, 8), + [921] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 2, 0, 0), + [923] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 2, 0, 0), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 3, 0, 0), + [927] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 3, 0, 0), + [929] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, 0, 10), + [933] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [935] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 2, 0, 0), + [937] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [939] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 2, 0, 0), + [941] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [943] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [945] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [947] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, 0, 14), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 2, 0, 0), + [953] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [955] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [959] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 2, 0, 0), + [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), + [965] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 2), + [967] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 2, 0, 0), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [973] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 4, 0, 12), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [977] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), + [981] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4, 0, 7), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [985] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), + [987] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 2, 0, 0), [989] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [995] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), - [999] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 2, 0, 0), - [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), - [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4, 0, 7), - [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [1007] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2, 0, 0), - [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [1013] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2, 0, 0), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [1023] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), - [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), - [1037] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 4, 0, 12), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1055] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [1059] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [991] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 2, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [1001] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [1009] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [1011] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 2, 0, 0), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), + [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2, 0, 0), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [1043] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3, 0, 0), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(298), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), }; enum ts_external_scanner_symbol_identifiers { ts_external_token_heredoc_marker = 0, - ts_external_token_heredoc_line = 1, + ts_external_token__heredoc_line = 1, ts_external_token_heredoc_end = 2, - ts_external_token_heredoc_nl = 3, + ts_external_token__heredoc_nl = 3, ts_external_token_error_sentinel = 4, }; static const TSSymbol ts_external_scanner_symbol_map[EXTERNAL_TOKEN_COUNT] = { [ts_external_token_heredoc_marker] = sym_heredoc_marker, - [ts_external_token_heredoc_line] = sym_heredoc_line, + [ts_external_token__heredoc_line] = sym__heredoc_line, [ts_external_token_heredoc_end] = sym_heredoc_end, - [ts_external_token_heredoc_nl] = sym_heredoc_nl, + [ts_external_token__heredoc_nl] = sym__heredoc_nl, [ts_external_token_error_sentinel] = sym_error_sentinel, }; static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { [1] = { [ts_external_token_heredoc_marker] = true, - [ts_external_token_heredoc_line] = true, + [ts_external_token__heredoc_line] = true, [ts_external_token_heredoc_end] = true, - [ts_external_token_heredoc_nl] = true, + [ts_external_token__heredoc_nl] = true, [ts_external_token_error_sentinel] = true, }, [2] = { @@ -8508,13 +8446,13 @@ static const bool ts_external_scanner_states[6][EXTERNAL_TOKEN_COUNT] = { }, [3] = { [ts_external_token_heredoc_marker] = true, - [ts_external_token_heredoc_nl] = true, + [ts_external_token__heredoc_nl] = true, }, [4] = { - [ts_external_token_heredoc_nl] = true, + [ts_external_token__heredoc_nl] = true, }, [5] = { - [ts_external_token_heredoc_line] = true, + [ts_external_token__heredoc_line] = true, [ts_external_token_heredoc_end] = true, }, }; @@ -8538,7 +8476,7 @@ void tree_sitter_dockerfile_external_scanner_deserialize(void *, const char *, u TS_PUBLIC const TSLanguage *tree_sitter_dockerfile(void) { static const TSLanguage language = { - .version = LANGUAGE_VERSION, + .abi_version = LANGUAGE_VERSION, .symbol_count = SYMBOL_COUNT, .alias_count = ALIAS_COUNT, .token_count = TOKEN_COUNT, @@ -8546,6 +8484,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_dockerfile(void) { .state_count = STATE_COUNT, .large_state_count = LARGE_STATE_COUNT, .production_id_count = PRODUCTION_ID_COUNT, + .supertype_count = SUPERTYPE_COUNT, .field_count = FIELD_COUNT, .max_alias_sequence_length = MAX_ALIAS_SEQUENCE_LENGTH, .parse_table = &ts_parse_table[0][0], @@ -8560,7 +8499,7 @@ TS_PUBLIC const TSLanguage *tree_sitter_dockerfile(void) { .public_symbol_map = ts_symbol_map, .alias_map = ts_non_terminal_alias_map, .alias_sequences = &ts_alias_sequences[0][0], - .lex_modes = ts_lex_modes, + .lex_modes = (const void*)ts_lex_modes, .lex_fn = ts_lex, .external_scanner = { &ts_external_scanner_states[0][0], @@ -8572,6 +8511,13 @@ TS_PUBLIC const TSLanguage *tree_sitter_dockerfile(void) { tree_sitter_dockerfile_external_scanner_deserialize, }, .primary_state_ids = ts_primary_state_ids, + .name = "dockerfile", + .max_reserved_word_set_size = 0, + .metadata = { + .major_version = 0, + .minor_version = 2, + .patch_version = 0, + }, }; return &language; } diff --git a/src/tree_sitter/array.h b/src/tree_sitter/array.h index 15a3b23..a17a574 100644 --- a/src/tree_sitter/array.h +++ b/src/tree_sitter/array.h @@ -14,6 +14,7 @@ extern "C" { #include #ifdef _MSC_VER +#pragma warning(push) #pragma warning(disable : 4101) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic push @@ -278,7 +279,7 @@ static inline void _array__splice(Array *self, size_t element_size, #define _compare_int(a, b) ((int)*(a) - (int)(b)) #ifdef _MSC_VER -#pragma warning(default : 4101) +#pragma warning(pop) #elif defined(__GNUC__) || defined(__clang__) #pragma GCC diagnostic pop #endif diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index 799f599..cdbe64c 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -18,6 +18,12 @@ typedef uint16_t TSStateId; typedef uint16_t TSSymbol; typedef uint16_t TSFieldId; typedef struct TSLanguage TSLanguage; +typedef struct TSLanguageMetadata TSLanguageMetadata; +typedef struct TSLanguageMetadata { + uint8_t major_version; + uint8_t minor_version; + uint8_t patch_version; +} TSLanguageMetadata; #endif typedef struct { @@ -26,10 +32,11 @@ typedef struct { bool inherited; } TSFieldMapEntry; +// Used to index the field and supertype maps. typedef struct { uint16_t index; uint16_t length; -} TSFieldMapSlice; +} TSMapSlice; typedef struct { bool visible; @@ -79,6 +86,12 @@ typedef struct { uint16_t external_lex_state; } TSLexMode; +typedef struct { + uint16_t lex_state; + uint16_t external_lex_state; + uint16_t reserved_word_set_id; +} TSLexerMode; + typedef union { TSParseAction action; struct { @@ -93,7 +106,7 @@ typedef struct { } TSCharacterRange; struct TSLanguage { - uint32_t version; + uint32_t abi_version; uint32_t symbol_count; uint32_t alias_count; uint32_t token_count; @@ -109,13 +122,13 @@ struct TSLanguage { const TSParseActionEntry *parse_actions; const char * const *symbol_names; const char * const *field_names; - const TSFieldMapSlice *field_map_slices; + const TSMapSlice *field_map_slices; const TSFieldMapEntry *field_map_entries; const TSSymbolMetadata *symbol_metadata; const TSSymbol *public_symbol_map; const uint16_t *alias_map; const TSSymbol *alias_sequences; - const TSLexMode *lex_modes; + const TSLexerMode *lex_modes; bool (*lex_fn)(TSLexer *, TSStateId); bool (*keyword_lex_fn)(TSLexer *, TSStateId); TSSymbol keyword_capture_token; @@ -129,15 +142,23 @@ struct TSLanguage { void (*deserialize)(void *, const char *, unsigned); } external_scanner; const TSStateId *primary_state_ids; + const char *name; + const TSSymbol *reserved_words; + uint16_t max_reserved_word_set_size; + uint32_t supertype_count; + const TSSymbol *supertype_symbols; + const TSMapSlice *supertype_map_slices; + const TSSymbol *supertype_map_entries; + TSLanguageMetadata metadata; }; -static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { +static inline bool set_contains(const TSCharacterRange *ranges, uint32_t len, int32_t lookahead) { uint32_t index = 0; uint32_t size = len - index; while (size > 1) { uint32_t half_size = size / 2; uint32_t mid_index = index + half_size; - TSCharacterRange *range = &ranges[mid_index]; + const TSCharacterRange *range = &ranges[mid_index]; if (lookahead >= range->start && lookahead <= range->end) { return true; } else if (lookahead > range->end) { @@ -145,7 +166,7 @@ static inline bool set_contains(TSCharacterRange *ranges, uint32_t len, int32_t } size -= half_size; } - TSCharacterRange *range = &ranges[index]; + const TSCharacterRange *range = &ranges[index]; return (lookahead >= range->start && lookahead <= range->end); } diff --git a/test/corpus/cmd.txt b/test/corpus/cmd.txt index cd10dbf..5d5fdd1 100644 --- a/test/corpus/cmd.txt +++ b/test/corpus/cmd.txt @@ -8,8 +8,7 @@ CMD echo "test" (source_file (cmd_instruction - (shell_command - (shell_fragment)))) + (shell_command))) ================== Shell command multiline @@ -25,11 +24,8 @@ CMD echo "test" \ (source_file (cmd_instruction (shell_command - (shell_fragment) - (line_continuation) - (shell_fragment) (line_continuation) - (shell_fragment)))) + (line_continuation)))) ================== Run with shell empty array diff --git a/test/corpus/combo.txt b/test/corpus/combo.txt index 94e0fe0..5eb59db 100644 --- a/test/corpus/combo.txt +++ b/test/corpus/combo.txt @@ -33,11 +33,9 @@ RUN echo hello \ (source_file (run_instruction (shell_command - (shell_fragment) (line_continuation) (comment) - (comment) - (shell_fragment)))) + (comment)))) ================== Run with immediate line continuation @@ -53,8 +51,7 @@ RUN \ (run_instruction (line_continuation) (comment) - (shell_command - (shell_fragment)))) + (shell_command))) ================== Run with immediate continuation and comment @@ -71,7 +68,5 @@ RUN \ (run_instruction (line_continuation) (shell_command - (shell_fragment) (line_continuation) - (comment) - (shell_fragment)))) + (comment)))) diff --git a/test/corpus/entrypoint.txt b/test/corpus/entrypoint.txt index 998576e..e4d8937 100644 --- a/test/corpus/entrypoint.txt +++ b/test/corpus/entrypoint.txt @@ -8,8 +8,7 @@ ENTRYPOINT echo "test" (source_file (entrypoint_instruction - (shell_command - (shell_fragment)))) + (shell_command))) ================== Entrypoint Shell command multiline @@ -25,11 +24,8 @@ ENTRYPOINT echo "test" \ (source_file (entrypoint_instruction (shell_command - (shell_fragment) - (line_continuation) - (shell_fragment) (line_continuation) - (shell_fragment)))) + (line_continuation)))) ================== Run with shell empty array diff --git a/test/corpus/healthcheck.txt b/test/corpus/healthcheck.txt index 5de4d58..c01cad5 100644 --- a/test/corpus/healthcheck.txt +++ b/test/corpus/healthcheck.txt @@ -20,8 +20,7 @@ HEALTHCHECK CMD echo "test" (source_file (healthcheck_instruction (cmd_instruction - (shell_command - (shell_fragment))))) + (shell_command)))) ================== With options @@ -36,6 +35,5 @@ HEALTHCHECK --interval=10s --retries=10 CMD echo "test" (param) (param) (cmd_instruction - (shell_command - (shell_fragment))))) + (shell_command)))) diff --git a/test/corpus/heredoc.txt b/test/corpus/heredoc.txt index 46aa1f9..0d731ac 100644 --- a/test/corpus/heredoc.txt +++ b/test/corpus/heredoc.txt @@ -21,11 +21,8 @@ COPY --from=build /dest /dest (image_alias)) (run_instruction (shell_command - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) - (heredoc_line) (heredoc_end))) (from_instruction (image_spec @@ -58,11 +55,8 @@ COPY --from=build /dest /dest (image_alias)) (run_instruction (shell_command - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) - (heredoc_line) (heredoc_end))) (from_instruction (image_spec @@ -100,12 +94,8 @@ COPY --from=build /dest /dest (json_string))) (run_instruction (shell_command - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) - (heredoc_line) - (heredoc_line) (heredoc_end))) (from_instruction (image_spec @@ -141,14 +131,8 @@ COPY --from=build /dest /dest (image_alias)) (run_instruction (shell_command - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) - (heredoc_line) - (heredoc_line) - (heredoc_line) - (heredoc_line) (heredoc_end))) (from_instruction (image_spec @@ -200,36 +184,23 @@ COPY --from=build /dest / (path)) (run_instruction (shell_command - (shell_fragment - (heredoc_marker)) + (heredoc_marker) (line_continuation) - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) (heredoc_end)) (heredoc_block - (heredoc_line) (heredoc_end))) (run_instruction (shell_command - (shell_fragment - (heredoc_marker) - (heredoc_marker) - (heredoc_marker))) + (heredoc_marker) + (heredoc_marker) + (heredoc_marker)) (heredoc_block - (heredoc_line) - (heredoc_line) - (heredoc_line) - (heredoc_line) - (heredoc_line) - (heredoc_line) (heredoc_end)) (heredoc_block - (heredoc_line) (heredoc_end)) (heredoc_block - (heredoc_line) (heredoc_end))) (from_instruction (image_spec @@ -283,8 +254,7 @@ COPY --from=build /dest / (image_name)) (image_alias)) (run_instruction - (shell_command - (shell_fragment))) + (shell_command)) (workdir_instruction (path)) (copy_instruction @@ -292,7 +262,6 @@ COPY --from=build /dest / (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path @@ -301,21 +270,17 @@ COPY --from=build /dest / (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end)) (heredoc_block - (heredoc_line) (heredoc_end))) (run_instruction - (shell_command - (shell_fragment))) + (shell_command)) (copy_instruction (param) (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (param) @@ -323,7 +288,6 @@ COPY --from=build /dest / (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (param) @@ -331,15 +295,11 @@ COPY --from=build /dest / (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (run_instruction (shell_command - (shell_fragment) - (line_continuation) - (shell_fragment) (line_continuation) - (shell_fragment))) + (line_continuation))) (from_instruction (image_spec (image_name))) @@ -389,47 +349,40 @@ EOF (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end))) (copy_instruction (path (heredoc_marker)) (path) (heredoc_block - (heredoc_line) (heredoc_end)))) diff --git a/test/corpus/onbuild.txt b/test/corpus/onbuild.txt index 3c68197..a878bce 100644 --- a/test/corpus/onbuild.txt +++ b/test/corpus/onbuild.txt @@ -23,5 +23,4 @@ ONBUILD RUN /usr/local/bin/python-build --dir /app/src (source_file (onbuild_instruction (run_instruction - (shell_command - (shell_fragment))))) + (shell_command)))) diff --git a/test/corpus/run.txt b/test/corpus/run.txt index d5b79fa..6805120 100644 --- a/test/corpus/run.txt +++ b/test/corpus/run.txt @@ -8,8 +8,7 @@ RUN echo "test" (source_file (run_instruction - (shell_command - (shell_fragment)))) + (shell_command))) ================== Shell command multiline @@ -25,11 +24,8 @@ RUN echo "test" \ (source_file (run_instruction (shell_command - (shell_fragment) - (line_continuation) - (shell_fragment) (line_continuation) - (shell_fragment)))) + (line_continuation)))) ================== Shell command multiline space after continuation @@ -43,8 +39,7 @@ RUN echo "test" \ (source_file (run_instruction (shell_command - (shell_fragment - (line_continuation))))) + (line_continuation)))) ================== Run with shell empty array @@ -91,8 +86,7 @@ run --mount=type=secret,id=aws,target=/root/.aws/credentials \ (line_continuation) (param) (line_continuation) - (shell_command - (shell_fragment)))) + (shell_command))) ================== Run with heredoc @@ -107,8 +101,6 @@ EOF (source_file (run_instruction (shell_command - (shell_fragment - (heredoc_marker))) + (heredoc_marker)) (heredoc_block - (heredoc_line) (heredoc_end))))