diff --git a/grammar.js b/grammar.js index 2b1109c..4fd4066 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 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 162e2bd..6ee79e9 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -876,13 +876,8 @@ "type": "SEQ", "members": [ { - "type": "ALIAS", - "content": { - "type": "SYMBOL", - "name": "heredoc_nl" - }, - "named": false, - "value": "_heredoc_nl" + "type": "SYMBOL", + "name": "_heredoc_nl" }, { "type": "REPEAT", @@ -891,7 +886,7 @@ "members": [ { "type": "SYMBOL", - "name": "heredoc_line" + "name": "_heredoc_line" }, { "type": "STRING", @@ -1584,7 +1579,7 @@ "members": [ { "type": "SYMBOL", - "name": "shell_fragment" + "name": "_shell_fragment" }, { "type": "REPEAT", @@ -1602,14 +1597,14 @@ }, { "type": "SYMBOL", - "name": "shell_fragment" + "name": "_shell_fragment" } ] } } ] }, - "shell_fragment": { + "_shell_fragment": { "type": "REPEAT1", "content": { "type": "CHOICE", @@ -1923,7 +1918,7 @@ }, { "type": "SYMBOL", - "name": "heredoc_line" + "name": "_heredoc_line" }, { "type": "SYMBOL", @@ -1931,7 +1926,7 @@ }, { "type": "SYMBOL", - "name": "heredoc_nl" + "name": "_heredoc_nl" }, { "type": "SYMBOL", diff --git a/src/node-types.json b/src/node-types.json index 7e326b8..0983a16 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 } ] @@ -1047,10 +1028,6 @@ "type": "]", "named": false }, - { - "type": "_heredoc_nl", - "named": false - }, { "type": "comment", "named": true @@ -1063,10 +1040,6 @@ "type": "heredoc_end", "named": true }, - { - "type": "heredoc_line", - "named": true - }, { "type": "heredoc_marker", "named": true diff --git a/src/parser.c b/src/parser.c index a997495..1fb8d6e 100644 --- a/src/parser.c +++ b/src/parser.c @@ -5,9 +5,9 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 325 +#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 @@ -75,10 +75,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 +98,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 +148,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 +173,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 +241,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 +264,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 +314,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 +339,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 +407,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 +430,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 +480,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 +505,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 +753,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 +845,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 +1045,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 +1145,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, @@ -1302,217 +1295,217 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [22] = 22, [23] = 23, [24] = 24, - [25] = 25, + [25] = 18, [26] = 26, [27] = 27, [28] = 28, [29] = 29, - [30] = 29, + [30] = 30, [31] = 31, [32] = 32, - [33] = 18, + [33] = 33, [34] = 34, - [35] = 26, + [35] = 35, [36] = 36, [37] = 37, - [38] = 17, - [39] = 39, + [38] = 38, + [39] = 24, [40] = 40, - [41] = 41, + [41] = 34, [42] = 42, [43] = 43, - [44] = 44, - [45] = 29, - [46] = 46, - [47] = 47, + [44] = 19, + [45] = 45, + [46] = 37, + [47] = 20, [48] = 48, - [49] = 39, - [50] = 50, - [51] = 24, - [52] = 39, + [49] = 17, + [50] = 37, + [51] = 51, + [52] = 52, [53] = 53, - [54] = 54, + [54] = 34, [55] = 55, [56] = 56, [57] = 57, [58] = 58, [59] = 59, [60] = 60, - [61] = 61, + [61] = 45, [62] = 62, [63] = 63, [64] = 64, [65] = 65, [66] = 66, - [67] = 53, + [67] = 67, [68] = 68, - [69] = 40, - [70] = 32, + [69] = 69, + [70] = 70, [71] = 71, [72] = 72, [73] = 73, - [74] = 74, - [75] = 75, + [74] = 52, + [75] = 69, [76] = 76, [77] = 77, [78] = 78, - [79] = 65, - [80] = 55, + [79] = 52, + [80] = 53, [81] = 81, - [82] = 72, - [83] = 83, + [82] = 82, + [83] = 76, [84] = 84, [85] = 85, - [86] = 36, - [87] = 61, + [86] = 60, + [87] = 87, [88] = 88, - [89] = 44, + [89] = 52, [90] = 90, - [91] = 40, + [91] = 64, [92] = 92, - [93] = 40, - [94] = 94, + [93] = 93, + [94] = 72, [95] = 95, - [96] = 72, - [97] = 95, - [98] = 98, + [96] = 36, + [97] = 97, + [98] = 60, [99] = 99, - [100] = 65, - [101] = 95, - [102] = 102, - [103] = 99, - [104] = 72, - [105] = 77, - [106] = 106, - [107] = 74, + [100] = 100, + [101] = 101, + [102] = 64, + [103] = 97, + [104] = 101, + [105] = 105, + [106] = 97, + [107] = 107, [108] = 108, - [109] = 65, + [109] = 109, [110] = 110, - [111] = 111, + [111] = 60, [112] = 112, [113] = 113, [114] = 114, [115] = 115, [116] = 116, - [117] = 72, - [118] = 118, - [119] = 119, - [120] = 99, - [121] = 65, - [122] = 65, + [117] = 117, + [118] = 64, + [119] = 73, + [120] = 60, + [121] = 121, + [122] = 64, [123] = 123, - [124] = 124, - [125] = 72, - [126] = 126, - [127] = 72, - [128] = 128, - [129] = 129, - [130] = 72, + [124] = 60, + [125] = 125, + [126] = 101, + [127] = 85, + [128] = 64, + [129] = 64, + [130] = 60, [131] = 131, - [132] = 132, - [133] = 65, + [132] = 60, + [133] = 64, [134] = 134, - [135] = 135, - [136] = 72, - [137] = 65, + [135] = 85, + [136] = 60, + [137] = 64, [138] = 138, [139] = 139, [140] = 140, - [141] = 77, - [142] = 142, + [141] = 141, + [142] = 85, [143] = 143, [144] = 144, [145] = 145, [146] = 146, [147] = 147, [148] = 148, - [149] = 65, - [150] = 77, + [149] = 149, + [150] = 150, [151] = 151, [152] = 152, [153] = 153, [154] = 154, [155] = 155, - [156] = 56, + [156] = 156, [157] = 157, - [158] = 158, + [158] = 70, [159] = 159, [160] = 160, [161] = 161, - [162] = 65, - [163] = 72, - [164] = 164, - [165] = 164, - [166] = 164, - [167] = 164, + [162] = 162, + [163] = 85, + [164] = 60, + [165] = 165, + [166] = 165, + [167] = 165, [168] = 168, - [169] = 169, - [170] = 164, - [171] = 169, - [172] = 164, - [173] = 173, - [174] = 169, - [175] = 164, - [176] = 169, - [177] = 164, - [178] = 178, - [179] = 169, - [180] = 164, - [181] = 181, - [182] = 169, + [169] = 165, + [170] = 170, + [171] = 165, + [172] = 170, + [173] = 165, + [174] = 174, + [175] = 170, + [176] = 165, + [177] = 177, + [178] = 170, + [179] = 165, + [180] = 180, + [181] = 170, + [182] = 165, [183] = 183, - [184] = 164, - [185] = 169, - [186] = 186, - [187] = 164, - [188] = 186, - [189] = 169, - [190] = 190, + [184] = 170, + [185] = 165, + [186] = 170, + [187] = 165, + [188] = 188, + [189] = 188, + [190] = 170, [191] = 191, - [192] = 169, - [193] = 129, - [194] = 65, - [195] = 195, - [196] = 191, - [197] = 72, - [198] = 77, - [199] = 164, - [200] = 77, + [192] = 192, + [193] = 193, + [194] = 170, + [195] = 64, + [196] = 85, + [197] = 165, + [198] = 192, + [199] = 60, + [200] = 85, [201] = 201, - [202] = 202, - [203] = 152, - [204] = 204, - [205] = 77, - [206] = 206, - [207] = 72, - [208] = 65, - [209] = 209, - [210] = 190, - [211] = 77, - [212] = 72, - [213] = 144, - [214] = 65, - [215] = 77, - [216] = 164, - [217] = 72, - [218] = 218, + [202] = 152, + [203] = 203, + [204] = 64, + [205] = 205, + [206] = 60, + [207] = 64, + [208] = 208, + [209] = 85, + [210] = 191, + [211] = 143, + [212] = 60, + [213] = 64, + [214] = 85, + [215] = 165, + [216] = 60, + [217] = 217, + [218] = 73, [219] = 219, [220] = 220, - [221] = 221, - [222] = 74, - [223] = 138, - [224] = 147, - [225] = 225, - [226] = 159, - [227] = 160, + [221] = 156, + [222] = 161, + [223] = 223, + [224] = 150, + [225] = 149, + [226] = 226, + [227] = 227, [228] = 228, - [229] = 173, + [229] = 229, [230] = 230, [231] = 231, [232] = 232, - [233] = 233, + [233] = 73, [234] = 234, - [235] = 74, + [235] = 235, [236] = 236, [237] = 237, [238] = 238, @@ -1527,69 +1520,69 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [247] = 247, [248] = 248, [249] = 249, - [250] = 225, - [251] = 251, - [252] = 252, + [250] = 250, + [251] = 193, + [252] = 227, [253] = 253, - [254] = 195, - [255] = 248, + [254] = 254, + [255] = 255, [256] = 256, [257] = 257, [258] = 258, - [259] = 259, - [260] = 260, - [261] = 260, + [259] = 258, + [260] = 230, + [261] = 261, [262] = 262, [263] = 263, [264] = 264, [265] = 265, - [266] = 147, - [267] = 267, - [268] = 252, - [269] = 138, - [270] = 240, + [266] = 249, + [267] = 256, + [268] = 161, + [269] = 156, + [270] = 270, [271] = 271, [272] = 272, [273] = 273, - [274] = 274, - [275] = 275, - [276] = 276, - [277] = 252, - [278] = 248, - [279] = 279, - [280] = 280, - [281] = 252, - [282] = 248, - [283] = 283, + [274] = 238, + [275] = 249, + [276] = 256, + [277] = 277, + [278] = 278, + [279] = 249, + [280] = 256, + [281] = 281, + [282] = 282, + [283] = 249, [284] = 284, - [285] = 252, - [286] = 286, + [285] = 285, + [286] = 249, [287] = 287, - [288] = 252, - [289] = 159, + [288] = 288, + [289] = 249, [290] = 290, - [291] = 252, - [292] = 292, + [291] = 291, + [292] = 249, [293] = 293, - [294] = 252, - [295] = 160, - [296] = 296, - [297] = 252, + [294] = 294, + [295] = 249, + [296] = 150, + [297] = 249, [298] = 298, - [299] = 252, + [299] = 249, [300] = 300, - [301] = 252, - [302] = 231, - [303] = 252, - [304] = 304, - [305] = 252, - [306] = 252, + [301] = 249, + [302] = 149, + [303] = 249, + [304] = 249, + [305] = 298, + [306] = 261, [307] = 298, - [308] = 262, + [308] = 261, [309] = 298, - [310] = 262, + [310] = 261, [311] = 298, - [312] = 262, + [312] = 298, [313] = 298, [314] = 298, [315] = 298, @@ -1598,10 +1591,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [318] = 298, [319] = 298, [320] = 298, - [321] = 298, - [322] = 298, - [323] = 264, - [324] = 264, + [321] = 262, + [322] = 262, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1609,838 +1600,826 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(168); + if (eof) ADVANCE(167); ADVANCE_MAP( - '"', 271, - '#', 206, - '$', 214, - '\'', 282, - ',', 253, - '-', 261, - ':', 182, - '<', 229, - '=', 191, - '@', 240, - '[', 268, - '\\', 279, - ']', 270, - '_', 221, - '{', 215, - '}', 220, + '"', 270, + '#', 205, + '$', 213, + '\'', 281, + ',', 252, + '-', 260, + ':', 181, + '<', 228, + '=', 190, + '@', 239, + '[', 267, + '\\', 278, + ']', 269, + '_', 220, + '{', 214, + '}', 219, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + lookahead == ' ') SKIP(164); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); - if (lookahead != 0) ADVANCE(204); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 1: if (lookahead == '\t') ADVANCE(3); - if (lookahead == '\n') ADVANCE(266); - if (lookahead == ' ') ADVANCE(290); + if (lookahead == '\n') ADVANCE(265); + if (lookahead == ' ') ADVANCE(289); END_STATE(); case 2: ADVANCE_MAP( - '\n', 266, - 'u', 162, + '\n', 265, + 'u', 161, '\t', 3, ' ', 3, - '"', 275, - '/', 275, - '\\', 275, - 'b', 275, - 'f', 275, - 'n', 275, - 'r', 275, - 't', 275, + '"', 274, + '/', 274, + '\\', 274, + 'b', 274, + 'f', 274, + 'n', 274, + 'r', 274, + 't', 274, ); END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(265); + lookahead == ' ') ADVANCE(264); if (lookahead != 0 && lookahead != ',' && lookahead != '-' && - lookahead != '=') ADVANCE(264); + lookahead != '=') ADVANCE(263); END_STATE(); case 5: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == ':') ADVANCE(182); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(7); - if (lookahead == '-' || - lookahead == '.' || - ('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || + lookahead == ' ') SKIP(5); + if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); case 6: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(6); - if (('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); - END_STATE(); - case 7: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == '\\') ADVANCE(3); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(7); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 8: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(286); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\'') ADVANCE(282); + case 7: + if (lookahead == '\n') ADVANCE(168); + 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(5); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); - if (lookahead != 0) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(286); + if (lookahead != 0) ADVANCE(288); END_STATE(); - case 9: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(286); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\'') ADVANCE(282); + case 8: + if (lookahead == '\n') ADVANCE(168); + 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(7); + lookahead == ' ') SKIP(6); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(288); - if (lookahead != 0) ADVANCE(289); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + if (lookahead != 0) ADVANCE(288); END_STATE(); - case 10: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); - if (lookahead == ':') ADVANCE(182); + case 9: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(213); + if (lookahead == ':') ADVANCE(181); + if (lookahead == '=') ADVANCE(190); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + lookahead == ' ') SKIP(18); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); END_STATE(); - case 11: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); + case 10: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\\') ADVANCE(3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(241); + lookahead == 'a') ADVANCE(240); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); + lookahead == ' ') SKIP(17); if (('0' <= lookahead && lookahead <= ':') || ('B' <= lookahead && lookahead <= 'Z') || - ('b' <= lookahead && lookahead <= 'z')) ADVANCE(242); + ('b' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); - case 12: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); + case 11: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); + lookahead == ' ') SKIP(18); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(195); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); END_STATE(); - case 13: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); + case 12: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); + lookahead == ' ') SKIP(18); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); END_STATE(); - case 14: + case 13: ADVANCE_MAP( - '\n', 169, - '#', 294, - '$', 213, - '/', 68, - ':', 182, - '@', 240, + '\n', 168, + '#', 293, + '$', 212, + '/', 67, + ':', 181, + '@', 239, '\\', 3, - 'A', 143, - 'a', 143, + 'A', 142, + 'a', 142, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == ' ') SKIP(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 15: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '/') ADVANCE(68); + case 14: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '/') ADVANCE(67); if (lookahead == '\\') ADVANCE(3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(143); + lookahead == 'a') ADVANCE(142); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(15); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == ' ') SKIP(14); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 16: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '<') ADVANCE(262); - if (lookahead == '\\') ADVANCE(25); + case 15: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '<') ADVANCE(261); + if (lookahead == '\\') ADVANCE(24); if (lookahead == ',' || lookahead == '-' || - lookahead == '=') ADVANCE(260); + lookahead == '=') ADVANCE(259); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(16); + lookahead == ' ') SKIP(15); if (lookahead != 0 && lookahead != '[' && - lookahead != '\\') ADVANCE(263); + lookahead != '\\') ADVANCE(262); END_STATE(); - case 17: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); + case 16: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(293); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(19); + lookahead == ' ') ADVANCE(292); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(18); END_STATE(); - case 18: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); + case 17: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(143); + lookahead == 'a') ADVANCE(142); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); + lookahead == ' ') SKIP(17); END_STATE(); - case 19: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); + case 18: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); + lookahead == ' ') SKIP(18); END_STATE(); - case 20: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(294); + case 19: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(20); + lookahead == ' ') SKIP(19); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 21: + case 20: ADVANCE_MAP( - '\n', 169, - '#', 234, - '$', 214, - ':', 182, - '@', 240, - '\\', 232, - 'A', 233, - 'a', 233, + '\n', 168, + '#', 233, + '$', 213, + ':', 181, + '@', 239, + '\\', 231, + 'A', 232, + 'a', 232, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); - if (lookahead != 0) ADVANCE(235); + lookahead == ' ') SKIP(17); + if (lookahead != 0) ADVANCE(234); END_STATE(); - case 22: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '@') ADVANCE(240); - if (lookahead == '\\') ADVANCE(236); + case 21: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(237); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '@') ADVANCE(239); + if (lookahead == '\\') ADVANCE(235); if (lookahead == 'A' || - lookahead == 'a') ADVANCE(237); + lookahead == 'a') ADVANCE(236); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(18); - if (lookahead != 0) ADVANCE(239); + lookahead == ' ') SKIP(17); + if (lookahead != 0) ADVANCE(238); END_STATE(); - case 23: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(210); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(209); + case 22: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(209); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '\\') ADVANCE(208); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(293); - if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(19); - if (lookahead != 0) ADVANCE(211); + lookahead == ' ') ADVANCE(292); + if ((0x0b <= lookahead && lookahead <= '\r')) SKIP(18); + if (lookahead != 0) ADVANCE(210); END_STATE(); - case 24: - if (lookahead == '\n') ADVANCE(169); - if (lookahead == '#') ADVANCE(210); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(209); + case 23: + if (lookahead == '\n') ADVANCE(168); + if (lookahead == '#') ADVANCE(209); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '\\') ADVANCE(208); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(19); - if (lookahead != 0) ADVANCE(211); + lookahead == ' ') SKIP(18); + if (lookahead != 0) ADVANCE(210); END_STATE(); - case 25: - if (lookahead == '\n') ADVANCE(267); + case 24: + if (lookahead == '\n') ADVANCE(266); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(265); + lookahead == ' ') ADVANCE(264); if (lookahead != 0 && lookahead != ',' && lookahead != '-' && - lookahead != '=') ADVANCE(264); + lookahead != '=') ADVANCE(263); + END_STATE(); + case 25: + if (lookahead == '\n') SKIP(29); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(276); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '\\') ADVANCE(279); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') ADVANCE(275); + if (lookahead != 0) ADVANCE(277); END_STATE(); case 26: - if (lookahead == '\n') SKIP(30); - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(277); - if (lookahead == '$') ADVANCE(214); + if (lookahead == '\n') SKIP(41); + if (lookahead == '#') ADVANCE(283); + if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(280); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(276); - if (lookahead != 0) ADVANCE(278); + lookahead == ' ') ADVANCE(282); + if (lookahead != 0) ADVANCE(284); END_STATE(); case 27: - if (lookahead == '\n') SKIP(42); - if (lookahead == '#') ADVANCE(284); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == '\\') ADVANCE(281); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\'') ADVANCE(281); + if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(283); - if (lookahead != 0) ADVANCE(285); + lookahead == ' ') SKIP(27); END_STATE(); case 28: - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\'') ADVANCE(281); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(28); - END_STATE(); - case 29: - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == '\\') ADVANCE(3); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(29); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); + END_STATE(); + case 29: + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\\') ADVANCE(278); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(29); END_STATE(); case 30: - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\\') ADVANCE(279); + 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(30); + lookahead == ' ') SKIP(27); + if (lookahead != 0) ADVANCE(288); END_STATE(); case 31: - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(286); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == '\\') ADVANCE(1); + if (lookahead == '"') ADVANCE(270); + if (lookahead == '#') ADVANCE(271); + if (lookahead == '\\') ADVANCE(2); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(28); - if (lookahead != 0) ADVANCE(289); + lookahead == ' ') ADVANCE(272); + if (lookahead != 0) ADVANCE(273); END_STATE(); case 32: - if (lookahead == '"') ADVANCE(271); - if (lookahead == '#') ADVANCE(272); - if (lookahead == '\\') ADVANCE(2); + if (lookahead == '#') ADVANCE(205); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '<') ADVANCE(162); + if (lookahead == '\\') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(273); - if (lookahead != 0) ADVANCE(274); + lookahead == ' ') SKIP(32); + if (lookahead != 0) ADVANCE(203); END_STATE(); case 33: - if (lookahead == '#') ADVANCE(206); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '-') ADVANCE(59); + if (lookahead == '#') ADVANCE(205); + if (lookahead == '$') ADVANCE(212); if (lookahead == '<') ADVANCE(163); - if (lookahead == '\\') ADVANCE(205); + if (lookahead == '[') ADVANCE(267); + if (lookahead == '\\') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(33); - if (lookahead != 0) ADVANCE(204); + if (lookahead != 0 && + lookahead != '-') ADVANCE(203); END_STATE(); case 34: - if (lookahead == '#') ADVANCE(206); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '<') ADVANCE(164); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '\\') ADVANCE(205); + if (lookahead == '#') ADVANCE(205); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '<') ADVANCE(163); + if (lookahead == '\\') ADVANCE(204); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(34); if (lookahead != 0 && - lookahead != '-') ADVANCE(204); + lookahead != '-') ADVANCE(203); END_STATE(); case 35: - if (lookahead == '#') ADVANCE(206); + if (lookahead == '#') ADVANCE(293); if (lookahead == '$') ADVANCE(213); - if (lookahead == '<') ADVANCE(164); - if (lookahead == '\\') ADVANCE(205); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35); - if (lookahead != 0 && - lookahead != '-') ADVANCE(204); - END_STATE(); - case 36: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + lookahead == ' ') SKIP(48); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(187); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); END_STATE(); - case 37: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(214); + case 36: + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(213); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(242); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); - case 38: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(213); + case 37: + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(212); if (lookahead == '\\') ADVANCE(3); - if (lookahead == 'm') ADVANCE(245); + if (lookahead == 'm') ADVANCE(244); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(40); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + lookahead == ' ') SKIP(39); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); END_STATE(); - case 39: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(213); + case 38: + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(212); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(39); + lookahead == ' ') SKIP(38); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); + END_STATE(); + case 39: + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '\\') ADVANCE(3); + if (('\t' <= lookahead && lookahead <= '\r') || + lookahead == ' ') SKIP(39); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(193); END_STATE(); case 40: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(213); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '$') ADVANCE(212); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(40); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); + if (('A' <= lookahead && lookahead <= 'Z') || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(183); END_STATE(); case 41: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '\\') ADVANCE(3); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '\'') ADVANCE(281); + if (lookahead == '\\') ADVANCE(278); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(41); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(183); - if (('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); case 42: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '\'') ADVANCE(282); - if (lookahead == '\\') ADVANCE(279); + if (lookahead == '#') ADVANCE(293); + 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 (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(42); + lookahead == ' ') SKIP(43); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 43: - if (lookahead == '#') ADVANCE(294); - if (lookahead == ',') ADVANCE(253); - if (lookahead == '-') ADVANCE(261); - if (lookahead == '<') ADVANCE(262); - if (lookahead == '=') ADVANCE(260); - if (lookahead == '[') ADVANCE(268); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '-') ADVANCE(260); + if (lookahead == '<') ADVANCE(261); + if (lookahead == '[') ADVANCE(267); if (lookahead == '\\') ADVANCE(4); + if (lookahead == ',' || + lookahead == '=') ADVANCE(259); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(44); - if (lookahead != 0) ADVANCE(263); + lookahead == ' ') SKIP(43); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 44: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '-') ADVANCE(261); - if (lookahead == '<') ADVANCE(262); - if (lookahead == '[') ADVANCE(268); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '<') ADVANCE(261); + if (lookahead == '[') ADVANCE(267); if (lookahead == '\\') ADVANCE(4); if (lookahead == ',' || - lookahead == '=') ADVANCE(260); + lookahead == '-' || + lookahead == '=') ADVANCE(259); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(44); - if (lookahead != 0) ADVANCE(263); + if (lookahead != 0) ADVANCE(262); END_STATE(); case 45: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '<') ADVANCE(262); - if (lookahead == '[') ADVANCE(268); - if (lookahead == '\\') ADVANCE(4); - if (lookahead == ',' || - lookahead == '-' || - lookahead == '=') ADVANCE(260); - if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(45); - if (lookahead != 0) ADVANCE(263); - END_STATE(); - case 46: - if (lookahead == '#') ADVANCE(294); - if (lookahead == '=') ADVANCE(191); + if (lookahead == '#') ADVANCE(293); + if (lookahead == '=') ADVANCE(190); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(222); + lookahead == ' ') ADVANCE(221); END_STATE(); - case 47: - if (lookahead == '#') ADVANCE(294); + case 46: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); - if (lookahead == '{') ADVANCE(215); + if (lookahead == '{') ADVANCE(214); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); END_STATE(); - case 48: - if (lookahead == '#') ADVANCE(294); + case 47: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(293); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(49); + lookahead == ' ') ADVANCE(292); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(48); END_STATE(); - case 49: - if (lookahead == '#') ADVANCE(294); + case 48: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); END_STATE(); - case 50: - if (lookahead == '#') ADVANCE(294); + case 49: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + lookahead == ' ') SKIP(48); + if (('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); - case 51: - if (lookahead == '#') ADVANCE(294); + case 50: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(51); + lookahead == ' ') SKIP(50); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); END_STATE(); - case 52: - if (lookahead == '#') ADVANCE(294); + case 51: + if (lookahead == '#') ADVANCE(293); if (lookahead == '\\') ADVANCE(3); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(52); + lookahead == ' ') SKIP(51); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 53: - if (lookahead == '#') ADVANCE(238); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(236); + case 52: + if (lookahead == '#') ADVANCE(237); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '\\') ADVANCE(235); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); if (lookahead != 0 && - lookahead != '@') ADVANCE(239); + lookahead != '@') ADVANCE(238); END_STATE(); - case 54: - if (lookahead == '#') ADVANCE(210); - if (lookahead == '$') ADVANCE(214); - if (lookahead == '\\') ADVANCE(209); + case 53: + if (lookahead == '#') ADVANCE(209); + if (lookahead == '$') ADVANCE(213); + if (lookahead == '\\') ADVANCE(208); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(293); - if (('\n' <= lookahead && lookahead <= '\r')) SKIP(49); - if (lookahead != 0) ADVANCE(211); + lookahead == ' ') ADVANCE(292); + if (('\n' <= lookahead && lookahead <= '\r')) SKIP(48); + if (lookahead != 0) ADVANCE(210); END_STATE(); - case 55: - if (lookahead == '#') ADVANCE(231); - if (lookahead == '$') ADVANCE(213); - if (lookahead == '-') ADVANCE(59); - if (lookahead == '\\') ADVANCE(230); + case 54: + if (lookahead == '#') ADVANCE(230); + if (lookahead == '$') ADVANCE(212); + if (lookahead == '-') ADVANCE(58); + if (lookahead == '\\') ADVANCE(229); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(55); + lookahead == ' ') SKIP(54); if (lookahead != 0 && lookahead != ':' && - lookahead != '@') ADVANCE(229); + lookahead != '@') ADVANCE(228); END_STATE(); - case 56: - if (lookahead == '#') ADVANCE(255); - if (lookahead == '\\') ADVANCE(254); + case 55: + if (lookahead == '#') ADVANCE(254); + if (lookahead == '\\') ADVANCE(253); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); + lookahead == ' ') SKIP(48); if (lookahead != 0 && lookahead != ',' && - lookahead != '=') ADVANCE(256); + lookahead != '=') ADVANCE(255); END_STATE(); - case 57: - if (lookahead == '#') ADVANCE(250); - if (lookahead == '\\') ADVANCE(249); + case 56: + if (lookahead == '#') ADVANCE(249); + if (lookahead == '\\') ADVANCE(248); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(49); - if (lookahead != 0) ADVANCE(251); + lookahead == ' ') SKIP(48); + if (lookahead != 0) ADVANCE(250); END_STATE(); - case 58: - if (lookahead == '#') ADVANCE(216); - if (lookahead == '\\') ADVANCE(217); + case 57: + if (lookahead == '#') ADVANCE(215); + if (lookahead == '\\') ADVANCE(216); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(218); + lookahead == ' ') ADVANCE(217); if (lookahead != 0 && - lookahead != '}') ADVANCE(219); + lookahead != '}') ADVANCE(218); + END_STATE(); + case 58: + if (lookahead == '-') ADVANCE(242); END_STATE(); case 59: - if (lookahead == '-') ADVANCE(243); + if (lookahead == 'E') ADVANCE(196); END_STATE(); case 60: - if (lookahead == 'E') ADVANCE(197); + if (lookahead == 'N') ADVANCE(59); END_STATE(); case 61: - if (lookahead == 'N') ADVANCE(60); + if (lookahead == 'O') ADVANCE(60); END_STATE(); case 62: - if (lookahead == 'O') ADVANCE(61); + if (lookahead == '_') ADVANCE(75); END_STATE(); case 63: - if (lookahead == '_') ADVANCE(76); + if (lookahead == 'c') ADVANCE(65); END_STATE(); case 64: - if (lookahead == 'c') ADVANCE(66); + if (lookahead == 'd') ADVANCE(66); END_STATE(); case 65: - if (lookahead == 'd') ADVANCE(67); + if (lookahead == 'p') ADVANCE(225); END_STATE(); case 66: if (lookahead == 'p') ADVANCE(226); END_STATE(); case 67: - if (lookahead == 'p') ADVANCE(227); + if (lookahead == 't') ADVANCE(63); + if (lookahead == 'u') ADVANCE(64); END_STATE(); case 68: - if (lookahead == 't') ADVANCE(64); - if (lookahead == 'u') ADVANCE(65); + if (lookahead == 'A' || + lookahead == 'a') ADVANCE(74); END_STATE(); case 69: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(75); + lookahead == 'a') ADVANCE(98); END_STATE(); case 70: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(99); + lookahead == 'a') ADVANCE(106); END_STATE(); case 71: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(107); + lookahead == 'a') ADVANCE(109); END_STATE(); case 72: if (lookahead == 'A' || - lookahead == 'a') ADVANCE(110); + lookahead == 'a') ADVANCE(99); END_STATE(); case 73: - if (lookahead == 'A' || - lookahead == 'a') ADVANCE(100); + if (lookahead == 'B' || + lookahead == 'b') ADVANCE(152); END_STATE(); case 74: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(153); + lookahead == 'b') ADVANCE(90); END_STATE(); case 75: if (lookahead == 'B' || - lookahead == 'b') ADVANCE(91); + lookahead == 'b') ADVANCE(154); END_STATE(); case 76: - if (lookahead == 'B' || - lookahead == 'b') ADVANCE(155); + if (lookahead == 'C' || + lookahead == 'c') ADVANCE(104); END_STATE(); case 77: if (lookahead == 'C' || - lookahead == 'c') ADVANCE(105); + lookahead == 'c') ADVANCE(96); END_STATE(); case 78: - if (lookahead == 'C' || - lookahead == 'c') ADVANCE(97); + if (lookahead == 'D' || + lookahead == 'd') ADVANCE(79); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(92); END_STATE(); case 79: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(80); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(93); + lookahead == 'd') ADVANCE(176); END_STATE(); case 80: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(177); + lookahead == 'd') ADVANCE(172); END_STATE(); case 81: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(173); + lookahead == 'd') ADVANCE(191); END_STATE(); case 82: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(192); + lookahead == 'd') ADVANCE(202); END_STATE(); case 83: if (lookahead == 'D' || - lookahead == 'd') ADVANCE(203); + lookahead == 'd') ADVANCE(100); END_STATE(); case 84: - if (lookahead == 'D' || - lookahead == 'd') ADVANCE(101); + if (lookahead == 'E' || + lookahead == 'e') ADVANCE(174); END_STATE(); case 85: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(175); + lookahead == 'e') ADVANCE(179); END_STATE(); case 86: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(180); + lookahead == 'e') ADVANCE(76); END_STATE(); case 87: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(77); + lookahead == 'e') ADVANCE(70); END_STATE(); case 88: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(71); + lookahead == 'e') ADVANCE(113); END_STATE(); case 89: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(114); + lookahead == 'e') ADVANCE(136); END_STATE(); case 90: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(137); + lookahead == 'e') ADVANCE(107); END_STATE(); case 91: if (lookahead == 'E' || - lookahead == 'e') ADVANCE(108); + lookahead == 'e') ADVANCE(138); END_STATE(); case 92: - if (lookahead == 'E' || - lookahead == 'e') ADVANCE(139); + if (lookahead == 'G' || + lookahead == 'g') ADVANCE(188); END_STATE(); case 93: if (lookahead == 'G' || - lookahead == 'g') ADVANCE(189); + lookahead == 'g') ADVANCE(122); END_STATE(); case 94: - if (lookahead == 'G' || - lookahead == 'g') ADVANCE(123); + if (lookahead == 'H' || + lookahead == 'h') ADVANCE(77); END_STATE(); case 95: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(78); + lookahead == 'h') ADVANCE(88); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(128); END_STATE(); case 96: if (lookahead == 'H' || - lookahead == 'h') ADVANCE(89); - if (lookahead == 'T' || - lookahead == 't') ADVANCE(129); + lookahead == 'h') ADVANCE(86); END_STATE(); case 97: - if (lookahead == 'H' || - lookahead == 'h') ADVANCE(87); + if (lookahead == 'I' || + lookahead == 'i') ADVANCE(93); END_STATE(); case 98: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(94); + lookahead == 'i') ADVANCE(120); END_STATE(); case 99: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(121); + lookahead == 'i') ADVANCE(123); END_STATE(); case 100: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(124); + lookahead == 'i') ADVANCE(137); END_STATE(); case 101: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(138); + lookahead == 'i') ADVANCE(121); END_STATE(); case 102: if (lookahead == 'I' || - lookahead == 'i') ADVANCE(122); + lookahead == 'i') ADVANCE(111); END_STATE(); case 103: if (lookahead == 'I' || lookahead == 'i') ADVANCE(112); END_STATE(); case 104: - if (lookahead == 'I' || - lookahead == 'i') ADVANCE(113); + if (lookahead == 'K' || + lookahead == 'k') ADVANCE(195); END_STATE(); case 105: if (lookahead == 'K' || - lookahead == 'k') ADVANCE(196); + lookahead == 'k') ADVANCE(83); END_STATE(); case 106: - if (lookahead == 'K' || - lookahead == 'k') ADVANCE(84); + if (lookahead == 'L' || + lookahead == 'l') ADVANCE(147); END_STATE(); case 107: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(148); + lookahead == 'l') ADVANCE(173); END_STATE(); case 108: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(174); + lookahead == 'l') ADVANCE(197); END_STATE(); case 109: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(198); + lookahead == 'l') ADVANCE(192); END_STATE(); case 110: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(193); + lookahead == 'l') ADVANCE(153); END_STATE(); case 111: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(154); + lookahead == 'l') ADVANCE(81); END_STATE(); case 112: if (lookahead == 'L' || @@ -2448,199 +2427,200 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 113: if (lookahead == 'L' || - lookahead == 'l') ADVANCE(83); + lookahead == 'l') ADVANCE(108); END_STATE(); case 114: - if (lookahead == 'L' || - lookahead == 'l') ADVANCE(109); + if (lookahead == 'M' || + lookahead == 'm') ADVANCE(169); END_STATE(); case 115: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(170); + lookahead == 'm') ADVANCE(80); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(131); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(127); END_STATE(); case 116: if (lookahead == 'M' || - lookahead == 'm') ADVANCE(81); - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(132); - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(128); + lookahead == 'm') ADVANCE(85); END_STATE(); case 117: - if (lookahead == 'M' || - lookahead == 'm') ADVANCE(86); + if (lookahead == 'N' || + lookahead == 'n') ADVANCE(149); + if (lookahead == 'X' || + lookahead == 'x') ADVANCE(133); END_STATE(); case 118: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(150); - if (lookahead == 'X' || - lookahead == 'x') ADVANCE(134); + lookahead == 'n') ADVANCE(171); END_STATE(); case 119: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(172); + lookahead == 'n') ADVANCE(73); END_STATE(); case 120: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(74); + lookahead == 'n') ADVANCE(150); END_STATE(); case 121: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(151); + lookahead == 'n') ADVANCE(148); END_STATE(); case 122: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(149); + lookahead == 'n') ADVANCE(71); END_STATE(); case 123: if (lookahead == 'N' || - lookahead == 'n') ADVANCE(72); + lookahead == 'n') ADVANCE(91); END_STATE(); case 124: - if (lookahead == 'N' || - lookahead == 'n') ADVANCE(92); + if (lookahead == 'O' || + lookahead == 'o') ADVANCE(110); END_STATE(); case 125: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(111); + lookahead == 'o') ADVANCE(114); END_STATE(); case 126: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(115); + lookahead == 'o') ADVANCE(135); END_STATE(); case 127: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(136); + lookahead == 'o') ADVANCE(144); END_STATE(); case 128: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(145); + lookahead == 'o') ADVANCE(132); END_STATE(); case 129: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(133); + lookahead == 'o') ADVANCE(146); END_STATE(); case 130: if (lookahead == 'O' || - lookahead == 'o') ADVANCE(147); + lookahead == 'o') ADVANCE(101); END_STATE(); case 131: - if (lookahead == 'O' || - lookahead == 'o') ADVANCE(102); + if (lookahead == 'P' || + lookahead == 'p') ADVANCE(155); END_STATE(); case 132: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(156); + lookahead == 'p') ADVANCE(145); END_STATE(); case 133: if (lookahead == 'P' || - lookahead == 'p') ADVANCE(146); + lookahead == 'p') ADVANCE(129); END_STATE(); case 134: if (lookahead == 'P' || lookahead == 'p') ADVANCE(130); END_STATE(); case 135: - if (lookahead == 'P' || - lookahead == 'p') ADVANCE(131); + if (lookahead == 'R' || + lookahead == 'r') ADVANCE(105); END_STATE(); case 136: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(106); + lookahead == 'r') ADVANCE(180); END_STATE(); case 137: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(181); + lookahead == 'r') ADVANCE(187); END_STATE(); case 138: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(188); + lookahead == 'r') ADVANCE(198); END_STATE(); case 139: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(199); + lookahead == 'r') ADVANCE(156); END_STATE(); case 140: if (lookahead == 'R' || - lookahead == 'r') ADVANCE(157); + lookahead == 'r') ADVANCE(125); END_STATE(); case 141: - if (lookahead == 'R' || - lookahead == 'r') ADVANCE(126); + if (lookahead == 'S' || + lookahead == 's') ADVANCE(62); END_STATE(); case 142: if (lookahead == 'S' || - lookahead == 's') ADVANCE(63); + lookahead == 's') ADVANCE(170); END_STATE(); case 143: if (lookahead == 'S' || - lookahead == 's') ADVANCE(171); + lookahead == 's') ADVANCE(89); END_STATE(); case 144: if (lookahead == 'S' || - lookahead == 's') ADVANCE(90); + lookahead == 's') ADVANCE(141); END_STATE(); case 145: if (lookahead == 'S' || - lookahead == 's') ADVANCE(142); + lookahead == 's') ADVANCE(97); END_STATE(); case 146: if (lookahead == 'S' || - lookahead == 's') ADVANCE(98); + lookahead == 's') ADVANCE(84); END_STATE(); case 147: - if (lookahead == 'S' || - lookahead == 's') ADVANCE(85); + if (lookahead == 'T' || + lookahead == 't') ADVANCE(94); END_STATE(); case 148: if (lookahead == 'T' || - lookahead == 't') ADVANCE(95); + lookahead == 't') ADVANCE(178); END_STATE(); case 149: if (lookahead == 'T' || - lookahead == 't') ADVANCE(179); + lookahead == 't') ADVANCE(139); + if (lookahead == 'V' || + lookahead == 'v') ADVANCE(175); END_STATE(); case 150: if (lookahead == 'T' || - lookahead == 't') ADVANCE(140); - if (lookahead == 'V' || - lookahead == 'v') ADVANCE(176); + lookahead == 't') ADVANCE(72); END_STATE(); case 151: - if (lookahead == 'T' || - lookahead == 't') ADVANCE(73); + if (lookahead == 'U' || + lookahead == 'u') ADVANCE(118); END_STATE(); case 152: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(119); + lookahead == 'u') ADVANCE(102); END_STATE(); case 153: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(103); + lookahead == 'u') ADVANCE(116); END_STATE(); case 154: if (lookahead == 'U' || - lookahead == 'u') ADVANCE(117); + lookahead == 'u') ADVANCE(103); END_STATE(); case 155: - if (lookahead == 'U' || - lookahead == 'u') ADVANCE(104); + if (lookahead == 'Y' || + lookahead == 'y') ADVANCE(177); END_STATE(); case 156: if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(178); + lookahead == 'y') ADVANCE(134); END_STATE(); case 157: - if (lookahead == 'Y' || - lookahead == 'y') ADVANCE(135); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); END_STATE(); case 158: - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'F') || + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(274); END_STATE(); case 159: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(275); + ('a' <= lookahead && lookahead <= 'f')) ADVANCE(158); END_STATE(); case 160: if (('0' <= lookahead && lookahead <= '9') || @@ -2653,790 +2633,785 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ('a' <= lookahead && lookahead <= 'f')) ADVANCE(160); END_STATE(); case 162: - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'F') || - ('a' <= lookahead && lookahead <= 'f')) ADVANCE(161); - END_STATE(); - case 163: if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '$' && lookahead != '-' && - lookahead != '<') ADVANCE(212); + lookahead != '<') ADVANCE(211); END_STATE(); - case 164: + case 163: if (lookahead != 0 && - lookahead != '<') ADVANCE(207); + lookahead != '<') ADVANCE(206); END_STATE(); - case 165: - if (eof) ADVANCE(168); + case 164: + if (eof) ADVANCE(167); ADVANCE_MAP( - '"', 271, - '#', 206, - '$', 213, - '\'', 282, - ',', 269, - '-', 261, - '<', 229, - '=', 204, - '[', 268, - '\\', 279, - ']', 270, - ':', 204, - '@', 204, + '"', 270, + '#', 205, + '$', 212, + '\'', 281, + ',', 268, + '-', 260, + '<', 228, + '=', 203, + '[', 267, + '\\', 278, + ']', 269, + ':', 203, + '@', 203, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(165); - if (lookahead != 0) ADVANCE(204); + lookahead == ' ') SKIP(164); + if (lookahead != 0) ADVANCE(203); END_STATE(); - case 166: - if (eof) ADVANCE(168); + case 165: + if (eof) ADVANCE(167); ADVANCE_MAP( - '"', 271, - '#', 294, - '$', 213, - ',', 269, - '-', 59, - '=', 191, - 'N', 62, - '[', 268, + '"', 270, + '#', 293, + '$', 212, + ',', 268, + '-', 58, + '=', 190, + 'N', 61, + '[', 267, '\\', 3, - ']', 270, - '}', 220, - 'A', 79, - 'a', 79, - 'C', 116, - 'c', 116, - 'E', 118, - 'e', 118, - 'F', 141, - 'f', 141, - 'H', 88, - 'h', 88, - 'L', 69, - 'l', 69, - 'M', 70, - 'm', 70, - 'O', 120, - 'o', 120, - 'R', 152, - 'r', 152, - 'S', 96, - 's', 96, - 'U', 144, - 'u', 144, - 'V', 125, - 'v', 125, - 'W', 127, - 'w', 127, + ']', 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, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == ' ') SKIP(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 167: - if (eof) ADVANCE(168); + case 166: + if (eof) ADVANCE(167); ADVANCE_MAP( - '"', 271, - '#', 294, - '$', 213, - ',', 269, - '-', 59, - 'N', 62, - '[', 268, + '"', 270, + '#', 293, + '$', 212, + ',', 268, + '-', 58, + 'N', 61, + '[', 267, '\\', 3, - ']', 270, - 'A', 79, - 'a', 79, - 'C', 116, - 'c', 116, - 'E', 118, - 'e', 118, - 'F', 141, - 'f', 141, - 'H', 88, - 'h', 88, - 'L', 69, - 'l', 69, - 'M', 70, - 'm', 70, - 'O', 120, - 'o', 120, - 'R', 152, - 'r', 152, - 'S', 96, - 's', 96, - 'U', 144, - 'u', 144, - 'V', 125, - 'v', 125, - 'W', 127, - 'w', 127, + ']', 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, ); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(167); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); + lookahead == ' ') SKIP(166); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); - case 168: + case 167: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 169: + case 168: ACCEPT_TOKEN(anon_sym_LF); - if (lookahead == '\n') ADVANCE(169); + if (lookahead == '\n') ADVANCE(168); END_STATE(); - case 170: + case 169: ACCEPT_TOKEN(aux_sym_from_instruction_token1); END_STATE(); - case 171: + case 170: ACCEPT_TOKEN(aux_sym_from_instruction_token2); END_STATE(); - case 172: + case 171: ACCEPT_TOKEN(aux_sym_run_instruction_token1); END_STATE(); - case 173: + case 172: ACCEPT_TOKEN(aux_sym_cmd_instruction_token1); END_STATE(); - case 174: + case 173: ACCEPT_TOKEN(aux_sym_label_instruction_token1); END_STATE(); - case 175: + case 174: ACCEPT_TOKEN(aux_sym_expose_instruction_token1); END_STATE(); - case 176: + case 175: ACCEPT_TOKEN(aux_sym_env_instruction_token1); END_STATE(); - case 177: + case 176: ACCEPT_TOKEN(aux_sym_add_instruction_token1); END_STATE(); - case 178: + case 177: ACCEPT_TOKEN(aux_sym_copy_instruction_token1); END_STATE(); - case 179: + case 178: ACCEPT_TOKEN(aux_sym_entrypoint_instruction_token1); END_STATE(); - case 180: + case 179: ACCEPT_TOKEN(aux_sym_volume_instruction_token1); END_STATE(); - case 181: + case 180: ACCEPT_TOKEN(aux_sym_user_instruction_token1); END_STATE(); - case 182: + case 181: ACCEPT_TOKEN(anon_sym_COLON); END_STATE(); - case 183: + case 182: ACCEPT_TOKEN(aux_sym__user_name_or_group_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(183); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(182); END_STATE(); - case 184: + case 183: 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(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 (lookahead == '-') ADVANCE(187); + if (lookahead == '-') ADVANCE(186); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(185); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(184); END_STATE(); - case 186: + case 185: ACCEPT_TOKEN(aux_sym__immediate_user_name_or_group_fragment_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(186); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(185); END_STATE(); - case 187: + case 186: 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(187); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(186); END_STATE(); - case 188: + case 187: ACCEPT_TOKEN(aux_sym_workdir_instruction_token1); END_STATE(); - case 189: + case 188: ACCEPT_TOKEN(aux_sym_arg_instruction_token1); END_STATE(); - case 190: + case 189: ACCEPT_TOKEN(aux_sym_arg_instruction_token2); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(190); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(189); END_STATE(); - case 191: + case 190: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 192: + case 191: ACCEPT_TOKEN(aux_sym_onbuild_instruction_token1); END_STATE(); - case 193: + case 192: ACCEPT_TOKEN(aux_sym_stopsignal_instruction_token1); END_STATE(); - case 194: + case 193: ACCEPT_TOKEN(aux_sym__stopsignal_value_token1); 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__stopsignal_value_token2); if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(195); + ('A' <= lookahead && lookahead <= 'Z')) ADVANCE(194); END_STATE(); - case 196: + case 195: ACCEPT_TOKEN(aux_sym_healthcheck_instruction_token1); END_STATE(); - case 197: + case 196: ACCEPT_TOKEN(anon_sym_NONE); END_STATE(); - case 198: + case 197: ACCEPT_TOKEN(aux_sym_shell_instruction_token1); END_STATE(); - case 199: + case 198: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token1); END_STATE(); - case 200: + case 199: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(200); - if (lookahead != 0) ADVANCE(202); + lookahead == ' ') ADVANCE(199); + if (lookahead != 0) ADVANCE(201); END_STATE(); - case 201: + case 200: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); - if (lookahead == '#') ADVANCE(202); - if (lookahead == '\\') ADVANCE(200); + if (lookahead == '#') ADVANCE(201); + if (lookahead == '\\') ADVANCE(199); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(201); + lookahead == ' ') ADVANCE(200); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(202); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(201); END_STATE(); - case 202: + case 201: ACCEPT_TOKEN(aux_sym_maintainer_instruction_token2); if (lookahead != 0 && - lookahead != '\n') ADVANCE(202); + lookahead != '\n') ADVANCE(201); END_STATE(); - case 203: + case 202: ACCEPT_TOKEN(aux_sym_cross_build_instruction_token1); if (('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(203); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(202); END_STATE(); - case 204: + case 203: ACCEPT_TOKEN(aux_sym_path_token1); END_STATE(); - case 205: + case 204: ACCEPT_TOKEN(aux_sym_path_token1); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); - case 206: + case 205: ACCEPT_TOKEN(aux_sym_path_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(294); + lookahead != '\n') ADVANCE(293); END_STATE(); - case 207: + case 206: ACCEPT_TOKEN(aux_sym_path_token2); END_STATE(); - case 208: + case 207: ACCEPT_TOKEN(aux_sym_path_token2); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && - lookahead != '\\') ADVANCE(263); + lookahead != '\\') ADVANCE(262); END_STATE(); - case 209: + case 208: ACCEPT_TOKEN(aux_sym_path_token3); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != '$') ADVANCE(211); + lookahead != '$') ADVANCE(210); END_STATE(); - case 210: + case 209: ACCEPT_TOKEN(aux_sym_path_token3); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || - lookahead == '$') ADVANCE(294); + lookahead == '$') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(210); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(209); END_STATE(); - case 211: + case 210: ACCEPT_TOKEN(aux_sym_path_token3); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && - lookahead != '$') ADVANCE(211); + lookahead != '$') ADVANCE(210); END_STATE(); - case 212: + case 211: ACCEPT_TOKEN(aux_sym_path_with_heredoc_token1); END_STATE(); - case 213: + case 212: ACCEPT_TOKEN(anon_sym_DOLLAR); END_STATE(); - case 214: + case 213: ACCEPT_TOKEN(anon_sym_DOLLAR2); END_STATE(); - case 215: + case 214: ACCEPT_TOKEN(anon_sym_LBRACE); END_STATE(); - case 216: + case 215: ACCEPT_TOKEN(aux_sym__expansion_body_token1); - if (lookahead == '\n') ADVANCE(219); - if (lookahead == '}') ADVANCE(294); - if (lookahead != 0) ADVANCE(216); + if (lookahead == '\n') ADVANCE(218); + if (lookahead == '}') ADVANCE(293); + if (lookahead != 0) ADVANCE(215); END_STATE(); - case 217: + case 216: ACCEPT_TOKEN(aux_sym__expansion_body_token1); - if (lookahead == '\n') ADVANCE(219); + if (lookahead == '\n') ADVANCE(218); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(217); + lookahead == ' ') ADVANCE(216); if (lookahead != 0 && - lookahead != '}') ADVANCE(219); + lookahead != '}') ADVANCE(218); END_STATE(); - case 218: + case 217: ACCEPT_TOKEN(aux_sym__expansion_body_token1); - if (lookahead == '#') ADVANCE(216); - if (lookahead == '\\') ADVANCE(217); + if (lookahead == '#') ADVANCE(215); + if (lookahead == '\\') ADVANCE(216); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(218); + lookahead == ' ') ADVANCE(217); if (lookahead != 0 && - lookahead != '}') ADVANCE(219); + lookahead != '}') ADVANCE(218); END_STATE(); - case 219: + case 218: ACCEPT_TOKEN(aux_sym__expansion_body_token1); if (lookahead != 0 && - lookahead != '}') ADVANCE(219); + lookahead != '}') ADVANCE(218); END_STATE(); - case 220: + case 219: ACCEPT_TOKEN(anon_sym_RBRACE); END_STATE(); - case 221: + case 220: ACCEPT_TOKEN(sym_variable); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(221); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(220); END_STATE(); - case 222: + case 221: ACCEPT_TOKEN(aux_sym__spaced_env_pair_token1); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(222); + lookahead == ' ') ADVANCE(221); END_STATE(); - case 223: + case 222: ACCEPT_TOKEN(aux_sym__env_key_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(223); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(222); + END_STATE(); + case 223: + ACCEPT_TOKEN(aux_sym_expose_port_token1); + if (lookahead == '-') ADVANCE(157); + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(223); END_STATE(); case 224: ACCEPT_TOKEN(aux_sym_expose_port_token1); - if (lookahead == '-') ADVANCE(158); if (('0' <= lookahead && lookahead <= '9')) ADVANCE(224); END_STATE(); case 225: - ACCEPT_TOKEN(aux_sym_expose_port_token1); - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(225); - END_STATE(); - case 226: ACCEPT_TOKEN(anon_sym_SLASHtcp); END_STATE(); - case 227: + case 226: ACCEPT_TOKEN(anon_sym_SLASHudp); END_STATE(); - case 228: + case 227: ACCEPT_TOKEN(aux_sym_label_pair_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(228); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(227); END_STATE(); - case 229: + case 228: ACCEPT_TOKEN(aux_sym_image_name_token1); END_STATE(); - case 230: + case 229: ACCEPT_TOKEN(aux_sym_image_name_token1); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); - case 231: + case 230: ACCEPT_TOKEN(aux_sym_image_name_token1); if (lookahead != 0 && - lookahead != '\n') ADVANCE(294); + lookahead != '\n') ADVANCE(293); END_STATE(); - case 232: + case 231: ACCEPT_TOKEN(aux_sym_image_name_token2); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(235); + lookahead != '@') ADVANCE(234); END_STATE(); - case 233: + case 232: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead == 'S' || - lookahead == 's') ADVANCE(235); + lookahead == 's') ADVANCE(234); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(235); + lookahead != '@') ADVANCE(234); END_STATE(); - case 234: + case 233: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '$' || lookahead == ':' || - lookahead == '@') ADVANCE(294); + lookahead == '@') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(234); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(233); END_STATE(); - case 235: + case 234: ACCEPT_TOKEN(aux_sym_image_name_token2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '$' && lookahead != ':' && - lookahead != '@') ADVANCE(235); + lookahead != '@') ADVANCE(234); END_STATE(); - case 236: + case 235: ACCEPT_TOKEN(aux_sym_image_tag_token1); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '$' && - lookahead != '@') ADVANCE(239); + lookahead != '@') ADVANCE(238); END_STATE(); - case 237: + case 236: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(239); + lookahead == 's') ADVANCE(238); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '$' && - lookahead != '@') ADVANCE(239); + lookahead != '@') ADVANCE(238); END_STATE(); - case 238: + case 237: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == '$' || - lookahead == '@') ADVANCE(294); + lookahead == '@') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(238); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(237); END_STATE(); - case 239: + case 238: ACCEPT_TOKEN(aux_sym_image_tag_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '$' && - lookahead != '@') ADVANCE(239); + lookahead != '@') ADVANCE(238); END_STATE(); - case 240: + case 239: ACCEPT_TOKEN(anon_sym_AT); END_STATE(); - case 241: + case 240: ACCEPT_TOKEN(aux_sym_image_digest_token1); if (lookahead == 'S' || - lookahead == 's') ADVANCE(242); + lookahead == 's') ADVANCE(241); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(242); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); - case 242: + case 241: ACCEPT_TOKEN(aux_sym_image_digest_token1); if (('0' <= lookahead && lookahead <= ':') || ('A' <= lookahead && lookahead <= 'Z') || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(242); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(241); END_STATE(); - case 243: + case 242: ACCEPT_TOKEN(anon_sym_DASH_DASH); END_STATE(); + case 243: + ACCEPT_TOKEN(aux_sym_param_token1); + if (lookahead == 'n') ADVANCE(245); + if (lookahead == '-' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); + END_STATE(); case 244: ACCEPT_TOKEN(aux_sym_param_token1); - if (lookahead == 'n') ADVANCE(246); + if (lookahead == 'o') ADVANCE(246); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); case 245: ACCEPT_TOKEN(aux_sym_param_token1); - if (lookahead == 'o') ADVANCE(247); + if (lookahead == 't') ADVANCE(251); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); case 246: ACCEPT_TOKEN(aux_sym_param_token1); - if (lookahead == 't') ADVANCE(252); + if (lookahead == 'u') ADVANCE(243); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); case 247: ACCEPT_TOKEN(aux_sym_param_token1); - if (lookahead == 'u') ADVANCE(244); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); case 248: - ACCEPT_TOKEN(aux_sym_param_token1); - if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); - END_STATE(); - case 249: ACCEPT_TOKEN(aux_sym_param_token2); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(251); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(250); END_STATE(); - case 250: + case 249: ACCEPT_TOKEN(aux_sym_param_token2); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(294); + lookahead == ' ') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(250); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(249); END_STATE(); - case 251: + case 250: ACCEPT_TOKEN(aux_sym_param_token2); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && - lookahead != ' ') ADVANCE(251); + lookahead != ' ') ADVANCE(250); END_STATE(); - case 252: + case 251: ACCEPT_TOKEN(anon_sym_mount); if (lookahead == '-' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(248); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(247); END_STATE(); - case 253: + case 252: ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); - case 254: + case 253: ACCEPT_TOKEN(aux_sym_mount_param_param_token1); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ',' && - lookahead != '=') ADVANCE(256); + lookahead != '=') ADVANCE(255); END_STATE(); - case 255: + case 254: ACCEPT_TOKEN(aux_sym_mount_param_param_token1); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || lookahead == ' ' || lookahead == ',' || - lookahead == '=') ADVANCE(294); + lookahead == '=') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(255); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(254); END_STATE(); - case 256: + case 255: ACCEPT_TOKEN(aux_sym_mount_param_param_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != ',' && - lookahead != '=') ADVANCE(256); + lookahead != '=') ADVANCE(255); END_STATE(); - case 257: + case 256: ACCEPT_TOKEN(aux_sym_image_alias_token1); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(256); END_STATE(); - case 258: + case 257: ACCEPT_TOKEN(aux_sym_image_alias_token2); if (lookahead == '-' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(258); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(257); END_STATE(); - case 259: - ACCEPT_TOKEN(aux_sym_shell_fragment_token1); + case 258: + ACCEPT_TOKEN(aux_sym__shell_fragment_token1); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(259); + lookahead == ' ') ADVANCE(258); + END_STATE(); + case 259: + 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_token2); - if (lookahead == '-') ADVANCE(243); - END_STATE(); - case 262: - ACCEPT_TOKEN(aux_sym_shell_fragment_token3); + ACCEPT_TOKEN(aux_sym__shell_fragment_token3); if (lookahead == '\n' || - lookahead == '\\') ADVANCE(207); + lookahead == '\\') ADVANCE(206); if (lookahead != 0 && - lookahead != '<') ADVANCE(208); + lookahead != '<') ADVANCE(207); END_STATE(); - case 263: - ACCEPT_TOKEN(aux_sym_shell_fragment_token3); + case 262: + ACCEPT_TOKEN(aux_sym__shell_fragment_token3); if (lookahead != 0 && lookahead != '\n' && lookahead != '<' && - lookahead != '\\') ADVANCE(263); + lookahead != '\\') ADVANCE(262); END_STATE(); - case 264: - ACCEPT_TOKEN(aux_sym_shell_fragment_token4); + case 263: + ACCEPT_TOKEN(aux_sym__shell_fragment_token4); END_STATE(); - case 265: - ACCEPT_TOKEN(aux_sym_shell_fragment_token4); - if (lookahead == '\n') ADVANCE(266); + case 264: + ACCEPT_TOKEN(aux_sym__shell_fragment_token4); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); - case 266: + case 265: ACCEPT_TOKEN(sym_line_continuation); END_STATE(); - case 267: + case 266: ACCEPT_TOKEN(sym_required_line_continuation); END_STATE(); - case 268: + case 267: ACCEPT_TOKEN(anon_sym_LBRACK); END_STATE(); - case 269: + case 268: ACCEPT_TOKEN(anon_sym_COMMA2); END_STATE(); - case 270: + case 269: ACCEPT_TOKEN(anon_sym_RBRACK); END_STATE(); - case 271: + case 270: ACCEPT_TOKEN(anon_sym_DQUOTE); END_STATE(); - case 272: + case 271: ACCEPT_TOKEN(aux_sym_json_string_token1); - if (lookahead == '\n') ADVANCE(274); + if (lookahead == '\n') ADVANCE(273); if (lookahead == '"' || - lookahead == '\\') ADVANCE(294); - if (lookahead != 0) ADVANCE(272); + lookahead == '\\') ADVANCE(293); + if (lookahead != 0) ADVANCE(271); END_STATE(); - case 273: + case 272: ACCEPT_TOKEN(aux_sym_json_string_token1); - if (lookahead == '#') ADVANCE(272); + if (lookahead == '#') ADVANCE(271); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(273); + lookahead == ' ') ADVANCE(272); if (lookahead != 0 && lookahead != '"' && lookahead != '#' && - lookahead != '\\') ADVANCE(274); + lookahead != '\\') ADVANCE(273); END_STATE(); - case 274: + case 273: ACCEPT_TOKEN(aux_sym_json_string_token1); if (lookahead != 0 && lookahead != '"' && - lookahead != '\\') ADVANCE(274); + lookahead != '\\') ADVANCE(273); END_STATE(); - case 275: + case 274: ACCEPT_TOKEN(sym_json_escape_sequence); END_STATE(); - case 276: + case 275: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); - if (lookahead == '#') ADVANCE(277); + if (lookahead == '#') ADVANCE(276); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(276); + lookahead == ' ') ADVANCE(275); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && (lookahead < '"' || '$' < lookahead) && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(277); END_STATE(); - case 277: + case 276: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead == '"' || lookahead == '$' || - lookahead == '\\') ADVANCE(294); + lookahead == '\\') ADVANCE(293); if (lookahead != 0 && - lookahead != '\n') ADVANCE(277); + lookahead != '\n') ADVANCE(276); END_STATE(); - case 278: + case 277: ACCEPT_TOKEN(aux_sym_double_quoted_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '"' && lookahead != '$' && - lookahead != '\\') ADVANCE(278); + lookahead != '\\') ADVANCE(277); END_STATE(); - case 279: + case 278: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); - case 280: + case 279: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead == '"' || - lookahead == '\\') ADVANCE(291); + lookahead == '\\') ADVANCE(290); END_STATE(); - case 281: + case 280: ACCEPT_TOKEN(anon_sym_BSLASH); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(292); + lookahead == '\\') ADVANCE(291); END_STATE(); - case 282: + case 281: ACCEPT_TOKEN(anon_sym_SQUOTE); END_STATE(); - case 283: + case 282: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); - if (lookahead == '#') ADVANCE(284); + if (lookahead == '#') ADVANCE(283); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(283); + lookahead == ' ') ADVANCE(282); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != '\'' && - lookahead != '\\') ADVANCE(285); + lookahead != '\\') ADVANCE(284); END_STATE(); - case 284: + case 283: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead == '\'' || - lookahead == '\\') ADVANCE(294); + lookahead == '\\') ADVANCE(293); if (lookahead != 0 && - lookahead != '\n') ADVANCE(284); + lookahead != '\n') ADVANCE(283); END_STATE(); - case 285: + case 284: ACCEPT_TOKEN(aux_sym_single_quoted_string_token1); if (lookahead != 0 && lookahead != '\n' && lookahead != '\'' && - lookahead != '\\') ADVANCE(285); + lookahead != '\\') ADVANCE(284); END_STATE(); - case 286: + case 285: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead == '\t' || (0x0b <= lookahead && lookahead <= '\r') || @@ -3444,41 +3419,41 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead == '"' || lookahead == '$' || lookahead == '\'' || - lookahead == '\\') ADVANCE(294); + lookahead == '\\') ADVANCE(293); if (lookahead != 0 && - (lookahead < '\t' || '\r' < lookahead)) ADVANCE(286); + (lookahead < '\t' || '\r' < lookahead)) ADVANCE(285); END_STATE(); - case 287: + case 286: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(286); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(289); + lookahead != '\\') ADVANCE(288); END_STATE(); - case 288: + case 287: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead == '-' || lookahead == '.' || ('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(288); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(287); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && lookahead != ' ' && lookahead != '"' && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(289); + lookahead != '\\') ADVANCE(288); END_STATE(); - case 289: + case 288: ACCEPT_TOKEN(aux_sym_unquoted_string_token1); if (lookahead != 0 && (lookahead < '\t' || '\r' < lookahead) && @@ -3486,29 +3461,29 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { lookahead != '"' && lookahead != '$' && lookahead != '\'' && - lookahead != '\\') ADVANCE(289); + lookahead != '\\') ADVANCE(288); END_STATE(); - case 290: + case 289: ACCEPT_TOKEN(anon_sym_BSLASH2); - if (lookahead == '\n') ADVANCE(266); + if (lookahead == '\n') ADVANCE(265); if (lookahead == '\t' || lookahead == ' ') ADVANCE(3); END_STATE(); - case 291: + case 290: ACCEPT_TOKEN(sym_double_quoted_escape_sequence); END_STATE(); - case 292: + case 291: ACCEPT_TOKEN(sym_single_quoted_escape_sequence); END_STATE(); - case 293: + case 292: ACCEPT_TOKEN(sym__non_newline_whitespace); if (lookahead == '\t' || - lookahead == ' ') ADVANCE(293); + lookahead == ' ') ADVANCE(292); END_STATE(); - case 294: + case 293: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(294); + lookahead != '\n') ADVANCE(293); END_STATE(); default: return false; @@ -3517,330 +3492,328 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 166}, - [2] = {.lex_state = 166}, - [3] = {.lex_state = 166}, - [4] = {.lex_state = 166}, - [5] = {.lex_state = 166}, - [6] = {.lex_state = 44, .external_lex_state = 2}, - [7] = {.lex_state = 44, .external_lex_state = 2}, - [8] = {.lex_state = 8}, - [9] = {.lex_state = 31}, - [10] = {.lex_state = 31}, - [11] = {.lex_state = 31}, - [12] = {.lex_state = 44, .external_lex_state = 2}, - [13] = {.lex_state = 33, .external_lex_state = 2}, - [14] = {.lex_state = 33, .external_lex_state = 2}, - [15] = {.lex_state = 45, .external_lex_state = 2}, - [16] = {.lex_state = 45, .external_lex_state = 2}, - [17] = {.lex_state = 9}, - [18] = {.lex_state = 9}, - [19] = {.lex_state = 33, .external_lex_state = 2}, - [20] = {.lex_state = 33, .external_lex_state = 2}, - [21] = {.lex_state = 43, .external_lex_state = 2}, - [22] = {.lex_state = 21}, - [23] = {.lex_state = 43, .external_lex_state = 2}, - [24] = {.lex_state = 16, .external_lex_state = 3}, - [25] = {.lex_state = 21}, - [26] = {.lex_state = 16, .external_lex_state = 3}, - [27] = {.lex_state = 21}, - [28] = {.lex_state = 43, .external_lex_state = 2}, - [29] = {.lex_state = 26}, - [30] = {.lex_state = 26}, - [31] = {.lex_state = 43, .external_lex_state = 2}, - [32] = {.lex_state = 16, .external_lex_state = 3}, - [33] = {.lex_state = 8}, - [34] = {.lex_state = 22}, - [35] = {.lex_state = 16, .external_lex_state = 2}, - [36] = {.lex_state = 23, .external_lex_state = 4}, - [37] = {.lex_state = 22}, - [38] = {.lex_state = 8}, - [39] = {.lex_state = 26}, - [40] = {.lex_state = 23, .external_lex_state = 4}, - [41] = {.lex_state = 5}, - [42] = {.lex_state = 10}, - [43] = {.lex_state = 10}, - [44] = {.lex_state = 23, .external_lex_state = 4}, - [45] = {.lex_state = 26}, - [46] = {.lex_state = 5}, - [47] = {.lex_state = 26}, - [48] = {.lex_state = 10}, - [49] = {.lex_state = 26}, - [50] = {.lex_state = 43, .external_lex_state = 2}, - [51] = {.lex_state = 16, .external_lex_state = 2}, - [52] = {.lex_state = 26}, - [53] = {.lex_state = 45, .external_lex_state = 2}, - [54] = {.lex_state = 11}, - [55] = {.lex_state = 23}, - [56] = {.lex_state = 33, .external_lex_state = 2}, - [57] = {.lex_state = 10}, - [58] = {.lex_state = 33, .external_lex_state = 2}, - [59] = {.lex_state = 33, .external_lex_state = 2}, - [60] = {.lex_state = 33, .external_lex_state = 2}, - [61] = {.lex_state = 23}, - [62] = {.lex_state = 34}, - [63] = {.lex_state = 33, .external_lex_state = 2}, - [64] = {.lex_state = 33, .external_lex_state = 2}, - [65] = {.lex_state = 9}, - [66] = {.lex_state = 10}, - [67] = {.lex_state = 45, .external_lex_state = 2}, - [68] = {.lex_state = 55}, - [69] = {.lex_state = 23}, - [70] = {.lex_state = 16, .external_lex_state = 2}, - [71] = {.lex_state = 29}, - [72] = {.lex_state = 9}, - [73] = {.lex_state = 11}, - [74] = {.lex_state = 44, .external_lex_state = 2}, - [75] = {.lex_state = 36}, - [76] = {.lex_state = 166}, - [77] = {.lex_state = 21}, - [78] = {.lex_state = 13}, - [79] = {.lex_state = 21}, - [80] = {.lex_state = 24}, - [81] = {.lex_state = 13}, - [82] = {.lex_state = 21}, - [83] = {.lex_state = 12}, + [1] = {.lex_state = 165}, + [2] = {.lex_state = 165}, + [3] = {.lex_state = 165}, + [4] = {.lex_state = 165}, + [5] = {.lex_state = 165}, + [6] = {.lex_state = 43, .external_lex_state = 2}, + [7] = {.lex_state = 43, .external_lex_state = 2}, + [8] = {.lex_state = 7}, + [9] = {.lex_state = 30}, + [10] = {.lex_state = 30}, + [11] = {.lex_state = 30}, + [12] = {.lex_state = 32, .external_lex_state = 2}, + [13] = {.lex_state = 32, .external_lex_state = 2}, + [14] = {.lex_state = 43, .external_lex_state = 2}, + [15] = {.lex_state = 32, .external_lex_state = 2}, + [16] = {.lex_state = 32, .external_lex_state = 2}, + [17] = {.lex_state = 8}, + [18] = {.lex_state = 15, .external_lex_state = 3}, + [19] = {.lex_state = 8}, + [20] = {.lex_state = 15, .external_lex_state = 3}, + [21] = {.lex_state = 20}, + [22] = {.lex_state = 44, .external_lex_state = 2}, + [23] = {.lex_state = 20}, + [24] = {.lex_state = 15, .external_lex_state = 3}, + [25] = {.lex_state = 15, .external_lex_state = 2}, + [26] = {.lex_state = 42, .external_lex_state = 2}, + [27] = {.lex_state = 20}, + [28] = {.lex_state = 44, .external_lex_state = 2}, + [29] = {.lex_state = 42, .external_lex_state = 2}, + [30] = {.lex_state = 42, .external_lex_state = 2}, + [31] = {.lex_state = 21}, + [32] = {.lex_state = 9}, + [33] = {.lex_state = 6}, + [34] = {.lex_state = 25}, + [35] = {.lex_state = 25}, + [36] = {.lex_state = 22, .external_lex_state = 4}, + [37] = {.lex_state = 25}, + [38] = {.lex_state = 21}, + [39] = {.lex_state = 15, .external_lex_state = 2}, + [40] = {.lex_state = 42, .external_lex_state = 2}, + [41] = {.lex_state = 25}, + [42] = {.lex_state = 6}, + [43] = {.lex_state = 42, .external_lex_state = 2}, + [44] = {.lex_state = 7}, + [45] = {.lex_state = 15, .external_lex_state = 3}, + [46] = {.lex_state = 25}, + [47] = {.lex_state = 15, .external_lex_state = 2}, + [48] = {.lex_state = 9}, + [49] = {.lex_state = 7}, + [50] = {.lex_state = 25}, + [51] = {.lex_state = 9}, + [52] = {.lex_state = 22, .external_lex_state = 4}, + [53] = {.lex_state = 22, .external_lex_state = 4}, + [54] = {.lex_state = 25}, + [55] = {.lex_state = 32, .external_lex_state = 2}, + [56] = {.lex_state = 54}, + [57] = {.lex_state = 28}, + [58] = {.lex_state = 10}, + [59] = {.lex_state = 9}, + [60] = {.lex_state = 8}, + [61] = {.lex_state = 15, .external_lex_state = 2}, + [62] = {.lex_state = 9}, + [63] = {.lex_state = 33}, + [64] = {.lex_state = 8}, + [65] = {.lex_state = 10}, + [66] = {.lex_state = 32, .external_lex_state = 2}, + [67] = {.lex_state = 32, .external_lex_state = 2}, + [68] = {.lex_state = 32, .external_lex_state = 2}, + [69] = {.lex_state = 22}, + [70] = {.lex_state = 32, .external_lex_state = 2}, + [71] = {.lex_state = 32, .external_lex_state = 2}, + [72] = {.lex_state = 22}, + [73] = {.lex_state = 43, .external_lex_state = 2}, + [74] = {.lex_state = 22}, + [75] = {.lex_state = 23}, + [76] = {.lex_state = 44, .external_lex_state = 2}, + [77] = {.lex_state = 11}, + [78] = {.lex_state = 165}, + [79] = {.lex_state = 23}, + [80] = {.lex_state = 53}, + [81] = {.lex_state = 35}, + [82] = {.lex_state = 11}, + [83] = {.lex_state = 44, .external_lex_state = 2}, [84] = {.lex_state = 12}, - [85] = {.lex_state = 14}, - [86] = {.lex_state = 54}, - [87] = {.lex_state = 24}, - [88] = {.lex_state = 14}, - [89] = {.lex_state = 54}, - [90] = {.lex_state = 14}, - [91] = {.lex_state = 54}, - [92] = {.lex_state = 12}, - [93] = {.lex_state = 24}, - [94] = {.lex_state = 13}, - [95] = {.lex_state = 27}, - [96] = {.lex_state = 26}, - [97] = {.lex_state = 27}, - [98] = {.lex_state = 166}, - [99] = {.lex_state = 27}, - [100] = {.lex_state = 23, .external_lex_state = 4}, - [101] = {.lex_state = 27}, - [102] = {.lex_state = 51}, - [103] = {.lex_state = 27}, - [104] = {.lex_state = 8}, - [105] = {.lex_state = 23, .external_lex_state = 4}, - [106] = {.lex_state = 20}, - [107] = {.lex_state = 33, .external_lex_state = 2}, - [108] = {.lex_state = 17, .external_lex_state = 4}, - [109] = {.lex_state = 22}, - [110] = {.lex_state = 27}, - [111] = {.lex_state = 17, .external_lex_state = 4}, - [112] = {.lex_state = 17, .external_lex_state = 4}, - [113] = {.lex_state = 55}, - [114] = {.lex_state = 17, .external_lex_state = 4}, - [115] = {.lex_state = 20}, - [116] = {.lex_state = 35}, - [117] = {.lex_state = 23, .external_lex_state = 4}, - [118] = {.lex_state = 35}, - [119] = {.lex_state = 14}, - [120] = {.lex_state = 27}, - [121] = {.lex_state = 26}, - [122] = {.lex_state = 8}, - [123] = {.lex_state = 166}, - [124] = {.lex_state = 37}, - [125] = {.lex_state = 22}, - [126] = {.lex_state = 53}, - [127] = {.lex_state = 23}, - [128] = {.lex_state = 5, .external_lex_state = 4}, - [129] = {.lex_state = 16, .external_lex_state = 4}, - [130] = {.lex_state = 11}, - [131] = {.lex_state = 39}, - [132] = {.lex_state = 39}, - [133] = {.lex_state = 11}, - [134] = {.lex_state = 33, .external_lex_state = 2}, - [135] = {.lex_state = 32}, - [136] = {.lex_state = 10}, - [137] = {.lex_state = 10}, - [138] = {.lex_state = 5}, - [139] = {.lex_state = 5, .external_lex_state = 4}, - [140] = {.lex_state = 5, .external_lex_state = 4}, - [141] = {.lex_state = 10}, - [142] = {.lex_state = 5, .external_lex_state = 4}, - [143] = {.lex_state = 32}, - [144] = {.lex_state = 16, .external_lex_state = 4}, - [145] = {.lex_state = 5, .external_lex_state = 4}, - [146] = {.lex_state = 5}, - [147] = {.lex_state = 5}, - [148] = {.lex_state = 38}, - [149] = {.lex_state = 23}, - [150] = {.lex_state = 23}, - [151] = {.lex_state = 5, .external_lex_state = 4}, - [152] = {.lex_state = 16, .external_lex_state = 4}, - [153] = {.lex_state = 5, .external_lex_state = 4}, - [154] = {.lex_state = 5, .external_lex_state = 4}, - [155] = {.lex_state = 5, .external_lex_state = 4}, - [156] = {.lex_state = 166}, - [157] = {.lex_state = 41}, - [158] = {.lex_state = 32}, - [159] = {.lex_state = 5}, - [160] = {.lex_state = 5}, - [161] = {.lex_state = 14}, - [162] = {.lex_state = 12}, - [163] = {.lex_state = 12}, - [164] = {.lex_state = 47}, - [165] = {.lex_state = 47}, - [166] = {.lex_state = 47}, - [167] = {.lex_state = 47}, - [168] = {.lex_state = 17}, - [169] = {.lex_state = 47}, - [170] = {.lex_state = 47}, - [171] = {.lex_state = 47}, - [172] = {.lex_state = 47}, - [173] = {.lex_state = 16, .external_lex_state = 4}, - [174] = {.lex_state = 47}, - [175] = {.lex_state = 47}, - [176] = {.lex_state = 47}, - [177] = {.lex_state = 47}, - [178] = {.lex_state = 166}, - [179] = {.lex_state = 47}, - [180] = {.lex_state = 47}, - [181] = {.lex_state = 166, .external_lex_state = 5}, - [182] = {.lex_state = 47}, - [183] = {.lex_state = 166, .external_lex_state = 5}, - [184] = {.lex_state = 47}, - [185] = {.lex_state = 47}, - [186] = {.lex_state = 166}, - [187] = {.lex_state = 47}, - [188] = {.lex_state = 166}, - [189] = {.lex_state = 47}, - [190] = {.lex_state = 166}, - [191] = {.lex_state = 166}, - [192] = {.lex_state = 47}, - [193] = {.lex_state = 16}, - [194] = {.lex_state = 13}, - [195] = {.lex_state = 17, .external_lex_state = 4}, - [196] = {.lex_state = 166}, - [197] = {.lex_state = 13}, - [198] = {.lex_state = 14}, - [199] = {.lex_state = 47}, - [200] = {.lex_state = 13}, - [201] = {.lex_state = 17}, - [202] = {.lex_state = 10}, + [85] = {.lex_state = 20}, + [86] = {.lex_state = 20}, + [87] = {.lex_state = 13}, + [88] = {.lex_state = 12}, + [89] = {.lex_state = 53}, + [90] = {.lex_state = 11}, + [91] = {.lex_state = 20}, + [92] = {.lex_state = 13}, + [93] = {.lex_state = 13}, + [94] = {.lex_state = 23}, + [95] = {.lex_state = 12}, + [96] = {.lex_state = 53}, + [97] = {.lex_state = 26}, + [98] = {.lex_state = 25}, + [99] = {.lex_state = 50}, + [100] = {.lex_state = 34}, + [101] = {.lex_state = 26}, + [102] = {.lex_state = 25}, + [103] = {.lex_state = 26}, + [104] = {.lex_state = 26}, + [105] = {.lex_state = 19}, + [106] = {.lex_state = 26}, + [107] = {.lex_state = 16, .external_lex_state = 4}, + [108] = {.lex_state = 16, .external_lex_state = 4}, + [109] = {.lex_state = 165}, + [110] = {.lex_state = 16, .external_lex_state = 4}, + [111] = {.lex_state = 7}, + [112] = {.lex_state = 26}, + [113] = {.lex_state = 16, .external_lex_state = 4}, + [114] = {.lex_state = 54}, + [115] = {.lex_state = 34}, + [116] = {.lex_state = 36}, + [117] = {.lex_state = 52}, + [118] = {.lex_state = 22, .external_lex_state = 4}, + [119] = {.lex_state = 32, .external_lex_state = 2}, + [120] = {.lex_state = 21}, + [121] = {.lex_state = 165}, + [122] = {.lex_state = 7}, + [123] = {.lex_state = 13}, + [124] = {.lex_state = 22, .external_lex_state = 4}, + [125] = {.lex_state = 19}, + [126] = {.lex_state = 26}, + [127] = {.lex_state = 22, .external_lex_state = 4}, + [128] = {.lex_state = 21}, + [129] = {.lex_state = 10}, + [130] = {.lex_state = 10}, + [131] = {.lex_state = 38}, + [132] = {.lex_state = 9}, + [133] = {.lex_state = 9}, + [134] = {.lex_state = 31}, + [135] = {.lex_state = 9}, + [136] = {.lex_state = 22}, + [137] = {.lex_state = 22}, + [138] = {.lex_state = 9, .external_lex_state = 4}, + [139] = {.lex_state = 9, .external_lex_state = 4}, + [140] = {.lex_state = 9, .external_lex_state = 4}, + [141] = {.lex_state = 9, .external_lex_state = 4}, + [142] = {.lex_state = 22}, + [143] = {.lex_state = 15, .external_lex_state = 4}, + [144] = {.lex_state = 9, .external_lex_state = 4}, + [145] = {.lex_state = 6}, + [146] = {.lex_state = 9, .external_lex_state = 4}, + [147] = {.lex_state = 38}, + [148] = {.lex_state = 13}, + [149] = {.lex_state = 6}, + [150] = {.lex_state = 6}, + [151] = {.lex_state = 9, .external_lex_state = 4}, + [152] = {.lex_state = 15, .external_lex_state = 4}, + [153] = {.lex_state = 9, .external_lex_state = 4}, + [154] = {.lex_state = 32, .external_lex_state = 2}, + [155] = {.lex_state = 31}, + [156] = {.lex_state = 6}, + [157] = {.lex_state = 37}, + [158] = {.lex_state = 165}, + [159] = {.lex_state = 9, .external_lex_state = 4}, + [160] = {.lex_state = 40}, + [161] = {.lex_state = 6}, + [162] = {.lex_state = 31}, + [163] = {.lex_state = 11}, + [164] = {.lex_state = 11}, + [165] = {.lex_state = 46}, + [166] = {.lex_state = 46}, + [167] = {.lex_state = 46}, + [168] = {.lex_state = 16}, + [169] = {.lex_state = 46}, + [170] = {.lex_state = 46}, + [171] = {.lex_state = 46}, + [172] = {.lex_state = 46}, + [173] = {.lex_state = 46}, + [174] = {.lex_state = 9}, + [175] = {.lex_state = 46}, + [176] = {.lex_state = 46}, + [177] = {.lex_state = 165}, + [178] = {.lex_state = 46}, + [179] = {.lex_state = 46}, + [180] = {.lex_state = 165, .external_lex_state = 5}, + [181] = {.lex_state = 46}, + [182] = {.lex_state = 46}, + [183] = {.lex_state = 165, .external_lex_state = 5}, + [184] = {.lex_state = 46}, + [185] = {.lex_state = 46}, + [186] = {.lex_state = 46}, + [187] = {.lex_state = 46}, + [188] = {.lex_state = 165}, + [189] = {.lex_state = 165}, + [190] = {.lex_state = 46}, + [191] = {.lex_state = 165}, + [192] = {.lex_state = 165}, + [193] = {.lex_state = 16, .external_lex_state = 4}, + [194] = {.lex_state = 46}, + [195] = {.lex_state = 12}, + [196] = {.lex_state = 13}, + [197] = {.lex_state = 46}, + [198] = {.lex_state = 165}, + [199] = {.lex_state = 12}, + [200] = {.lex_state = 12}, + [201] = {.lex_state = 16}, + [202] = {.lex_state = 15}, [203] = {.lex_state = 16}, - [204] = {.lex_state = 17}, - [205] = {.lex_state = 12}, - [206] = {.lex_state = 14}, - [207] = {.lex_state = 24}, - [208] = {.lex_state = 24}, - [209] = {.lex_state = 166, .external_lex_state = 5}, - [210] = {.lex_state = 166}, - [211] = {.lex_state = 24}, - [212] = {.lex_state = 54}, - [213] = {.lex_state = 16}, - [214] = {.lex_state = 54}, - [215] = {.lex_state = 54}, - [216] = {.lex_state = 47}, - [217] = {.lex_state = 14}, - [218] = {.lex_state = 38}, - [219] = {.lex_state = 20}, - [220] = {.lex_state = 17}, - [221] = {.lex_state = 14}, - [222] = {.lex_state = 55}, - [223] = {.lex_state = 20}, - [224] = {.lex_state = 20}, - [225] = {.lex_state = 5, .external_lex_state = 4}, - [226] = {.lex_state = 20}, - [227] = {.lex_state = 20}, - [228] = {.lex_state = 166}, - [229] = {.lex_state = 16}, - [230] = {.lex_state = 166}, - [231] = {.lex_state = 5, .external_lex_state = 4}, - [232] = {.lex_state = 166, .external_lex_state = 5}, - [233] = {.lex_state = 5, .external_lex_state = 4}, - [234] = {.lex_state = 5, .external_lex_state = 4}, - [235] = {.lex_state = 166}, - [236] = {.lex_state = 166}, - [237] = {.lex_state = 5}, - [238] = {.lex_state = 56}, - [239] = {.lex_state = 14}, - [240] = {.lex_state = 5, .external_lex_state = 4}, - [241] = {.lex_state = 166}, - [242] = {.lex_state = 14}, - [243] = {.lex_state = 5}, - [244] = {.lex_state = 166}, - [245] = {.lex_state = 56}, - [246] = {.lex_state = 14}, - [247] = {.lex_state = 46}, - [248] = {.lex_state = 57}, - [249] = {.lex_state = 5}, - [250] = {.lex_state = 5}, - [251] = {.lex_state = 5}, - [252] = {.lex_state = 166}, - [253] = {.lex_state = 48}, - [254] = {.lex_state = 48}, - [255] = {.lex_state = 57}, - [256] = {.lex_state = 5}, - [257] = {.lex_state = 166}, - [258] = {.lex_state = 5}, - [259] = {.lex_state = 5}, - [260] = {.lex_state = 259}, - [261] = {.lex_state = 259}, - [262] = {.lex_state = 166}, - [263] = {.lex_state = 5}, - [264] = {.lex_state = 50}, - [265] = {.lex_state = 166}, - [266] = {.lex_state = 166}, - [267] = {.lex_state = 5}, - [268] = {.lex_state = 166}, - [269] = {.lex_state = 166}, - [270] = {.lex_state = 5}, - [271] = {.lex_state = 56}, - [272] = {.lex_state = 5}, - [273] = {.lex_state = 166}, - [274] = {.lex_state = 201}, - [275] = {.lex_state = 201}, - [276] = {.lex_state = 5}, - [277] = {.lex_state = 166}, - [278] = {.lex_state = 57}, - [279] = {.lex_state = 5}, - [280] = {.lex_state = 52}, - [281] = {.lex_state = 166}, - [282] = {.lex_state = 57}, - [283] = {.lex_state = 5}, - [284] = {.lex_state = 5}, - [285] = {.lex_state = 166}, - [286] = {.lex_state = 5}, - [287] = {.lex_state = 5}, - [288] = {.lex_state = 166}, - [289] = {.lex_state = 166}, - [290] = {.lex_state = 5}, - [291] = {.lex_state = 166}, - [292] = {.lex_state = 166}, - [293] = {.lex_state = 5}, - [294] = {.lex_state = 166}, - [295] = {.lex_state = 166}, - [296] = {.lex_state = 5}, - [297] = {.lex_state = 166}, - [298] = {.lex_state = 58}, - [299] = {.lex_state = 166}, - [300] = {.lex_state = 166}, - [301] = {.lex_state = 166}, - [302] = {.lex_state = 5}, - [303] = {.lex_state = 166}, - [304] = {.lex_state = 5}, - [305] = {.lex_state = 166}, - [306] = {.lex_state = 166}, - [307] = {.lex_state = 58}, - [308] = {.lex_state = 166}, - [309] = {.lex_state = 58}, - [310] = {.lex_state = 166}, - [311] = {.lex_state = 58}, - [312] = {.lex_state = 166}, - [313] = {.lex_state = 58}, - [314] = {.lex_state = 58}, - [315] = {.lex_state = 58}, - [316] = {.lex_state = 58}, - [317] = {.lex_state = 58}, - [318] = {.lex_state = 58}, - [319] = {.lex_state = 58}, - [320] = {.lex_state = 58}, - [321] = {.lex_state = 58}, - [322] = {.lex_state = 58}, - [323] = {.lex_state = 50}, - [324] = {.lex_state = 50}, + [204] = {.lex_state = 11}, + [205] = {.lex_state = 13}, + [206] = {.lex_state = 23}, + [207] = {.lex_state = 23}, + [208] = {.lex_state = 165, .external_lex_state = 5}, + [209] = {.lex_state = 23}, + [210] = {.lex_state = 165}, + [211] = {.lex_state = 15}, + [212] = {.lex_state = 53}, + [213] = {.lex_state = 53}, + [214] = {.lex_state = 53}, + [215] = {.lex_state = 46}, + [216] = {.lex_state = 13}, + [217] = {.lex_state = 45}, + [218] = {.lex_state = 54}, + [219] = {.lex_state = 13}, + [220] = {.lex_state = 13}, + [221] = {.lex_state = 19}, + [222] = {.lex_state = 19}, + [223] = {.lex_state = 16}, + [224] = {.lex_state = 19}, + [225] = {.lex_state = 19}, + [226] = {.lex_state = 19}, + [227] = {.lex_state = 9, .external_lex_state = 4}, + [228] = {.lex_state = 165}, + [229] = {.lex_state = 165}, + [230] = {.lex_state = 9, .external_lex_state = 4}, + [231] = {.lex_state = 165, .external_lex_state = 5}, + [232] = {.lex_state = 9, .external_lex_state = 4}, + [233] = {.lex_state = 165}, + [234] = {.lex_state = 9, .external_lex_state = 4}, + [235] = {.lex_state = 9}, + [236] = {.lex_state = 165}, + [237] = {.lex_state = 55}, + [238] = {.lex_state = 9, .external_lex_state = 4}, + [239] = {.lex_state = 165}, + [240] = {.lex_state = 9}, + [241] = {.lex_state = 165}, + [242] = {.lex_state = 13}, + [243] = {.lex_state = 55}, + [244] = {.lex_state = 37}, + [245] = {.lex_state = 13}, + [246] = {.lex_state = 9}, + [247] = {.lex_state = 9}, + [248] = {.lex_state = 9}, + [249] = {.lex_state = 165}, + [250] = {.lex_state = 47}, + [251] = {.lex_state = 47}, + [252] = {.lex_state = 9}, + [253] = {.lex_state = 9}, + [254] = {.lex_state = 165}, + [255] = {.lex_state = 9}, + [256] = {.lex_state = 56}, + [257] = {.lex_state = 9}, + [258] = {.lex_state = 258}, + [259] = {.lex_state = 258}, + [260] = {.lex_state = 9}, + [261] = {.lex_state = 165}, + [262] = {.lex_state = 49}, + [263] = {.lex_state = 9}, + [264] = {.lex_state = 165}, + [265] = {.lex_state = 9}, + [266] = {.lex_state = 165}, + [267] = {.lex_state = 56}, + [268] = {.lex_state = 165}, + [269] = {.lex_state = 165}, + [270] = {.lex_state = 55}, + [271] = {.lex_state = 165}, + [272] = {.lex_state = 200}, + [273] = {.lex_state = 200}, + [274] = {.lex_state = 9}, + [275] = {.lex_state = 165}, + [276] = {.lex_state = 56}, + [277] = {.lex_state = 9}, + [278] = {.lex_state = 9}, + [279] = {.lex_state = 165}, + [280] = {.lex_state = 56}, + [281] = {.lex_state = 51}, + [282] = {.lex_state = 9}, + [283] = {.lex_state = 165}, + [284] = {.lex_state = 9}, + [285] = {.lex_state = 9}, + [286] = {.lex_state = 165}, + [287] = {.lex_state = 9}, + [288] = {.lex_state = 9}, + [289] = {.lex_state = 165}, + [290] = {.lex_state = 9}, + [291] = {.lex_state = 9}, + [292] = {.lex_state = 165}, + [293] = {.lex_state = 165}, + [294] = {.lex_state = 9}, + [295] = {.lex_state = 165}, + [296] = {.lex_state = 165}, + [297] = {.lex_state = 165}, + [298] = {.lex_state = 57}, + [299] = {.lex_state = 165}, + [300] = {.lex_state = 165}, + [301] = {.lex_state = 165}, + [302] = {.lex_state = 165}, + [303] = {.lex_state = 165}, + [304] = {.lex_state = 165}, + [305] = {.lex_state = 57}, + [306] = {.lex_state = 165}, + [307] = {.lex_state = 57}, + [308] = {.lex_state = 165}, + [309] = {.lex_state = 57}, + [310] = {.lex_state = 165}, + [311] = {.lex_state = 57}, + [312] = {.lex_state = 57}, + [313] = {.lex_state = 57}, + [314] = {.lex_state = 57}, + [315] = {.lex_state = 57}, + [316] = {.lex_state = 57}, + [317] = {.lex_state = 57}, + [318] = {.lex_state = 57}, + [319] = {.lex_state = 57}, + [320] = {.lex_state = 57}, + [321] = {.lex_state = 49}, + [322] = {.lex_state = 49}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -3859,7 +3832,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), @@ -3869,34 +3842,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_SQUOTE] = ACTIONS(1), [sym_comment] = ACTIONS(5), [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(273), - [sym__instruction] = STATE(267), - [sym_from_instruction] = STATE(267), - [sym_run_instruction] = STATE(267), - [sym_cmd_instruction] = STATE(267), - [sym_label_instruction] = STATE(267), - [sym_expose_instruction] = STATE(267), - [sym_env_instruction] = STATE(267), - [sym_add_instruction] = STATE(267), - [sym_copy_instruction] = STATE(267), - [sym_entrypoint_instruction] = STATE(267), - [sym_volume_instruction] = STATE(267), - [sym_user_instruction] = STATE(267), - [sym_workdir_instruction] = STATE(267), - [sym_arg_instruction] = STATE(267), - [sym_onbuild_instruction] = STATE(267), - [sym_stopsignal_instruction] = STATE(267), - [sym_healthcheck_instruction] = STATE(267), - [sym_shell_instruction] = STATE(267), - [sym_maintainer_instruction] = STATE(267), - [sym_cross_build_instruction] = STATE(267), - [aux_sym_source_file_repeat1] = STATE(2), + [sym_source_file] = STATE(271), + [sym__instruction] = STATE(265), + [sym_from_instruction] = STATE(265), + [sym_run_instruction] = STATE(265), + [sym_cmd_instruction] = STATE(265), + [sym_label_instruction] = STATE(265), + [sym_expose_instruction] = STATE(265), + [sym_env_instruction] = STATE(265), + [sym_add_instruction] = STATE(265), + [sym_copy_instruction] = STATE(265), + [sym_entrypoint_instruction] = STATE(265), + [sym_volume_instruction] = STATE(265), + [sym_user_instruction] = STATE(265), + [sym_workdir_instruction] = STATE(265), + [sym_arg_instruction] = STATE(265), + [sym_onbuild_instruction] = STATE(265), + [sym_stopsignal_instruction] = STATE(265), + [sym_healthcheck_instruction] = STATE(265), + [sym_shell_instruction] = STATE(265), + [sym_maintainer_instruction] = STATE(265), + [sym_cross_build_instruction] = STATE(265), + [aux_sym_source_file_repeat1] = STATE(3), [ts_builtin_sym_end] = ACTIONS(7), [aux_sym_from_instruction_token1] = ACTIONS(9), [aux_sym_run_instruction_token1] = ACTIONS(11), @@ -3924,52 +3897,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(47), 1, + ts_builtin_sym_end, + ACTIONS(49), 1, aux_sym_from_instruction_token1, - ACTIONS(11), 1, + ACTIONS(52), 1, aux_sym_run_instruction_token1, - ACTIONS(13), 1, + ACTIONS(55), 1, aux_sym_cmd_instruction_token1, - ACTIONS(15), 1, + ACTIONS(58), 1, aux_sym_label_instruction_token1, - ACTIONS(17), 1, + ACTIONS(61), 1, aux_sym_expose_instruction_token1, - ACTIONS(19), 1, + ACTIONS(64), 1, aux_sym_env_instruction_token1, - ACTIONS(21), 1, + ACTIONS(67), 1, aux_sym_add_instruction_token1, - ACTIONS(23), 1, + ACTIONS(70), 1, aux_sym_copy_instruction_token1, - ACTIONS(25), 1, + ACTIONS(73), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(27), 1, + ACTIONS(76), 1, aux_sym_volume_instruction_token1, - ACTIONS(29), 1, + ACTIONS(79), 1, aux_sym_user_instruction_token1, - ACTIONS(31), 1, + ACTIONS(82), 1, aux_sym_workdir_instruction_token1, - ACTIONS(33), 1, + ACTIONS(85), 1, aux_sym_arg_instruction_token1, - ACTIONS(35), 1, + ACTIONS(88), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(37), 1, + ACTIONS(91), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(39), 1, + ACTIONS(94), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(41), 1, + ACTIONS(97), 1, aux_sym_shell_instruction_token1, - ACTIONS(43), 1, + ACTIONS(100), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(45), 1, + ACTIONS(103), 1, aux_sym_cross_build_instruction_token1, - ACTIONS(47), 1, - ts_builtin_sym_end, - STATE(3), 1, + STATE(2), 1, aux_sym_source_file_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(267), 20, + STATE(265), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -3991,52 +3964,52 @@ static const uint16_t ts_small_parse_table[] = { sym_maintainer_instruction, sym_cross_build_instruction, [90] = 23, - ACTIONS(49), 1, - ts_builtin_sym_end, - ACTIONS(51), 1, + ACTIONS(9), 1, aux_sym_from_instruction_token1, - ACTIONS(54), 1, + ACTIONS(11), 1, aux_sym_run_instruction_token1, - ACTIONS(57), 1, + ACTIONS(13), 1, aux_sym_cmd_instruction_token1, - ACTIONS(60), 1, + ACTIONS(15), 1, aux_sym_label_instruction_token1, - ACTIONS(63), 1, + ACTIONS(17), 1, aux_sym_expose_instruction_token1, - ACTIONS(66), 1, + ACTIONS(19), 1, aux_sym_env_instruction_token1, - ACTIONS(69), 1, + ACTIONS(21), 1, aux_sym_add_instruction_token1, - ACTIONS(72), 1, + ACTIONS(23), 1, aux_sym_copy_instruction_token1, - ACTIONS(75), 1, + ACTIONS(25), 1, aux_sym_entrypoint_instruction_token1, - ACTIONS(78), 1, + ACTIONS(27), 1, aux_sym_volume_instruction_token1, - ACTIONS(81), 1, + ACTIONS(29), 1, aux_sym_user_instruction_token1, - ACTIONS(84), 1, + ACTIONS(31), 1, aux_sym_workdir_instruction_token1, - ACTIONS(87), 1, + ACTIONS(33), 1, aux_sym_arg_instruction_token1, - ACTIONS(90), 1, + ACTIONS(35), 1, aux_sym_onbuild_instruction_token1, - ACTIONS(93), 1, + ACTIONS(37), 1, aux_sym_stopsignal_instruction_token1, - ACTIONS(96), 1, + ACTIONS(39), 1, aux_sym_healthcheck_instruction_token1, - ACTIONS(99), 1, + ACTIONS(41), 1, aux_sym_shell_instruction_token1, - ACTIONS(102), 1, + ACTIONS(43), 1, aux_sym_maintainer_instruction_token1, - ACTIONS(105), 1, + ACTIONS(45), 1, aux_sym_cross_build_instruction_token1, - STATE(3), 1, + ACTIONS(106), 1, + ts_builtin_sym_end, + STATE(2), 1, aux_sym_source_file_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(267), 20, + STATE(265), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -4099,7 +4072,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(279), 20, + STATE(284), 20, sym__instruction, sym_from_instruction, sym_run_instruction, @@ -4124,7 +4097,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, @@ -4145,59 +4118,55 @@ 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, + [291] = 8, ACTIONS(110), 1, anon_sym_DASH_DASH, ACTIONS(112), 1, anon_sym_LBRACK, ACTIONS(114), 1, sym_heredoc_marker, - STATE(26), 1, - aux_sym_shell_fragment_repeat1, - STATE(129), 1, - sym_shell_fragment, + STATE(18), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(128), 2, + STATE(146), 2, sym_shell_command, sym_json_string_array, - STATE(7), 3, + STATE(14), 3, sym_param, sym_mount_param, aux_sym_run_instruction_repeat1, ACTIONS(108), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [326] = 9, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [323] = 8, ACTIONS(110), 1, anon_sym_DASH_DASH, ACTIONS(112), 1, anon_sym_LBRACK, ACTIONS(114), 1, sym_heredoc_marker, - STATE(26), 1, - aux_sym_shell_fragment_repeat1, - STATE(129), 1, - sym_shell_fragment, + STATE(18), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(151), 2, + STATE(138), 2, sym_shell_command, sym_json_string_array, - STATE(12), 3, + STATE(6), 3, sym_param, sym_mount_param, aux_sym_run_instruction_repeat1, ACTIONS(108), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [361] = 9, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [355] = 9, ACTIONS(116), 1, anon_sym_LF, ACTIONS(118), 1, @@ -4214,15 +4183,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(126), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(38), 3, + STATE(44), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(219), 3, + STATE(226), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [395] = 8, + [389] = 8, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, @@ -4236,15 +4205,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(17), 3, + STATE(19), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(304), 3, + STATE(145), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [425] = 8, + [419] = 8, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, @@ -4258,15 +4227,15 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(17), 3, + STATE(19), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(146), 3, + STATE(263), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [455] = 8, + [449] = 8, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, @@ -4280,1030 +4249,1075 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(134), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - STATE(17), 3, + STATE(19), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - STATE(296), 3, + STATE(282), 3, sym_double_quoted_string, sym_single_quoted_string, sym_unquoted_string, - [485] = 5, + [479] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(136), 1, + aux_sym_path_token1, + ACTIONS(138), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(140), 1, + anon_sym_DOLLAR, + ACTIONS(142), 1, + anon_sym_DASH_DASH, + ACTIONS(144), 1, + sym_heredoc_marker, + STATE(68), 1, + aux_sym_add_instruction_repeat2, + STATE(80), 1, + sym_expansion, + STATE(250), 1, + sym_path_with_heredoc, + STATE(70), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [514] = 11, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(136), 1, + aux_sym_path_token1, ACTIONS(138), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(140), 1, + anon_sym_DOLLAR, + ACTIONS(142), 1, + anon_sym_DASH_DASH, + ACTIONS(144), 1, + sym_heredoc_marker, + STATE(71), 1, + aux_sym_add_instruction_repeat2, + STATE(80), 1, + sym_expansion, + STATE(250), 1, + sym_path_with_heredoc, + STATE(16), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [549] = 5, + ACTIONS(148), 1, anon_sym_DASH_DASH, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(141), 2, + ACTIONS(151), 2, sym_heredoc_marker, anon_sym_LBRACK, - STATE(12), 3, + STATE(14), 3, sym_param, sym_mount_param, aux_sym_run_instruction_repeat1, - ACTIONS(136), 4, + ACTIONS(146), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [508] = 11, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [572] = 11, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(143), 1, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(145), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(147), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(149), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(151), 1, + ACTIONS(144), 1, sym_heredoc_marker, - STATE(63), 1, + STATE(66), 1, aux_sym_add_instruction_repeat2, - STATE(86), 1, + STATE(80), 1, sym_expansion, - STATE(253), 1, + STATE(250), 1, sym_path_with_heredoc, - STATE(20), 2, + STATE(12), 2, sym_param, aux_sym_add_instruction_repeat1, - [543] = 11, + [607] = 11, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(143), 1, + ACTIONS(136), 1, aux_sym_path_token1, - ACTIONS(145), 1, + ACTIONS(138), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(147), 1, + ACTIONS(140), 1, anon_sym_DOLLAR, - ACTIONS(149), 1, + ACTIONS(142), 1, anon_sym_DASH_DASH, - ACTIONS(151), 1, + ACTIONS(144), 1, sym_heredoc_marker, - STATE(64), 1, + STATE(67), 1, aux_sym_add_instruction_repeat2, - STATE(86), 1, + STATE(80), 1, sym_expansion, - STATE(253), 1, + STATE(250), 1, sym_path_with_heredoc, - STATE(19), 2, + STATE(70), 2, sym_param, aux_sym_add_instruction_repeat1, - [578] = 8, - ACTIONS(155), 1, - aux_sym_shell_fragment_token2, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - sym_heredoc_marker, - STATE(35), 1, - aux_sym_shell_fragment_repeat1, - STATE(193), 1, - sym_shell_fragment, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(251), 2, - sym_shell_command, - sym_json_string_array, - ACTIONS(153), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [607] = 8, + [642] = 6, + ACTIONS(153), 1, + anon_sym_LF, ACTIONS(155), 1, - aux_sym_shell_fragment_token2, - ACTIONS(157), 1, - anon_sym_LBRACK, - ACTIONS(159), 1, - sym_heredoc_marker, - STATE(35), 1, - aux_sym_shell_fragment_repeat1, - STATE(193), 1, - sym_shell_fragment, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(258), 2, - sym_shell_command, - sym_json_string_array, - ACTIONS(153), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [636] = 6, - ACTIONS(128), 1, anon_sym_DOLLAR2, - ACTIONS(161), 1, - anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(165), 2, + ACTIONS(160), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - ACTIONS(163), 3, + ACTIONS(158), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - STATE(18), 3, + STATE(17), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [661] = 6, + [667] = 7, + ACTIONS(114), 1, + sym_heredoc_marker, ACTIONS(167), 1, + sym_required_line_continuation, + STATE(20), 1, + aux_sym__shell_fragment, + STATE(152), 1, + aux_sym_shell_command_repeat1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(163), 2, + sym__heredoc_nl, anon_sym_LF, - ACTIONS(169), 1, + ACTIONS(165), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [694] = 6, + ACTIONS(128), 1, anon_sym_DOLLAR2, + ACTIONS(169), 1, + anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(174), 2, + ACTIONS(173), 2, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - ACTIONS(172), 3, + ACTIONS(171), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - STATE(18), 3, + STATE(17), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_unquoted_string_repeat1, - [686] = 11, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(143), 1, - aux_sym_path_token1, - ACTIONS(145), 1, - aux_sym_path_with_heredoc_token1, - ACTIONS(147), 1, - anon_sym_DOLLAR, - ACTIONS(149), 1, - anon_sym_DASH_DASH, - ACTIONS(151), 1, - sym_heredoc_marker, - STATE(60), 1, - aux_sym_add_instruction_repeat2, - STATE(86), 1, - sym_expansion, - STATE(253), 1, - sym_path_with_heredoc, - STATE(56), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [721] = 11, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(143), 1, - aux_sym_path_token1, - ACTIONS(145), 1, - aux_sym_path_with_heredoc_token1, - ACTIONS(147), 1, - anon_sym_DOLLAR, - ACTIONS(149), 1, - anon_sym_DASH_DASH, - ACTIONS(151), 1, + [719] = 6, + ACTIONS(180), 1, + sym_required_line_continuation, + ACTIONS(182), 1, sym_heredoc_marker, - STATE(58), 1, - aux_sym_add_instruction_repeat2, - STATE(86), 1, - sym_expansion, - STATE(253), 1, - sym_path_with_heredoc, - STATE(56), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [756] = 5, - ACTIONS(181), 1, - anon_sym_COMMA, - STATE(23), 1, - aux_sym_mount_param_repeat1, - ACTIONS(3), 2, + STATE(20), 1, + aux_sym__shell_fragment, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(179), 3, - sym_heredoc_marker, - anon_sym_DASH_DASH, - anon_sym_LBRACK, + ACTIONS(175), 2, + sym__heredoc_nl, + anon_sym_LF, ACTIONS(177), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [778] = 6, - ACTIONS(185), 1, - aux_sym_from_instruction_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [743] = 6, ACTIONS(187), 1, - anon_sym_DOLLAR2, + aux_sym_from_instruction_token2, ACTIONS(189), 1, + anon_sym_DOLLAR2, + ACTIONS(191), 1, aux_sym_image_name_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(183), 3, + ACTIONS(185), 3, anon_sym_LF, anon_sym_COLON, anon_sym_AT, - STATE(27), 3, + STATE(23), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_name_repeat1, - [802] = 5, - ACTIONS(181), 1, - anon_sym_COMMA, - STATE(28), 1, - aux_sym_mount_param_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(193), 3, - sym_heredoc_marker, - anon_sym_DASH_DASH, + [767] = 7, + ACTIONS(195), 1, + aux_sym__shell_fragment_token2, + ACTIONS(197), 1, anon_sym_LBRACK, - ACTIONS(191), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [824] = 6, - ACTIONS(200), 1, - sym_required_line_continuation, - ACTIONS(202), 1, + ACTIONS(199), 1, sym_heredoc_marker, - STATE(24), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, + STATE(25), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(195), 2, - sym_heredoc_nl, - anon_sym_LF, - ACTIONS(197), 4, + STATE(248), 2, + sym_shell_command, + sym_json_string_array, + ACTIONS(193), 3, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [848] = 6, - ACTIONS(187), 1, - anon_sym_DOLLAR2, - ACTIONS(207), 1, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [793] = 6, + ACTIONS(203), 1, aux_sym_from_instruction_token2, - ACTIONS(209), 1, + ACTIONS(205), 1, + anon_sym_DOLLAR2, + ACTIONS(208), 1, aux_sym_image_name_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(205), 3, + ACTIONS(201), 3, anon_sym_LF, anon_sym_COLON, anon_sym_AT, - STATE(22), 3, + STATE(23), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_name_repeat1, - [872] = 6, + [817] = 6, ACTIONS(114), 1, sym_heredoc_marker, - ACTIONS(215), 1, + ACTIONS(213), 1, sym_required_line_continuation, - STATE(24), 1, - aux_sym_shell_fragment_repeat1, + STATE(20), 1, + aux_sym__shell_fragment, ACTIONS(5), 2, sym_line_continuation, sym_comment, ACTIONS(211), 2, - sym_heredoc_nl, + sym__heredoc_nl, anon_sym_LF, - ACTIONS(213), 4, + ACTIONS(165), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [896] = 6, - ACTIONS(219), 1, - aux_sym_from_instruction_token2, - ACTIONS(221), 1, - anon_sym_DOLLAR2, - ACTIONS(224), 1, - aux_sym_image_name_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [841] = 7, + ACTIONS(163), 1, + anon_sym_LF, + ACTIONS(199), 1, + sym_heredoc_marker, + ACTIONS(217), 1, + sym_required_line_continuation, + STATE(47), 1, + aux_sym__shell_fragment, + STATE(202), 1, + aux_sym_shell_command_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(217), 3, - anon_sym_LF, - anon_sym_COLON, - anon_sym_AT, - STATE(27), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_name_repeat1, - [920] = 5, - ACTIONS(231), 1, + ACTIONS(215), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [867] = 5, + ACTIONS(223), 1, anon_sym_COMMA, - STATE(28), 1, + STATE(29), 1, aux_sym_mount_param_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(229), 3, + ACTIONS(221), 3, sym_heredoc_marker, anon_sym_DASH_DASH, anon_sym_LBRACK, - ACTIONS(227), 4, + ACTIONS(219), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [942] = 6, - ACTIONS(234), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [889] = 6, + ACTIONS(189), 1, anon_sym_DOLLAR2, - ACTIONS(236), 1, - anon_sym_DQUOTE, - ACTIONS(240), 1, - sym_double_quoted_escape_sequence, + ACTIONS(227), 1, + aux_sym_from_instruction_token2, + ACTIONS(229), 1, + aux_sym_image_name_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(238), 2, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - STATE(47), 3, + ACTIONS(225), 3, + anon_sym_LF, + anon_sym_COLON, + anon_sym_AT, + STATE(21), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_double_quoted_string_repeat1, - [965] = 6, - ACTIONS(234), 1, - anon_sym_DOLLAR2, - ACTIONS(240), 1, - sym_double_quoted_escape_sequence, - ACTIONS(242), 1, - anon_sym_DQUOTE, - ACTIONS(5), 2, + aux_sym_image_name_repeat1, + [913] = 7, + ACTIONS(195), 1, + aux_sym__shell_fragment_token2, + ACTIONS(197), 1, + anon_sym_LBRACK, + ACTIONS(199), 1, + sym_heredoc_marker, + STATE(25), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(238), 2, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - STATE(47), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_double_quoted_string_repeat1, - [988] = 3, + STATE(255), 2, + sym_shell_command, + sym_json_string_array, + ACTIONS(193), 3, + aux_sym_path_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [939] = 5, + ACTIONS(223), 1, + anon_sym_COMMA, + STATE(30), 1, + aux_sym_mount_param_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(227), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - ACTIONS(229), 4, + ACTIONS(233), 3, sym_heredoc_marker, anon_sym_DASH_DASH, - anon_sym_COMMA, anon_sym_LBRACK, - [1005] = 3, - ACTIONS(5), 2, + ACTIONS(231), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [961] = 5, + ACTIONS(239), 1, + anon_sym_COMMA, + STATE(30), 1, + aux_sym_mount_param_repeat1, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(195), 3, + ACTIONS(237), 3, sym_heredoc_marker, - sym_heredoc_nl, - anon_sym_LF, - ACTIONS(200), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + ACTIONS(235), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - sym_required_line_continuation, - [1022] = 6, - ACTIONS(167), 1, - anon_sym_LF, - ACTIONS(172), 1, - aux_sym__env_key_token1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [983] = 6, ACTIONS(244), 1, + aux_sym_from_instruction_token2, + ACTIONS(246), 1, anon_sym_DOLLAR2, + ACTIONS(248), 1, + aux_sym_image_tag_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(247), 2, - aux_sym_unquoted_string_token1, - anon_sym_BSLASH2, - STATE(33), 3, + ACTIONS(242), 2, + anon_sym_LF, + anon_sym_AT, + STATE(38), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_unquoted_string_repeat1, - [1045] = 6, + aux_sym_image_tag_repeat1, + [1006] = 5, ACTIONS(252), 1, - aux_sym_from_instruction_token2, + aux_sym__immediate_user_name_or_group_fragment_token1, ACTIONS(254), 1, anon_sym_DOLLAR2, - ACTIONS(256), 1, - aux_sym_image_tag_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, ACTIONS(250), 2, anon_sym_LF, - anon_sym_AT, - STATE(37), 3, + anon_sym_COLON, + STATE(48), 4, + sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_tag_repeat1, - [1068] = 6, - ACTIONS(159), 1, - sym_heredoc_marker, - ACTIONS(211), 1, - anon_sym_LF, - ACTIONS(215), 1, - sym_required_line_continuation, - STATE(51), 1, - aux_sym_shell_fragment_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(258), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1091] = 6, - ACTIONS(260), 1, + aux_sym__user_name_or_group_repeat1, + [1027] = 7, + ACTIONS(256), 1, anon_sym_LF, - ACTIONS(262), 1, - aux_sym_path_token3, + ACTIONS(258), 1, + aux_sym_label_pair_token1, + ACTIONS(261), 1, + anon_sym_DQUOTE, ACTIONS(264), 1, - anon_sym_DOLLAR2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(266), 2, - sym_heredoc_nl, - sym__non_newline_whitespace, - STATE(44), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_path_repeat1, - [1114] = 6, - ACTIONS(270), 1, - aux_sym_from_instruction_token2, - ACTIONS(272), 1, - anon_sym_DOLLAR2, - ACTIONS(275), 1, - aux_sym_image_tag_token1, + anon_sym_SQUOTE, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(268), 2, - anon_sym_LF, - anon_sym_AT, - STATE(37), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_tag_repeat1, - [1137] = 6, - ACTIONS(118), 1, + STATE(33), 2, + sym_label_pair, + aux_sym_label_instruction_repeat1, + STATE(254), 2, + sym_double_quoted_string, + sym_single_quoted_string, + [1052] = 6, + ACTIONS(267), 1, anon_sym_DOLLAR2, - ACTIONS(161), 1, - anon_sym_LF, - ACTIONS(163), 1, - aux_sym__env_key_token1, + ACTIONS(269), 1, + anon_sym_DQUOTE, + ACTIONS(273), 1, + sym_double_quoted_escape_sequence, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(278), 2, - aux_sym_unquoted_string_token1, - anon_sym_BSLASH2, - STATE(33), 3, + ACTIONS(271), 2, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + STATE(46), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_unquoted_string_repeat1, - [1160] = 6, - ACTIONS(234), 1, + aux_sym_double_quoted_string_repeat1, + [1075] = 6, + ACTIONS(275), 1, anon_sym_DOLLAR2, - ACTIONS(280), 1, + ACTIONS(278), 1, anon_sym_DQUOTE, - ACTIONS(284), 1, + ACTIONS(283), 1, sym_double_quoted_escape_sequence, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(282), 2, + ACTIONS(280), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(45), 3, + STATE(35), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1183] = 6, + [1098] = 6, ACTIONS(286), 1, anon_sym_LF, ACTIONS(288), 1, aux_sym_path_token3, - ACTIONS(291), 1, + ACTIONS(290), 1, anon_sym_DOLLAR2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(294), 2, - sym_heredoc_nl, + ACTIONS(292), 2, + sym__heredoc_nl, sym__non_newline_whitespace, - STATE(40), 3, + STATE(52), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1206] = 7, - ACTIONS(296), 1, - anon_sym_LF, - ACTIONS(298), 1, - aux_sym_label_pair_token1, - ACTIONS(300), 1, - anon_sym_DQUOTE, - ACTIONS(302), 1, - anon_sym_SQUOTE, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(46), 2, - sym_label_pair, - aux_sym_label_instruction_repeat1, - STATE(257), 2, - sym_double_quoted_string, - sym_single_quoted_string, - [1231] = 5, - ACTIONS(306), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(308), 1, + [1121] = 6, + ACTIONS(267), 1, anon_sym_DOLLAR2, + ACTIONS(294), 1, + anon_sym_DQUOTE, + ACTIONS(298), 1, + sym_double_quoted_escape_sequence, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(304), 2, - anon_sym_LF, - anon_sym_COLON, - STATE(43), 4, - sym__immediate_user_name_or_group_fragment, + ACTIONS(296), 2, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + STATE(35), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__user_name_or_group_repeat1, - [1252] = 5, - ACTIONS(312), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(315), 1, + aux_sym_double_quoted_string_repeat1, + [1144] = 6, + ACTIONS(302), 1, + aux_sym_from_instruction_token2, + ACTIONS(304), 1, anon_sym_DOLLAR2, + ACTIONS(307), 1, + aux_sym_image_tag_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(310), 2, + ACTIONS(300), 2, anon_sym_LF, - anon_sym_COLON, - STATE(43), 4, - sym__immediate_user_name_or_group_fragment, + anon_sym_AT, + STATE(38), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__user_name_or_group_repeat1, - [1273] = 6, - ACTIONS(264), 1, - anon_sym_DOLLAR2, - ACTIONS(318), 1, + aux_sym_image_tag_repeat1, + [1167] = 6, + ACTIONS(199), 1, + sym_heredoc_marker, + ACTIONS(211), 1, anon_sym_LF, - ACTIONS(320), 1, - aux_sym_path_token3, + ACTIONS(213), 1, + sym_required_line_continuation, + STATE(47), 1, + aux_sym__shell_fragment, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(322), 2, - sym_heredoc_nl, - sym__non_newline_whitespace, - STATE(40), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_path_repeat1, - [1296] = 6, - ACTIONS(234), 1, + ACTIONS(215), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1190] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(310), 4, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + ACTIONS(312), 4, + sym_heredoc_marker, + anon_sym_DASH_DASH, + anon_sym_COMMA, + anon_sym_LBRACK, + [1207] = 6, + ACTIONS(267), 1, anon_sym_DOLLAR2, - ACTIONS(240), 1, - sym_double_quoted_escape_sequence, - ACTIONS(324), 1, + ACTIONS(314), 1, anon_sym_DQUOTE, + ACTIONS(318), 1, + sym_double_quoted_escape_sequence, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(238), 2, + ACTIONS(316), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(47), 3, + STATE(37), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1319] = 7, - ACTIONS(326), 1, + [1230] = 7, + ACTIONS(320), 1, anon_sym_LF, - ACTIONS(328), 1, + ACTIONS(322), 1, aux_sym_label_pair_token1, - ACTIONS(331), 1, + ACTIONS(324), 1, anon_sym_DQUOTE, - ACTIONS(334), 1, + ACTIONS(326), 1, anon_sym_SQUOTE, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(46), 2, + STATE(33), 2, sym_label_pair, aux_sym_label_instruction_repeat1, - STATE(257), 2, + STATE(254), 2, sym_double_quoted_string, sym_single_quoted_string, - [1344] = 6, - ACTIONS(337), 1, + [1255] = 3, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(235), 4, + aux_sym_path_token2, + 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, + [1272] = 6, + ACTIONS(118), 1, anon_sym_DOLLAR2, - ACTIONS(340), 1, - anon_sym_DQUOTE, - ACTIONS(345), 1, - sym_double_quoted_escape_sequence, + ACTIONS(169), 1, + anon_sym_LF, + ACTIONS(171), 1, + aux_sym__env_key_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(342), 2, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - STATE(47), 3, + ACTIONS(328), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH2, + STATE(49), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_double_quoted_string_repeat1, - [1367] = 5, - ACTIONS(308), 1, - anon_sym_DOLLAR2, - ACTIONS(350), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, + aux_sym_unquoted_string_repeat1, + [1295] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(348), 2, + ACTIONS(175), 3, + sym_heredoc_marker, + sym__heredoc_nl, anon_sym_LF, - anon_sym_COLON, - STATE(42), 4, - sym__immediate_user_name_or_group_fragment, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym__user_name_or_group_repeat1, - [1388] = 6, - ACTIONS(234), 1, + ACTIONS(180), 5, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + sym_required_line_continuation, + [1312] = 6, + ACTIONS(267), 1, anon_sym_DOLLAR2, - ACTIONS(352), 1, - anon_sym_DQUOTE, - ACTIONS(356), 1, + ACTIONS(298), 1, sym_double_quoted_escape_sequence, + ACTIONS(330), 1, + anon_sym_DQUOTE, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(354), 2, + ACTIONS(296), 2, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - STATE(29), 3, + STATE(35), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_double_quoted_string_repeat1, - [1411] = 3, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(358), 4, - aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - ACTIONS(360), 4, - sym_heredoc_marker, - anon_sym_DASH_DASH, - anon_sym_COMMA, - anon_sym_LBRACK, - [1428] = 6, - ACTIONS(195), 1, + [1335] = 6, + ACTIONS(175), 1, anon_sym_LF, - ACTIONS(200), 1, + ACTIONS(180), 1, sym_required_line_continuation, - ACTIONS(365), 1, + ACTIONS(335), 1, sym_heredoc_marker, - STATE(51), 1, - aux_sym_shell_fragment_repeat1, + STATE(47), 1, + aux_sym__shell_fragment, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(362), 4, + ACTIONS(332), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1451] = 6, - ACTIONS(234), 1, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1358] = 5, + ACTIONS(254), 1, anon_sym_DOLLAR2, - ACTIONS(368), 1, - anon_sym_DQUOTE, - ACTIONS(372), 1, - sym_double_quoted_escape_sequence, + ACTIONS(340), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(370), 2, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - STATE(30), 3, + ACTIONS(338), 2, + anon_sym_LF, + anon_sym_COLON, + STATE(51), 4, + sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - aux_sym_double_quoted_string_repeat1, - [1474] = 6, - ACTIONS(155), 1, - aux_sym_shell_fragment_token2, - ACTIONS(159), 1, - sym_heredoc_marker, - STATE(35), 1, - aux_sym_shell_fragment_repeat1, - STATE(229), 1, - sym_shell_fragment, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - ACTIONS(153), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1496] = 6, - ACTIONS(374), 1, + aux_sym__user_name_or_group_repeat1, + [1379] = 6, + ACTIONS(153), 1, anon_sym_LF, - ACTIONS(376), 1, - aux_sym_from_instruction_token2, - ACTIONS(378), 1, + ACTIONS(158), 1, + aux_sym__env_key_token1, + ACTIONS(342), 1, anon_sym_DOLLAR2, - ACTIONS(381), 1, - aux_sym_image_digest_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(54), 3, + ACTIONS(345), 2, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH2, + STATE(49), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_digest_repeat1, - [1518] = 6, - ACTIONS(384), 1, + aux_sym_unquoted_string_repeat1, + [1402] = 6, + ACTIONS(267), 1, + anon_sym_DOLLAR2, + ACTIONS(298), 1, + sym_double_quoted_escape_sequence, + ACTIONS(348), 1, + anon_sym_DQUOTE, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(296), 2, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + STATE(35), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_double_quoted_string_repeat1, + [1425] = 5, + ACTIONS(352), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + ACTIONS(355), 1, + anon_sym_DOLLAR2, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(350), 2, anon_sym_LF, - ACTIONS(386), 1, + anon_sym_COLON, + STATE(51), 4, + sym__immediate_user_name_or_group_fragment, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym__user_name_or_group_repeat1, + [1446] = 6, + ACTIONS(358), 1, + anon_sym_LF, + ACTIONS(360), 1, aux_sym_path_token3, - ACTIONS(388), 1, + ACTIONS(363), 1, anon_sym_DOLLAR2, - ACTIONS(390), 1, - sym__non_newline_whitespace, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(61), 3, + ACTIONS(366), 2, + sym__heredoc_nl, + sym__non_newline_whitespace, + STATE(52), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1540] = 6, - ACTIONS(3), 1, + [1469] = 6, + ACTIONS(290), 1, + anon_sym_DOLLAR2, + ACTIONS(368), 1, + anon_sym_LF, + ACTIONS(370), 1, + aux_sym_path_token3, + ACTIONS(5), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(392), 1, - aux_sym_path_token1, - ACTIONS(396), 1, - anon_sym_DASH_DASH, - STATE(56), 2, - sym_param, - aux_sym_add_instruction_repeat1, - ACTIONS(394), 3, - sym_heredoc_marker, - aux_sym_path_with_heredoc_token1, - anon_sym_DOLLAR, - [1562] = 6, - ACTIONS(399), 1, - anon_sym_LF, - ACTIONS(401), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - ACTIONS(404), 1, + ACTIONS(372), 2, + sym__heredoc_nl, + sym__non_newline_whitespace, + STATE(36), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_path_repeat1, + [1492] = 6, + ACTIONS(267), 1, anon_sym_DOLLAR2, - STATE(57), 1, - aux_sym__immediate_user_name_or_group, + ACTIONS(374), 1, + anon_sym_DQUOTE, + ACTIONS(378), 1, + sym_double_quoted_escape_sequence, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(202), 3, - sym__immediate_user_name_or_group_fragment, + ACTIONS(376), 2, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + STATE(50), 3, sym__immediate_expansion, sym__imm_expansion, - [1584] = 9, + aux_sym_double_quoted_string_repeat1, + [1515] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(407), 1, + ACTIONS(380), 1, aux_sym_path_token1, - ACTIONS(409), 1, + ACTIONS(383), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(411), 1, + ACTIONS(386), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(389), 1, sym_heredoc_marker, - STATE(36), 1, - sym_expansion, - STATE(59), 1, + STATE(55), 1, aux_sym_add_instruction_repeat2, - STATE(108), 1, + STATE(80), 1, + sym_expansion, + STATE(250), 1, sym_path_with_heredoc, - [1612] = 9, + [1543] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(415), 1, - aux_sym_path_token1, - ACTIONS(418), 1, - aux_sym_path_with_heredoc_token1, - ACTIONS(421), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(424), 1, - sym_heredoc_marker, - STATE(59), 1, - aux_sym_add_instruction_repeat2, - STATE(86), 1, + ACTIONS(394), 1, + aux_sym_image_name_token1, + ACTIONS(396), 1, + anon_sym_DASH_DASH, + STATE(27), 1, sym_expansion, - STATE(253), 1, - sym_path_with_heredoc, - [1640] = 9, - ACTIONS(3), 1, + STATE(92), 1, + sym_image_name, + STATE(114), 1, + sym_param, + STATE(242), 1, + sym_image_spec, + [1571] = 6, + ACTIONS(398), 1, + aux_sym_label_pair_token1, + ACTIONS(400), 1, + anon_sym_DQUOTE, + ACTIONS(402), 1, + anon_sym_SQUOTE, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(407), 1, - aux_sym_path_token1, - ACTIONS(409), 1, - aux_sym_path_with_heredoc_token1, + STATE(42), 2, + sym_label_pair, + aux_sym_label_instruction_repeat1, + STATE(254), 2, + sym_double_quoted_string, + sym_single_quoted_string, + [1593] = 6, + ACTIONS(404), 1, + anon_sym_LF, + ACTIONS(406), 1, + aux_sym_from_instruction_token2, + ACTIONS(408), 1, + anon_sym_DOLLAR2, ACTIONS(411), 1, - anon_sym_DOLLAR, - ACTIONS(413), 1, - sym_heredoc_marker, - STATE(36), 1, - sym_expansion, - STATE(59), 1, - aux_sym_add_instruction_repeat2, - STATE(112), 1, - sym_path_with_heredoc, - [1668] = 6, - ACTIONS(388), 1, + aux_sym_image_digest_token1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + STATE(58), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [1615] = 6, + ACTIONS(254), 1, anon_sym_DOLLAR2, - ACTIONS(427), 1, + ACTIONS(414), 1, anon_sym_LF, - ACTIONS(429), 1, - aux_sym_path_token3, - ACTIONS(431), 1, - sym__non_newline_whitespace, + ACTIONS(416), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + STATE(62), 1, + aux_sym__immediate_user_name_or_group, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(69), 3, + STATE(174), 3, + sym__immediate_user_name_or_group_fragment, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [1690] = 9, + [1637] = 3, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(418), 2, + anon_sym_LF, + anon_sym_DOLLAR2, + ACTIONS(420), 5, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH2, + [1653] = 3, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(175), 2, + sym_heredoc_marker, + anon_sym_LF, + ACTIONS(180), 5, + aux_sym_path_token2, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + sym_required_line_continuation, + [1669] = 6, + ACTIONS(422), 1, + anon_sym_LF, + ACTIONS(424), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + ACTIONS(427), 1, + anon_sym_DOLLAR2, + STATE(62), 1, + aux_sym__immediate_user_name_or_group, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + STATE(174), 3, + sym__immediate_user_name_or_group_fragment, + sym__immediate_expansion, + sym__imm_expansion, + [1691] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(157), 1, + ACTIONS(197), 1, anon_sym_LBRACK, - ACTIONS(433), 1, + ACTIONS(430), 1, aux_sym_path_token1, - ACTIONS(435), 1, + ACTIONS(432), 1, aux_sym_path_token2, - ACTIONS(437), 1, + ACTIONS(434), 1, anon_sym_DOLLAR, - STATE(55), 1, + STATE(72), 1, sym_expansion, STATE(201), 1, sym_path, - STATE(287), 1, + STATE(246), 1, sym_json_string_array, - [1718] = 9, + [1719] = 3, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(436), 2, + anon_sym_LF, + anon_sym_DOLLAR2, + ACTIONS(438), 5, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH2, + [1735] = 6, + ACTIONS(440), 1, + anon_sym_LF, + ACTIONS(442), 1, + aux_sym_from_instruction_token2, + ACTIONS(444), 1, + anon_sym_DOLLAR2, + ACTIONS(446), 1, + aux_sym_image_digest_token1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + STATE(58), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [1757] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(407), 1, + ACTIONS(448), 1, aux_sym_path_token1, - ACTIONS(409), 1, + ACTIONS(450), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(411), 1, + ACTIONS(452), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(454), 1, sym_heredoc_marker, - STATE(36), 1, + STATE(53), 1, sym_expansion, - STATE(59), 1, + STATE(55), 1, aux_sym_add_instruction_repeat2, - STATE(111), 1, + STATE(113), 1, sym_path_with_heredoc, - [1746] = 9, + [1785] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(407), 1, + ACTIONS(448), 1, aux_sym_path_token1, - ACTIONS(409), 1, + ACTIONS(450), 1, aux_sym_path_with_heredoc_token1, - ACTIONS(411), 1, + ACTIONS(452), 1, anon_sym_DOLLAR, - ACTIONS(413), 1, + ACTIONS(454), 1, sym_heredoc_marker, - STATE(36), 1, + STATE(53), 1, sym_expansion, - STATE(59), 1, + STATE(55), 1, aux_sym_add_instruction_repeat2, - STATE(114), 1, + STATE(108), 1, sym_path_with_heredoc, - [1774] = 3, - ACTIONS(5), 2, + [1813] = 9, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, sym_comment, - ACTIONS(439), 2, + ACTIONS(448), 1, + aux_sym_path_token1, + ACTIONS(450), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(452), 1, + anon_sym_DOLLAR, + ACTIONS(454), 1, + sym_heredoc_marker, + STATE(53), 1, + sym_expansion, + STATE(55), 1, + aux_sym_add_instruction_repeat2, + STATE(107), 1, + sym_path_with_heredoc, + [1841] = 6, + ACTIONS(456), 1, anon_sym_LF, + ACTIONS(458), 1, + aux_sym_path_token3, + ACTIONS(460), 1, anon_sym_DOLLAR2, - ACTIONS(441), 5, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_unquoted_string_token1, - anon_sym_BSLASH2, - [1790] = 6, - ACTIONS(308), 1, - anon_sym_DOLLAR2, - ACTIONS(443), 1, - anon_sym_LF, - ACTIONS(445), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - STATE(57), 1, - aux_sym__immediate_user_name_or_group, + ACTIONS(462), 1, + sym__non_newline_whitespace, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(202), 3, - sym__immediate_user_name_or_group_fragment, + STATE(74), 3, sym__immediate_expansion, sym__imm_expansion, - [1812] = 6, - ACTIONS(114), 1, - sym_heredoc_marker, - ACTIONS(447), 1, - aux_sym_shell_fragment_token2, - STATE(26), 1, - aux_sym_shell_fragment_repeat1, - STATE(173), 1, - sym_shell_fragment, - ACTIONS(3), 2, + aux_sym_path_repeat1, + [1863] = 6, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, sym_comment, - ACTIONS(108), 3, - aux_sym_path_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1834] = 9, + ACTIONS(464), 1, + aux_sym_path_token1, + ACTIONS(468), 1, + anon_sym_DASH_DASH, + STATE(70), 2, + sym_param, + aux_sym_add_instruction_repeat1, + ACTIONS(466), 3, + sym_heredoc_marker, + aux_sym_path_with_heredoc_token1, + anon_sym_DOLLAR, + [1885] = 9, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(449), 1, + ACTIONS(448), 1, + aux_sym_path_token1, + ACTIONS(450), 1, + aux_sym_path_with_heredoc_token1, + ACTIONS(452), 1, anon_sym_DOLLAR, - ACTIONS(451), 1, - aux_sym_image_name_token1, - ACTIONS(453), 1, - anon_sym_DASH_DASH, - STATE(25), 1, + ACTIONS(454), 1, + sym_heredoc_marker, + STATE(53), 1, sym_expansion, - STATE(88), 1, - sym_image_name, - STATE(113), 1, - sym_param, - STATE(242), 1, - sym_image_spec, - [1862] = 6, - ACTIONS(286), 1, + STATE(55), 1, + aux_sym_add_instruction_repeat2, + STATE(110), 1, + sym_path_with_heredoc, + [1913] = 6, + ACTIONS(460), 1, + anon_sym_DOLLAR2, + ACTIONS(471), 1, anon_sym_LF, - ACTIONS(294), 1, - sym__non_newline_whitespace, - ACTIONS(455), 1, + ACTIONS(473), 1, aux_sym_path_token3, - ACTIONS(458), 1, - anon_sym_DOLLAR2, + ACTIONS(475), 1, + sym__non_newline_whitespace, ACTIONS(5), 2, sym_line_continuation, sym_comment, @@ -5311,232 +5325,234 @@ static const uint16_t ts_small_parse_table[] = { sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [1884] = 3, - ACTIONS(5), 2, + [1935] = 3, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(195), 2, + ACTIONS(479), 3, sym_heredoc_marker, - anon_sym_LF, - ACTIONS(200), 5, + anon_sym_DASH_DASH, + anon_sym_LBRACK, + ACTIONS(477), 4, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - sym_required_line_continuation, - [1900] = 6, - ACTIONS(461), 1, - aux_sym_label_pair_token1, - ACTIONS(463), 1, - anon_sym_DQUOTE, - ACTIONS(465), 1, - anon_sym_SQUOTE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(41), 2, - sym_label_pair, - aux_sym_label_instruction_repeat1, - STATE(257), 2, - sym_double_quoted_string, - sym_single_quoted_string, - [1922] = 3, + aux_sym__shell_fragment_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [1951] = 6, + ACTIONS(358), 1, + anon_sym_LF, + ACTIONS(366), 1, + sym__non_newline_whitespace, + ACTIONS(481), 1, + aux_sym_path_token3, + ACTIONS(484), 1, + anon_sym_DOLLAR2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 2, - anon_sym_LF, - anon_sym_DOLLAR2, - ACTIONS(469), 5, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - aux_sym_unquoted_string_token1, - anon_sym_BSLASH2, - [1938] = 6, - ACTIONS(471), 1, + STATE(74), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_path_repeat1, + [1973] = 5, + ACTIONS(462), 1, anon_sym_LF, - ACTIONS(473), 1, - aux_sym_from_instruction_token2, - ACTIONS(475), 1, + ACTIONS(487), 1, + aux_sym_path_token3, + ACTIONS(489), 1, anon_sym_DOLLAR2, - ACTIONS(477), 1, - aux_sym_image_digest_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(54), 3, + STATE(79), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_digest_repeat1, - [1960] = 3, + aux_sym_path_repeat1, + [1992] = 5, + ACTIONS(114), 1, + sym_heredoc_marker, + ACTIONS(493), 1, + aux_sym__shell_fragment_token2, + STATE(24), 1, + aux_sym__shell_fragment, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 3, - sym_heredoc_marker, - anon_sym_DASH_DASH, - anon_sym_LBRACK, - ACTIONS(479), 4, + ACTIONS(491), 3, aux_sym_path_token2, - aux_sym_shell_fragment_token2, - aux_sym_shell_fragment_token3, - aux_sym_shell_fragment_token4, - [1976] = 5, - ACTIONS(308), 1, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [2011] = 5, + ACTIONS(495), 1, + anon_sym_LF, + ACTIONS(497), 1, + aux_sym__stopsignal_value_token2, + ACTIONS(500), 1, anon_sym_DOLLAR2, - ACTIONS(445), 1, - aux_sym__immediate_user_name_or_group_fragment_token1, - STATE(66), 1, - aux_sym__immediate_user_name_or_group, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(202), 3, - sym__immediate_user_name_or_group_fragment, + STATE(77), 3, sym__immediate_expansion, sym__imm_expansion, - [1995] = 6, + aux_sym__stopsignal_value_repeat1, + [2030] = 6, ACTIONS(13), 1, aux_sym_cmd_instruction_token1, - ACTIONS(483), 1, + ACTIONS(503), 1, anon_sym_NONE, - ACTIONS(485), 1, + ACTIONS(505), 1, anon_sym_DASH_DASH, - STATE(284), 1, + STATE(287), 1, sym_cmd_instruction, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(98), 2, + STATE(121), 2, sym_param, aux_sym_add_instruction_repeat1, - [2016] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(489), 2, - aux_sym_from_instruction_token2, - aux_sym_image_name_token2, - ACTIONS(487), 4, - anon_sym_LF, - anon_sym_COLON, - anon_sym_DOLLAR2, - anon_sym_AT, - [2031] = 5, - ACTIONS(491), 1, + [2051] = 5, + ACTIONS(366), 1, anon_sym_LF, - ACTIONS(493), 1, + ACTIONS(507), 1, + aux_sym_path_token3, + ACTIONS(510), 1, anon_sym_DOLLAR2, - ACTIONS(495), 1, - aux_sym_image_alias_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(81), 3, + STATE(79), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_alias_repeat1, - [2050] = 3, + aux_sym_path_repeat1, + [2070] = 5, + ACTIONS(372), 1, + sym__non_newline_whitespace, + ACTIONS(513), 1, + aux_sym_path_token3, + ACTIONS(515), 1, + anon_sym_DOLLAR2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(441), 2, - aux_sym_from_instruction_token2, - aux_sym_image_name_token2, - ACTIONS(439), 4, - anon_sym_LF, - anon_sym_COLON, + STATE(96), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_path_repeat1, + [2089] = 5, + ACTIONS(254), 1, anon_sym_DOLLAR2, - anon_sym_AT, - [2065] = 5, - ACTIONS(390), 1, + ACTIONS(416), 1, + aux_sym__immediate_user_name_or_group_fragment_token1, + STATE(59), 1, + aux_sym__immediate_user_name_or_group, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(174), 3, + sym__immediate_user_name_or_group_fragment, + sym__immediate_expansion, + sym__imm_expansion, + [2108] = 5, + ACTIONS(517), 1, anon_sym_LF, - ACTIONS(497), 1, - aux_sym_path_token3, - ACTIONS(499), 1, + ACTIONS(519), 1, + aux_sym__stopsignal_value_token2, + ACTIONS(521), 1, anon_sym_DOLLAR2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(87), 3, + STATE(77), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [2084] = 5, - ACTIONS(493), 1, - anon_sym_DOLLAR2, - ACTIONS(501), 1, + aux_sym__stopsignal_value_repeat1, + [2127] = 5, + ACTIONS(199), 1, + sym_heredoc_marker, + ACTIONS(525), 1, + aux_sym__shell_fragment_token2, + STATE(39), 1, + aux_sym__shell_fragment, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + ACTIONS(523), 3, + aux_sym_path_token2, + aux_sym__shell_fragment_token3, + aux_sym__shell_fragment_token4, + [2146] = 5, + ACTIONS(527), 1, anon_sym_LF, - ACTIONS(503), 1, + ACTIONS(529), 1, + anon_sym_DOLLAR2, + ACTIONS(531), 1, aux_sym_image_alias_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(94), 3, + STATE(88), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_image_alias_repeat1, - [2103] = 3, + [2165] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(469), 2, + ACTIONS(535), 2, aux_sym_from_instruction_token2, aux_sym_image_name_token2, - ACTIONS(467), 4, + ACTIONS(533), 4, anon_sym_LF, anon_sym_COLON, anon_sym_DOLLAR2, anon_sym_AT, - [2118] = 5, - ACTIONS(505), 1, - anon_sym_LF, - ACTIONS(507), 1, - aux_sym__stopsignal_value_token2, - ACTIONS(510), 1, - anon_sym_DOLLAR2, + [2180] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(83), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2137] = 5, - ACTIONS(513), 1, + ACTIONS(420), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token2, + ACTIONS(418), 4, anon_sym_LF, - ACTIONS(515), 1, - aux_sym__stopsignal_value_token2, - ACTIONS(517), 1, + anon_sym_COLON, anon_sym_DOLLAR2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(83), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2156] = 5, - ACTIONS(519), 1, + anon_sym_AT, + [2195] = 5, + ACTIONS(537), 1, anon_sym_LF, - ACTIONS(521), 1, + ACTIONS(539), 1, anon_sym_DOLLAR, - ACTIONS(523), 1, + ACTIONS(541), 1, aux_sym_expose_port_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(90), 3, + STATE(93), 3, sym_expansion, sym_expose_port, aux_sym_expose_instruction_repeat1, - [2175] = 5, - ACTIONS(266), 1, + [2214] = 5, + ACTIONS(543), 1, + anon_sym_LF, + ACTIONS(545), 1, + anon_sym_DOLLAR2, + ACTIONS(548), 1, + aux_sym_image_alias_token2, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + STATE(88), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_alias_repeat1, + [2233] = 5, + ACTIONS(366), 1, sym__non_newline_whitespace, - ACTIONS(525), 1, + ACTIONS(551), 1, aux_sym_path_token3, - ACTIONS(527), 1, + ACTIONS(554), 1, anon_sym_DOLLAR2, ACTIONS(5), 2, sym_line_continuation, @@ -5545,323 +5561,313 @@ static const uint16_t ts_small_parse_table[] = { sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2194] = 5, - ACTIONS(431), 1, - anon_sym_LF, - ACTIONS(499), 1, + [2252] = 5, + ACTIONS(521), 1, anon_sym_DOLLAR2, - ACTIONS(529), 1, - aux_sym_path_token3, + ACTIONS(557), 1, + anon_sym_LF, + ACTIONS(559), 1, + aux_sym__stopsignal_value_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(93), 3, + STATE(82), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_path_repeat1, - [2213] = 7, - ACTIONS(531), 1, + aux_sym__stopsignal_value_repeat1, + [2271] = 3, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(438), 2, + aux_sym_from_instruction_token2, + aux_sym_image_name_token2, + ACTIONS(436), 4, anon_sym_LF, - ACTIONS(533), 1, + anon_sym_COLON, + anon_sym_DOLLAR2, + anon_sym_AT, + [2286] = 7, + ACTIONS(561), 1, + anon_sym_LF, + ACTIONS(563), 1, aux_sym_from_instruction_token2, - ACTIONS(535), 1, + ACTIONS(565), 1, anon_sym_COLON, - ACTIONS(537), 1, + ACTIONS(567), 1, anon_sym_AT, - STATE(161), 1, + STATE(148), 1, sym_image_tag, - STATE(239), 1, + STATE(219), 1, sym_image_digest, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [2236] = 5, - ACTIONS(322), 1, - sym__non_newline_whitespace, - ACTIONS(527), 1, - anon_sym_DOLLAR2, - ACTIONS(539), 1, - aux_sym_path_token3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(91), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_path_repeat1, - [2255] = 5, - ACTIONS(541), 1, + [2309] = 5, + ACTIONS(569), 1, anon_sym_LF, - ACTIONS(543), 1, + ACTIONS(571), 1, anon_sym_DOLLAR, - ACTIONS(546), 1, + ACTIONS(574), 1, aux_sym_expose_port_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(90), 3, + STATE(93), 3, sym_expansion, sym_expose_port, aux_sym_expose_instruction_repeat1, - [2274] = 5, - ACTIONS(294), 1, - sym__non_newline_whitespace, - ACTIONS(549), 1, - aux_sym_path_token3, - ACTIONS(552), 1, + [2328] = 5, + ACTIONS(475), 1, + anon_sym_LF, + ACTIONS(489), 1, anon_sym_DOLLAR2, + ACTIONS(577), 1, + aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(91), 3, + STATE(75), 3, sym__immediate_expansion, sym__imm_expansion, aux_sym_path_repeat1, - [2293] = 5, - ACTIONS(517), 1, + [2347] = 5, + ACTIONS(529), 1, anon_sym_DOLLAR2, - ACTIONS(555), 1, + ACTIONS(579), 1, anon_sym_LF, - ACTIONS(557), 1, - aux_sym__stopsignal_value_token2, + ACTIONS(581), 1, + aux_sym_image_alias_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, STATE(84), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym__stopsignal_value_repeat1, - [2312] = 5, - ACTIONS(294), 1, - anon_sym_LF, - ACTIONS(559), 1, - aux_sym_path_token3, - ACTIONS(562), 1, - anon_sym_DOLLAR2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(93), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_path_repeat1, - [2331] = 5, - ACTIONS(565), 1, - anon_sym_LF, - ACTIONS(567), 1, + aux_sym_image_alias_repeat1, + [2366] = 5, + ACTIONS(292), 1, + sym__non_newline_whitespace, + ACTIONS(515), 1, anon_sym_DOLLAR2, - ACTIONS(570), 1, - aux_sym_image_alias_token2, + ACTIONS(583), 1, + aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(94), 3, + STATE(89), 3, sym__immediate_expansion, sym__imm_expansion, - aux_sym_image_alias_repeat1, - [2350] = 5, - ACTIONS(575), 1, + aux_sym_path_repeat1, + [2385] = 5, + ACTIONS(587), 1, anon_sym_SQUOTE, - ACTIONS(577), 1, + ACTIONS(589), 1, sym_single_quoted_escape_sequence, - STATE(110), 1, + STATE(126), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(573), 2, + ACTIONS(585), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2368] = 3, + [2403] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 2, + ACTIONS(418), 2, anon_sym_DOLLAR2, sym_double_quoted_escape_sequence, - ACTIONS(469), 3, + ACTIONS(420), 3, anon_sym_DQUOTE, aux_sym_double_quoted_string_token1, anon_sym_BSLASH, - [2382] = 5, - ACTIONS(577), 1, - sym_single_quoted_escape_sequence, - ACTIONS(579), 1, + [2417] = 5, + ACTIONS(591), 1, + aux_sym__env_key_token1, + STATE(217), 1, + sym__env_key, + STATE(253), 1, + sym__spaced_env_pair, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(125), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [2435] = 7, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(593), 1, + aux_sym_path_token1, + ACTIONS(595), 1, + aux_sym_path_token2, + ACTIONS(597), 1, + anon_sym_DOLLAR, + STATE(94), 1, + sym_expansion, + STATE(278), 1, + sym_path, + [2457] = 5, + ACTIONS(601), 1, anon_sym_SQUOTE, - STATE(110), 1, + ACTIONS(603), 1, + sym_single_quoted_escape_sequence, + STATE(112), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(573), 2, + ACTIONS(599), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2400] = 5, - ACTIONS(13), 1, - aux_sym_cmd_instruction_token1, - ACTIONS(485), 1, - anon_sym_DASH_DASH, - STATE(263), 1, - sym_cmd_instruction, - ACTIONS(3), 2, + [2475] = 3, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(156), 2, - sym_param, - aux_sym_add_instruction_repeat1, - [2418] = 5, - ACTIONS(583), 1, + ACTIONS(436), 2, + anon_sym_DOLLAR2, + sym_double_quoted_escape_sequence, + ACTIONS(438), 3, + anon_sym_DQUOTE, + aux_sym_double_quoted_string_token1, + anon_sym_BSLASH, + [2489] = 5, + ACTIONS(607), 1, anon_sym_SQUOTE, - ACTIONS(585), 1, + ACTIONS(609), 1, sym_single_quoted_escape_sequence, - STATE(97), 1, + STATE(101), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(581), 2, + ACTIONS(605), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2436] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(441), 2, - anon_sym_LF, - aux_sym_path_token3, - ACTIONS(439), 3, - sym_heredoc_nl, - anon_sym_DOLLAR2, - sym__non_newline_whitespace, - [2450] = 5, - ACTIONS(577), 1, + [2507] = 5, + ACTIONS(603), 1, sym_single_quoted_escape_sequence, - ACTIONS(587), 1, + ACTIONS(611), 1, anon_sym_SQUOTE, - STATE(110), 1, + STATE(112), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(573), 2, + ACTIONS(599), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2468] = 5, - ACTIONS(589), 1, + [2525] = 5, + ACTIONS(613), 1, + anon_sym_LF, + ACTIONS(615), 1, aux_sym__env_key_token1, - STATE(247), 1, + STATE(264), 1, sym__env_key, - STATE(256), 1, - sym__spaced_env_pair, - ACTIONS(3), 2, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(115), 2, + STATE(105), 2, sym_env_pair, aux_sym_env_instruction_repeat1, - [2486] = 5, - ACTIONS(593), 1, + [2543] = 5, + ACTIONS(620), 1, anon_sym_SQUOTE, - ACTIONS(595), 1, + ACTIONS(622), 1, sym_single_quoted_escape_sequence, - STATE(101), 1, + STATE(104), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(591), 2, + ACTIONS(618), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2504] = 3, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(467), 2, + [2561] = 5, + ACTIONS(624), 1, anon_sym_LF, - anon_sym_DOLLAR2, - ACTIONS(469), 3, - aux_sym__env_key_token1, - aux_sym_unquoted_string_token1, - anon_sym_BSLASH2, - [2518] = 3, + ACTIONS(626), 1, + sym__non_newline_whitespace, + ACTIONS(628), 1, + sym__heredoc_nl, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(489), 2, - anon_sym_LF, - aux_sym_path_token3, - ACTIONS(487), 3, - sym_heredoc_nl, - anon_sym_DOLLAR2, + STATE(139), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [2579] = 5, + ACTIONS(626), 1, sym__non_newline_whitespace, - [2532] = 5, - ACTIONS(597), 1, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(630), 1, anon_sym_LF, - ACTIONS(599), 1, - aux_sym__env_key_token1, - STATE(265), 1, - sym__env_key, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(106), 2, - sym_env_pair, - aux_sym_env_instruction_repeat1, - [2550] = 4, - ACTIONS(3), 1, + STATE(140), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [2597] = 4, + ACTIONS(632), 1, + anon_sym_DOLLAR, + ACTIONS(634), 1, + aux_sym_expose_port_token1, + ACTIONS(3), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(479), 1, - aux_sym_path_token1, - ACTIONS(481), 4, - sym_heredoc_marker, - aux_sym_path_with_heredoc_token1, - anon_sym_DOLLAR, - anon_sym_DASH_DASH, - [2566] = 5, - ACTIONS(602), 1, - anon_sym_LF, - ACTIONS(604), 1, + STATE(87), 3, + sym_expansion, + sym_expose_port, + aux_sym_expose_instruction_repeat1, + [2613] = 5, + ACTIONS(626), 1, sym__non_newline_whitespace, - ACTIONS(606), 1, - sym_heredoc_nl, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(636), 1, + anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(140), 2, + STATE(151), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [2584] = 3, + [2631] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(441), 2, - aux_sym_from_instruction_token2, - aux_sym_image_tag_token1, - ACTIONS(439), 3, + ACTIONS(418), 2, anon_sym_LF, anon_sym_DOLLAR2, - anon_sym_AT, - [2598] = 5, - ACTIONS(611), 1, + ACTIONS(420), 3, + aux_sym__env_key_token1, + aux_sym_unquoted_string_token1, + anon_sym_BSLASH2, + [2645] = 5, + ACTIONS(641), 1, anon_sym_SQUOTE, - ACTIONS(613), 1, + ACTIONS(643), 1, sym_single_quoted_escape_sequence, - STATE(110), 1, + STATE(112), 1, aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(608), 2, + ACTIONS(638), 2, anon_sym_BSLASH, aux_sym_single_quoted_string_token1, - [2616] = 5, - ACTIONS(604), 1, + [2663] = 5, + ACTIONS(626), 1, sym__non_newline_whitespace, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(616), 1, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(646), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, @@ -5869,820 +5875,782 @@ static const uint16_t ts_small_parse_table[] = { STATE(153), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [2634] = 5, - ACTIONS(604), 1, - sym__non_newline_whitespace, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(618), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(139), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2652] = 7, + [2681] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(449), 1, + ACTIONS(392), 1, anon_sym_DOLLAR, - ACTIONS(451), 1, + ACTIONS(394), 1, aux_sym_image_name_token1, - STATE(25), 1, + STATE(27), 1, sym_expansion, - STATE(88), 1, + STATE(92), 1, sym_image_name, - STATE(221), 1, + STATE(220), 1, sym_image_spec, - [2674] = 5, - ACTIONS(604), 1, - sym__non_newline_whitespace, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(620), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(155), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2692] = 5, - ACTIONS(622), 1, - anon_sym_LF, - ACTIONS(624), 1, - aux_sym__env_key_token1, - STATE(265), 1, - sym__env_key, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - STATE(106), 2, - sym_env_pair, - aux_sym_env_instruction_repeat1, - [2710] = 7, + [2703] = 7, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(433), 1, + ACTIONS(430), 1, aux_sym_path_token1, - ACTIONS(435), 1, + ACTIONS(432), 1, aux_sym_path_token2, - ACTIONS(437), 1, + ACTIONS(434), 1, anon_sym_DOLLAR, - STATE(55), 1, + STATE(72), 1, sym_expansion, - STATE(220), 1, + STATE(223), 1, sym_path, - [2732] = 3, + [2725] = 4, + ACTIONS(444), 1, + anon_sym_DOLLAR2, + ACTIONS(648), 1, + aux_sym_image_digest_token1, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + STATE(65), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_digest_repeat1, + [2741] = 5, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(246), 1, + anon_sym_DOLLAR2, + ACTIONS(650), 1, + aux_sym_image_tag_token1, + STATE(31), 3, + sym__immediate_expansion, + sym__imm_expansion, + aux_sym_image_tag_repeat1, + [2759] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(469), 2, + ACTIONS(438), 2, anon_sym_LF, aux_sym_path_token3, - ACTIONS(467), 3, - sym_heredoc_nl, + ACTIONS(436), 3, + sym__heredoc_nl, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [2746] = 7, + [2773] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(626), 1, + ACTIONS(477), 1, aux_sym_path_token1, - ACTIONS(628), 1, - aux_sym_path_token2, - ACTIONS(630), 1, - anon_sym_DOLLAR, - STATE(80), 1, - sym_expansion, - STATE(276), 1, - sym_path, - [2768] = 4, - ACTIONS(632), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(634), 2, + ACTIONS(479), 4, + sym_heredoc_marker, + aux_sym_path_with_heredoc_token1, anon_sym_DOLLAR, - aux_sym_expose_port_token1, - ACTIONS(636), 2, - anon_sym_SLASHtcp, - anon_sym_SLASHudp, - [2784] = 5, - ACTIONS(640), 1, - anon_sym_SQUOTE, - ACTIONS(642), 1, - sym_single_quoted_escape_sequence, - STATE(95), 1, - aux_sym_single_quoted_string_repeat1, + anon_sym_DASH_DASH, + [2789] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(638), 2, - anon_sym_BSLASH, - aux_sym_single_quoted_string_token1, - [2802] = 3, - ACTIONS(5), 2, + ACTIONS(420), 2, + aux_sym_from_instruction_token2, + aux_sym_image_tag_token1, + ACTIONS(418), 3, + anon_sym_LF, + anon_sym_DOLLAR2, + anon_sym_AT, + [2803] = 5, + ACTIONS(13), 1, + aux_sym_cmd_instruction_token1, + ACTIONS(505), 1, + anon_sym_DASH_DASH, + STATE(285), 1, + sym_cmd_instruction, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 2, - anon_sym_DOLLAR2, - sym_double_quoted_escape_sequence, - ACTIONS(441), 3, - anon_sym_DQUOTE, - aux_sym_double_quoted_string_token1, - anon_sym_BSLASH, - [2816] = 3, + STATE(158), 2, + sym_param, + aux_sym_add_instruction_repeat1, + [2821] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 2, + ACTIONS(436), 2, anon_sym_LF, anon_sym_DOLLAR2, - ACTIONS(441), 3, + ACTIONS(438), 3, aux_sym__env_key_token1, aux_sym_unquoted_string_token1, anon_sym_BSLASH2, - [2830] = 4, - ACTIONS(644), 1, - anon_sym_DOLLAR, - ACTIONS(646), 1, - aux_sym_expose_port_token1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - STATE(85), 3, - sym_expansion, - sym_expose_port, - aux_sym_expose_instruction_repeat1, - [2846] = 4, - ACTIONS(475), 1, - anon_sym_DOLLAR2, - ACTIONS(648), 1, - aux_sym_image_digest_token1, - ACTIONS(3), 2, + [2835] = 4, + ACTIONS(652), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(73), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_digest_repeat1, - [2862] = 3, + ACTIONS(654), 2, + anon_sym_DOLLAR, + aux_sym_expose_port_token1, + ACTIONS(656), 2, + anon_sym_SLASHtcp, + anon_sym_SLASHudp, + [2851] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(469), 2, - aux_sym_from_instruction_token2, - aux_sym_image_tag_token1, - ACTIONS(467), 3, + ACTIONS(420), 2, anon_sym_LF, + aux_sym_path_token3, + ACTIONS(418), 3, + sym__heredoc_nl, anon_sym_DOLLAR2, - anon_sym_AT, - [2876] = 5, - ACTIONS(3), 1, + sym__non_newline_whitespace, + [2865] = 5, + ACTIONS(658), 1, + anon_sym_LF, + ACTIONS(660), 1, + aux_sym__env_key_token1, + STATE(264), 1, + sym__env_key, + ACTIONS(5), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(254), 1, - anon_sym_DOLLAR2, - ACTIONS(650), 1, - aux_sym_image_tag_token1, - STATE(34), 3, - sym__immediate_expansion, - sym__imm_expansion, - aux_sym_image_tag_repeat1, - [2894] = 3, + STATE(105), 2, + sym_env_pair, + aux_sym_env_instruction_repeat1, + [2883] = 5, + ACTIONS(603), 1, + sym_single_quoted_escape_sequence, + ACTIONS(662), 1, + anon_sym_SQUOTE, + STATE(112), 1, + aux_sym_single_quoted_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 2, - anon_sym_DOLLAR2, - sym__non_newline_whitespace, - ACTIONS(469), 2, - anon_sym_LF, - aux_sym_path_token3, - [2907] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(652), 1, - anon_sym_LF, + ACTIONS(599), 2, + anon_sym_BSLASH, + aux_sym_single_quoted_string_token1, + [2901] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(154), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [2922] = 4, - ACTIONS(656), 1, - sym_required_line_continuation, - STATE(152), 1, - aux_sym_shell_command_repeat1, + ACTIONS(535), 2, + anon_sym_LF, + aux_sym_path_token3, + ACTIONS(533), 3, + sym__heredoc_nl, + anon_sym_DOLLAR2, + sym__non_newline_whitespace, + [2915] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(654), 2, - sym_heredoc_nl, + ACTIONS(438), 2, + aux_sym_from_instruction_token2, + aux_sym_image_tag_token1, + ACTIONS(436), 3, anon_sym_LF, - [2937] = 3, - ACTIONS(469), 1, + anon_sym_DOLLAR2, + anon_sym_AT, + [2929] = 3, + ACTIONS(438), 1, aux_sym_from_instruction_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 3, + ACTIONS(436), 3, anon_sym_LF, anon_sym_DOLLAR2, aux_sym_image_digest_token1, - [2950] = 5, - ACTIONS(658), 1, - anon_sym_DOLLAR, - ACTIONS(660), 1, - aux_sym_image_alias_token1, - STATE(78), 1, - sym_expansion, - STATE(259), 1, - sym_image_alias, - ACTIONS(3), 2, + [2942] = 3, + ACTIONS(420), 1, + aux_sym_from_instruction_token2, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [2967] = 5, - ACTIONS(658), 1, + ACTIONS(418), 3, + anon_sym_LF, + anon_sym_DOLLAR2, + aux_sym_image_digest_token1, + [2955] = 5, + ACTIONS(664), 1, anon_sym_DOLLAR, - ACTIONS(660), 1, + ACTIONS(666), 1, aux_sym_image_alias_token1, - STATE(78), 1, + STATE(95), 1, sym_expansion, - STATE(293), 1, + STATE(294), 1, sym_image_alias, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [2984] = 3, - ACTIONS(441), 1, - aux_sym_from_instruction_token2, + [2972] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 3, + ACTIONS(418), 4, anon_sym_LF, + anon_sym_COLON, + aux_sym__immediate_user_name_or_group_fragment_token1, anon_sym_DOLLAR2, - aux_sym_image_digest_token1, - [2997] = 4, - ACTIONS(3), 1, + [2983] = 2, + ACTIONS(5), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(662), 1, - aux_sym_path_token1, - ACTIONS(664), 3, - sym_heredoc_marker, - aux_sym_path_with_heredoc_token1, - anon_sym_DOLLAR, - [3012] = 5, - ACTIONS(666), 1, - anon_sym_DQUOTE, + ACTIONS(436), 4, + anon_sym_LF, + anon_sym_COLON, + aux_sym__immediate_user_name_or_group_fragment_token1, + anon_sym_DOLLAR2, + [2994] = 5, ACTIONS(668), 1, - aux_sym_json_string_token1, + anon_sym_DQUOTE, ACTIONS(670), 1, + aux_sym_json_string_token1, + ACTIONS(672), 1, sym_json_escape_sequence, - STATE(143), 1, + STATE(162), 1, aux_sym_json_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3029] = 2, + [3011] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 4, + ACTIONS(533), 4, anon_sym_LF, anon_sym_COLON, aux_sym__immediate_user_name_or_group_fragment_token1, anon_sym_DOLLAR2, - [3040] = 2, + [3022] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 4, - anon_sym_LF, - anon_sym_COLON, - aux_sym__immediate_user_name_or_group_fragment_token1, + ACTIONS(418), 2, anon_sym_DOLLAR2, - [3051] = 3, - ACTIONS(672), 1, + sym__non_newline_whitespace, + ACTIONS(420), 2, anon_sym_LF, + aux_sym_path_token3, + [3035] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(674), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3064] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(676), 1, + ACTIONS(436), 2, + anon_sym_DOLLAR2, + sym__non_newline_whitespace, + ACTIONS(438), 2, + anon_sym_LF, + aux_sym_path_token3, + [3048] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(674), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, + STATE(159), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3079] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(678), 1, + [3063] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(676), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, + STATE(141), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3094] = 2, + [3078] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(678), 1, + anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 4, - anon_sym_LF, - anon_sym_COLON, - aux_sym__immediate_user_name_or_group_fragment_token1, - anon_sym_DOLLAR2, - [3105] = 4, + STATE(141), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3093] = 4, ACTIONS(680), 1, anon_sym_LF, ACTIONS(682), 1, - sym_heredoc_nl, + sym__heredoc_nl, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, + STATE(141), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3120] = 5, - ACTIONS(685), 1, - anon_sym_DQUOTE, - ACTIONS(687), 1, - aux_sym_json_string_token1, - ACTIONS(690), 1, - sym_json_escape_sequence, - STATE(143), 1, - aux_sym_json_string_repeat1, + [3108] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3137] = 4, - ACTIONS(695), 1, + ACTIONS(533), 2, + anon_sym_DOLLAR2, + sym__non_newline_whitespace, + ACTIONS(535), 2, + anon_sym_LF, + aux_sym_path_token3, + [3121] = 4, + ACTIONS(685), 1, sym_required_line_continuation, - STATE(144), 1, + STATE(143), 1, aux_sym_shell_command_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(693), 2, - sym_heredoc_nl, + ACTIONS(211), 2, + sym__heredoc_nl, anon_sym_LF, - [3152] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(698), 1, + [3136] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(688), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, + STATE(141), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3167] = 3, - ACTIONS(700), 1, + [3151] = 3, + ACTIONS(690), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(702), 3, + ACTIONS(692), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - [3180] = 3, - ACTIONS(704), 1, + [3164] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(694), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(706), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3193] = 5, - ACTIONS(708), 1, - aux_sym__stopsignal_value_token1, - ACTIONS(710), 1, + STATE(144), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3179] = 5, + ACTIONS(664), 1, anon_sym_DOLLAR, - STATE(92), 1, + ACTIONS(666), 1, + aux_sym_image_alias_token1, + STATE(95), 1, sym_expansion, - STATE(283), 1, - sym__stopsignal_value, + STATE(257), 1, + sym_image_alias, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3210] = 3, + [3196] = 5, + ACTIONS(567), 1, + anon_sym_AT, + ACTIONS(696), 1, + anon_sym_LF, + ACTIONS(698), 1, + aux_sym_from_instruction_token2, + STATE(245), 1, + sym_image_digest, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 2, - anon_sym_DOLLAR2, - sym__non_newline_whitespace, - ACTIONS(441), 2, + [3213] = 3, + ACTIONS(700), 1, anon_sym_LF, - aux_sym_path_token3, - [3223] = 3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 2, - anon_sym_DOLLAR2, - sym__non_newline_whitespace, - ACTIONS(489), 2, + ACTIONS(702), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [3226] = 3, + ACTIONS(704), 1, anon_sym_LF, - aux_sym_path_token3, - [3236] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(712), 1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(706), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [3239] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(708), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(145), 2, + STATE(141), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3251] = 4, - ACTIONS(656), 1, + [3254] = 4, + ACTIONS(167), 1, sym_required_line_continuation, - STATE(144), 1, + STATE(143), 1, aux_sym_shell_command_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(714), 2, - sym_heredoc_nl, + ACTIONS(710), 2, + sym__heredoc_nl, anon_sym_LF, - [3266] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(716), 1, + [3269] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(712), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, + STATE(141), 2, sym_heredoc_block, aux_sym_run_instruction_repeat2, - [3281] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, - ACTIONS(712), 1, - anon_sym_LF, - ACTIONS(5), 2, + [3284] = 4, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, sym_comment, - STATE(142), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [3296] = 4, - ACTIONS(606), 1, - sym_heredoc_nl, + ACTIONS(714), 1, + aux_sym_path_token1, + ACTIONS(716), 3, + sym_heredoc_marker, + aux_sym_path_with_heredoc_token1, + anon_sym_DOLLAR, + [3299] = 5, ACTIONS(718), 1, + anon_sym_DQUOTE, + ACTIONS(720), 1, + aux_sym_json_string_token1, + ACTIONS(722), 1, + sym_json_escape_sequence, + STATE(134), 1, + aux_sym_json_string_repeat1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + [3316] = 3, + ACTIONS(724), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - STATE(142), 2, - sym_heredoc_block, - aux_sym_run_instruction_repeat2, - [3311] = 4, - ACTIONS(394), 1, + ACTIONS(726), 3, + aux_sym_label_pair_token1, + anon_sym_DQUOTE, + anon_sym_SQUOTE, + [3329] = 5, + ACTIONS(728), 1, + aux_sym__stopsignal_value_token1, + ACTIONS(730), 1, + anon_sym_DOLLAR, + STATE(90), 1, + sym_expansion, + STATE(247), 1, + sym__stopsignal_value, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3346] = 4, + ACTIONS(466), 1, aux_sym_cmd_instruction_token1, - ACTIONS(720), 1, + ACTIONS(732), 1, anon_sym_DASH_DASH, ACTIONS(3), 2, sym_line_continuation, sym_comment, - STATE(156), 2, + STATE(158), 2, sym_param, aux_sym_add_instruction_repeat1, - [3326] = 5, - ACTIONS(723), 1, + [3361] = 4, + ACTIONS(628), 1, + sym__heredoc_nl, + ACTIONS(694), 1, + anon_sym_LF, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + STATE(141), 2, + sym_heredoc_block, + aux_sym_run_instruction_repeat2, + [3376] = 5, + ACTIONS(735), 1, aux_sym__user_name_or_group_token1, - ACTIONS(725), 1, + ACTIONS(737), 1, anon_sym_DOLLAR, - STATE(48), 1, + STATE(32), 1, sym_expansion, - STATE(243), 1, + STATE(240), 1, sym__user_name_or_group, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3343] = 5, - ACTIONS(727), 1, - anon_sym_DQUOTE, - ACTIONS(729), 1, - aux_sym_json_string_token1, - ACTIONS(731), 1, - sym_json_escape_sequence, - STATE(135), 1, - aux_sym_json_string_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [3360] = 3, - ACTIONS(733), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(735), 3, - aux_sym_label_pair_token1, - anon_sym_DQUOTE, - anon_sym_SQUOTE, - [3373] = 3, - ACTIONS(737), 1, + [3393] = 3, + ACTIONS(739), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(739), 3, + ACTIONS(741), 3, aux_sym_label_pair_token1, anon_sym_DQUOTE, anon_sym_SQUOTE, - [3386] = 5, - ACTIONS(537), 1, - anon_sym_AT, - ACTIONS(741), 1, - anon_sym_LF, + [3406] = 5, ACTIONS(743), 1, - aux_sym_from_instruction_token2, - STATE(246), 1, - sym_image_digest, + anon_sym_DQUOTE, + ACTIONS(745), 1, + aux_sym_json_string_token1, + ACTIONS(748), 1, + sym_json_escape_sequence, + STATE(162), 1, + aux_sym_json_string_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3403] = 2, + [3423] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 3, + ACTIONS(533), 3, anon_sym_LF, aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3413] = 2, + [3433] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 3, + ACTIONS(418), 3, anon_sym_LF, aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3423] = 4, - ACTIONS(745), 1, + [3443] = 4, + ACTIONS(751), 1, anon_sym_LBRACE, - ACTIONS(747), 1, + ACTIONS(753), 1, sym_variable, - STATE(194), 1, + STATE(195), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3437] = 4, - ACTIONS(749), 1, + [3457] = 4, + ACTIONS(755), 1, anon_sym_LBRACE, - ACTIONS(751), 1, + ACTIONS(757), 1, sym_variable, - STATE(100), 1, + STATE(118), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3451] = 4, - ACTIONS(753), 1, + [3471] = 4, + ACTIONS(759), 1, anon_sym_LBRACE, - ACTIONS(755), 1, + ACTIONS(761), 1, sym_variable, STATE(122), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3465] = 4, - ACTIONS(757), 1, - anon_sym_LBRACE, - ACTIONS(759), 1, - sym_variable, - STATE(65), 1, - sym__expansion_body, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3479] = 4, - ACTIONS(761), 1, - anon_sym_LF, + [3485] = 4, ACTIONS(763), 1, + anon_sym_LF, + ACTIONS(765), 1, sym__non_newline_whitespace, STATE(168), 1, aux_sym_volume_instruction_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3493] = 4, - ACTIONS(745), 1, - anon_sym_LBRACE, - ACTIONS(766), 1, - sym_variable, - STATE(200), 1, - sym__expansion_body, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3507] = 4, + [3499] = 4, ACTIONS(768), 1, anon_sym_LBRACE, ACTIONS(770), 1, sym_variable, - STATE(133), 1, + STATE(64), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3521] = 4, - ACTIONS(749), 1, + [3513] = 4, + ACTIONS(751), 1, anon_sym_LBRACE, ACTIONS(772), 1, sym_variable, - STATE(105), 1, + STATE(200), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3535] = 4, + [3527] = 4, ACTIONS(774), 1, anon_sym_LBRACE, ACTIONS(776), 1, sym_variable, - STATE(109), 1, + STATE(129), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3549] = 3, - ACTIONS(778), 1, - sym_required_line_continuation, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(693), 2, - sym_heredoc_nl, - anon_sym_LF, - [3561] = 4, - ACTIONS(780), 1, + [3541] = 4, + ACTIONS(755), 1, anon_sym_LBRACE, - ACTIONS(782), 1, + ACTIONS(778), 1, sym_variable, - STATE(205), 1, + STATE(127), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3575] = 4, + [3555] = 4, ACTIONS(780), 1, anon_sym_LBRACE, - ACTIONS(784), 1, + ACTIONS(782), 1, sym_variable, - STATE(162), 1, + STATE(128), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3589] = 4, + [3569] = 2, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(784), 3, + anon_sym_LF, + aux_sym__immediate_user_name_or_group_fragment_token1, + anon_sym_DOLLAR2, + [3579] = 4, ACTIONS(786), 1, anon_sym_LBRACE, ACTIONS(788), 1, sym_variable, - STATE(211), 1, + STATE(163), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3603] = 4, + [3593] = 4, ACTIONS(786), 1, anon_sym_LBRACE, ACTIONS(790), 1, sym_variable, - STATE(208), 1, + STATE(204), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3617] = 4, + [3607] = 4, ACTIONS(792), 1, anon_sym_COMMA2, ACTIONS(795), 1, anon_sym_RBRACK, - STATE(178), 1, + STATE(177), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3631] = 4, + [3621] = 4, ACTIONS(797), 1, anon_sym_LBRACE, ACTIONS(799), 1, sym_variable, - STATE(141), 1, + STATE(209), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3645] = 4, + [3635] = 4, ACTIONS(797), 1, anon_sym_LBRACE, ACTIONS(801), 1, sym_variable, - STATE(137), 1, + STATE(207), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3659] = 4, + [3649] = 4, ACTIONS(803), 1, - sym_heredoc_line, + sym__heredoc_line, ACTIONS(806), 1, sym_heredoc_end, - STATE(181), 1, + STATE(180), 1, aux_sym_heredoc_block_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3673] = 4, + [3663] = 4, ACTIONS(808), 1, anon_sym_LBRACE, ACTIONS(810), 1, sym_variable, - STATE(150), 1, + STATE(135), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3687] = 4, + [3677] = 4, + ACTIONS(808), 1, + anon_sym_LBRACE, ACTIONS(812), 1, - sym_heredoc_line, + sym_variable, + STATE(133), 1, + sym__expansion_body, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3691] = 4, ACTIONS(814), 1, + sym__heredoc_line, + ACTIONS(816), 1, sym_heredoc_end, - STATE(181), 1, + STATE(180), 1, aux_sym_heredoc_block_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3701] = 4, - ACTIONS(808), 1, + [3705] = 4, + ACTIONS(818), 1, anon_sym_LBRACE, - ACTIONS(816), 1, + ACTIONS(820), 1, sym_variable, - STATE(149), 1, + STATE(142), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3715] = 4, + [3719] = 4, ACTIONS(818), 1, anon_sym_LBRACE, - ACTIONS(820), 1, + ACTIONS(822), 1, sym_variable, - STATE(215), 1, + STATE(137), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3729] = 4, - ACTIONS(822), 1, - anon_sym_COMMA2, + [3733] = 4, ACTIONS(824), 1, - anon_sym_RBRACK, - STATE(178), 1, - aux_sym_json_string_array_repeat1, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [3743] = 4, - ACTIONS(818), 1, anon_sym_LBRACE, ACTIONS(826), 1, sym_variable, @@ -6691,311 +6659,314 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3757] = 4, - ACTIONS(822), 1, - anon_sym_COMMA2, + [3747] = 4, + ACTIONS(824), 1, + anon_sym_LBRACE, ACTIONS(828), 1, - anon_sym_RBRACK, - STATE(178), 1, - aux_sym_json_string_array_repeat1, + sym_variable, + STATE(213), 1, + sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3771] = 4, + [3761] = 4, ACTIONS(830), 1, - anon_sym_LBRACE, + anon_sym_COMMA2, ACTIONS(832), 1, - sym_variable, - STATE(77), 1, - sym__expansion_body, + anon_sym_RBRACK, + STATE(177), 1, + aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3785] = 4, - ACTIONS(822), 1, + [3775] = 4, + ACTIONS(830), 1, anon_sym_COMMA2, ACTIONS(834), 1, anon_sym_RBRACK, - STATE(188), 1, + STATE(177), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3799] = 4, + [3789] = 4, ACTIONS(836), 1, - anon_sym_RBRACK, + anon_sym_LBRACE, ACTIONS(838), 1, - anon_sym_DQUOTE, - STATE(190), 1, - sym_json_string, + sym_variable, + STATE(85), 1, + sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3813] = 4, + [3803] = 4, + ACTIONS(830), 1, + anon_sym_COMMA2, ACTIONS(840), 1, - anon_sym_LBRACE, - ACTIONS(842), 1, - sym_variable, - STATE(198), 1, - sym__expansion_body, + anon_sym_RBRACK, + STATE(189), 1, + aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3827] = 4, - ACTIONS(654), 1, - anon_sym_LF, + [3817] = 4, + ACTIONS(842), 1, + anon_sym_RBRACK, ACTIONS(844), 1, - sym_required_line_continuation, - STATE(203), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [3841] = 2, - ACTIONS(5), 2, + anon_sym_DQUOTE, + STATE(191), 1, + sym_json_string, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 3, - anon_sym_LF, - anon_sym_DOLLAR2, - aux_sym_image_alias_token2, - [3851] = 3, - ACTIONS(260), 1, + [3831] = 3, + ACTIONS(368), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(266), 2, - sym_heredoc_nl, + ACTIONS(372), 2, + sym__heredoc_nl, sym__non_newline_whitespace, - [3863] = 4, - ACTIONS(838), 1, - anon_sym_DQUOTE, + [3843] = 4, ACTIONS(846), 1, - anon_sym_RBRACK, - STATE(210), 1, - sym_json_string, + anon_sym_LBRACE, + ACTIONS(848), 1, + sym_variable, + STATE(196), 1, + sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3877] = 2, + [3857] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 3, + ACTIONS(436), 3, anon_sym_LF, anon_sym_DOLLAR2, aux_sym_image_alias_token2, - [3887] = 3, - ACTIONS(487), 1, + [3867] = 3, + ACTIONS(533), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(489), 2, + ACTIONS(535), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - [3899] = 4, - ACTIONS(848), 1, - anon_sym_LBRACE, + [3879] = 4, ACTIONS(850), 1, + anon_sym_LBRACE, + ACTIONS(852), 1, sym_variable, - STATE(121), 1, + STATE(102), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [3913] = 2, + [3893] = 4, + ACTIONS(844), 1, + anon_sym_DQUOTE, + ACTIONS(854), 1, + anon_sym_RBRACK, + STATE(210), 1, + sym_json_string, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [3907] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 3, + ACTIONS(418), 3, anon_sym_LF, anon_sym_DOLLAR2, aux_sym_image_alias_token2, - [3923] = 4, - ACTIONS(852), 1, - anon_sym_LF, - ACTIONS(854), 1, - sym__non_newline_whitespace, - STATE(204), 1, - aux_sym_volume_instruction_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [3937] = 2, + [3917] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(856), 3, + ACTIONS(533), 3, anon_sym_LF, - aux_sym__immediate_user_name_or_group_fragment_token1, anon_sym_DOLLAR2, - [3947] = 4, - ACTIONS(714), 1, + aux_sym_image_alias_token2, + [3927] = 4, + ACTIONS(856), 1, anon_sym_LF, - ACTIONS(844), 1, + ACTIONS(858), 1, + sym__non_newline_whitespace, + STATE(203), 1, + aux_sym_volume_instruction_repeat1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + [3941] = 4, + ACTIONS(217), 1, sym_required_line_continuation, - STATE(213), 1, + ACTIONS(710), 1, + anon_sym_LF, + STATE(211), 1, aux_sym_shell_command_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3961] = 4, - ACTIONS(854), 1, - sym__non_newline_whitespace, + [3955] = 4, ACTIONS(858), 1, + sym__non_newline_whitespace, + ACTIONS(860), 1, anon_sym_LF, STATE(168), 1, aux_sym_volume_instruction_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [3975] = 2, + [3969] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 3, + ACTIONS(436), 3, anon_sym_LF, aux_sym__stopsignal_value_token2, anon_sym_DOLLAR2, - [3985] = 3, - ACTIONS(860), 1, + [3979] = 3, + ACTIONS(862), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(862), 2, + ACTIONS(864), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - [3997] = 3, - ACTIONS(469), 1, + [3991] = 3, + ACTIONS(420), 1, aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 2, + ACTIONS(418), 2, anon_sym_LF, anon_sym_DOLLAR2, - [4009] = 3, - ACTIONS(441), 1, + [4003] = 3, + ACTIONS(438), 1, aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 2, + ACTIONS(436), 2, anon_sym_LF, anon_sym_DOLLAR2, - [4021] = 4, - ACTIONS(812), 1, - sym_heredoc_line, - ACTIONS(864), 1, + [4015] = 4, + ACTIONS(814), 1, + sym__heredoc_line, + ACTIONS(866), 1, sym_heredoc_end, STATE(183), 1, aux_sym_heredoc_block_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4035] = 4, - ACTIONS(822), 1, + [4029] = 3, + ACTIONS(535), 1, + aux_sym_path_token3, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + ACTIONS(533), 2, + anon_sym_LF, + anon_sym_DOLLAR2, + [4041] = 4, + ACTIONS(830), 1, anon_sym_COMMA2, - ACTIONS(866), 1, + ACTIONS(868), 1, anon_sym_RBRACK, - STATE(186), 1, + STATE(188), 1, aux_sym_json_string_array_repeat1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4049] = 3, - ACTIONS(489), 1, - aux_sym_path_token3, + [4055] = 4, + ACTIONS(211), 1, + anon_sym_LF, + ACTIONS(870), 1, + sym_required_line_continuation, + STATE(211), 1, + aux_sym_shell_command_repeat1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 2, - anon_sym_LF, - anon_sym_DOLLAR2, - [4061] = 3, - ACTIONS(469), 1, + [4069] = 3, + ACTIONS(420), 1, aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(467), 2, + ACTIONS(418), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [4073] = 4, - ACTIONS(693), 1, - anon_sym_LF, - ACTIONS(868), 1, - sym_required_line_continuation, - STATE(213), 1, - aux_sym_shell_command_repeat1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4087] = 3, - ACTIONS(441), 1, + [4081] = 3, + ACTIONS(438), 1, aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(439), 2, + ACTIONS(436), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [4099] = 3, - ACTIONS(489), 1, + [4093] = 3, + ACTIONS(535), 1, aux_sym_path_token3, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(487), 2, + ACTIONS(533), 2, anon_sym_DOLLAR2, sym__non_newline_whitespace, - [4111] = 4, - ACTIONS(830), 1, + [4105] = 4, + ACTIONS(836), 1, anon_sym_LBRACE, - ACTIONS(871), 1, + ACTIONS(873), 1, sym_variable, - STATE(79), 1, + STATE(91), 1, sym__expansion_body, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4125] = 3, - ACTIONS(467), 1, + [4119] = 3, + ACTIONS(418), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(469), 2, + ACTIONS(420), 2, anon_sym_DOLLAR, aux_sym_expose_port_token1, - [4137] = 3, - ACTIONS(873), 1, - aux_sym_param_token1, + [4131] = 3, ACTIONS(875), 1, - anon_sym_mount, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [4148] = 3, + anon_sym_EQ, ACTIONS(877), 1, - anon_sym_LF, - ACTIONS(879), 1, - aux_sym__env_key_token1, + aux_sym__spaced_env_pair_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4159] = 3, - ACTIONS(761), 1, + [4142] = 4, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(477), 1, + aux_sym_image_name_token1, + ACTIONS(479), 1, + anon_sym_DOLLAR, + [4155] = 3, + ACTIONS(879), 1, anon_sym_LF, ACTIONS(881), 1, - sym__non_newline_whitespace, + aux_sym_from_instruction_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4170] = 3, + [4166] = 3, ACTIONS(883), 1, anon_sym_LF, ACTIONS(885), 1, @@ -7003,24 +6974,31 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4181] = 4, - ACTIONS(3), 1, + [4177] = 3, + ACTIONS(724), 1, + anon_sym_LF, + ACTIONS(726), 1, + aux_sym__env_key_token1, + ACTIONS(5), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(479), 1, - aux_sym_image_name_token1, - ACTIONS(481), 1, - anon_sym_DOLLAR, - [4194] = 3, - ACTIONS(672), 1, + [4188] = 3, + ACTIONS(739), 1, anon_sym_LF, - ACTIONS(674), 1, + ACTIONS(741), 1, aux_sym__env_key_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4205] = 3, + [4199] = 3, + ACTIONS(763), 1, + anon_sym_LF, + ACTIONS(887), 1, + sym__non_newline_whitespace, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + [4210] = 3, ACTIONS(704), 1, anon_sym_LF, ACTIONS(706), 1, @@ -7028,645 +7006,629 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4216] = 2, + [4221] = 3, + ACTIONS(700), 1, + anon_sym_LF, + ACTIONS(702), 1, + aux_sym__env_key_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(887), 2, - sym_heredoc_nl, + [4232] = 3, + ACTIONS(889), 1, anon_sym_LF, - [4225] = 3, - ACTIONS(733), 1, - anon_sym_LF, - ACTIONS(735), 1, + ACTIONS(891), 1, aux_sym__env_key_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4236] = 3, - ACTIONS(737), 1, - anon_sym_LF, - ACTIONS(739), 1, - aux_sym__env_key_token1, + [4243] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4247] = 2, + ACTIONS(893), 2, + sym__heredoc_nl, + anon_sym_LF, + [4252] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(889), 2, + ACTIONS(895), 2, anon_sym_COMMA2, anon_sym_RBRACK, - [4256] = 3, - ACTIONS(693), 1, - anon_sym_LF, - ACTIONS(778), 1, - sym_required_line_continuation, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4267] = 2, + [4261] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, ACTIONS(795), 2, anon_sym_COMMA2, anon_sym_RBRACK, - [4276] = 2, + [4270] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(891), 2, - sym_heredoc_nl, + ACTIONS(897), 2, + sym__heredoc_nl, anon_sym_LF, - [4285] = 2, + [4279] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, ACTIONS(806), 2, - sym_heredoc_line, + sym__heredoc_line, sym_heredoc_end, - [4294] = 2, + [4288] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - ACTIONS(893), 2, - sym_heredoc_nl, - anon_sym_LF, - [4303] = 2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(895), 2, - sym_heredoc_nl, + ACTIONS(899), 2, + sym__heredoc_nl, anon_sym_LF, - [4312] = 2, + [4297] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(481), 2, + ACTIONS(479), 2, aux_sym_cmd_instruction_token1, anon_sym_DASH_DASH, - [4321] = 3, - ACTIONS(157), 1, - anon_sym_LBRACK, - STATE(286), 1, - sym_json_string_array, - ACTIONS(3), 2, + [4306] = 2, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4332] = 3, - ACTIONS(897), 1, + ACTIONS(901), 2, + sym__heredoc_nl, + anon_sym_LF, + [4315] = 3, + ACTIONS(903), 1, anon_sym_LF, - ACTIONS(899), 1, + ACTIONS(905), 1, anon_sym_EQ, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4343] = 4, + [4326] = 3, + ACTIONS(197), 1, + anon_sym_LBRACK, + STATE(288), 1, + sym_json_string_array, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4337] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(901), 1, + ACTIONS(907), 1, aux_sym_mount_param_param_token1, - STATE(31), 1, + STATE(43), 1, sym_mount_param_param, - [4356] = 3, - ACTIONS(903), 1, - anon_sym_LF, - ACTIONS(905), 1, - aux_sym_from_instruction_token2, + [4350] = 2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4367] = 2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - ACTIONS(907), 2, - sym_heredoc_nl, + ACTIONS(909), 2, + sym__heredoc_nl, anon_sym_LF, - [4376] = 3, - ACTIONS(838), 1, + [4359] = 3, + ACTIONS(844), 1, anon_sym_DQUOTE, - STATE(230), 1, + STATE(229), 1, sym_json_string, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4387] = 3, - ACTIONS(909), 1, - anon_sym_LF, + [4370] = 3, ACTIONS(911), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4398] = 3, - ACTIONS(913), 1, anon_sym_LF, - ACTIONS(915), 1, + ACTIONS(913), 1, anon_sym_COLON, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4409] = 2, + [4381] = 2, ACTIONS(3), 2, sym_line_continuation, sym_comment, - ACTIONS(917), 2, + ACTIONS(915), 2, anon_sym_COMMA2, anon_sym_RBRACK, - [4418] = 4, + [4390] = 3, + ACTIONS(917), 1, + anon_sym_LF, + ACTIONS(919), 1, + aux_sym_from_instruction_token2, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + [4401] = 4, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(901), 1, + ACTIONS(907), 1, aux_sym_mount_param_param_token1, - STATE(21), 1, + STATE(26), 1, sym_mount_param_param, - [4431] = 3, - ACTIONS(919), 1, - anon_sym_LF, + [4414] = 3, ACTIONS(921), 1, - aux_sym_from_instruction_token2, - ACTIONS(5), 2, + aux_sym_param_token1, + ACTIONS(923), 1, + anon_sym_mount, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4442] = 3, - ACTIONS(923), 1, - anon_sym_EQ, + [4425] = 3, ACTIONS(925), 1, - aux_sym__spaced_env_pair_token1, + anon_sym_LF, + ACTIONS(927), 1, + aux_sym_from_instruction_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4453] = 3, - ACTIONS(3), 1, - sym_line_continuation, - ACTIONS(5), 1, - sym_comment, - ACTIONS(927), 1, - aux_sym_param_token2, - [4463] = 2, + [4436] = 2, ACTIONS(929), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4471] = 2, - ACTIONS(887), 1, + [4444] = 2, + ACTIONS(931), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4479] = 2, - ACTIONS(931), 1, + [4452] = 2, + ACTIONS(933), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4487] = 2, - ACTIONS(933), 1, + [4460] = 2, + ACTIONS(935), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4495] = 2, - ACTIONS(604), 1, + [4468] = 2, + ACTIONS(626), 1, sym__non_newline_whitespace, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4503] = 2, - ACTIONS(266), 1, + [4476] = 2, + ACTIONS(372), 1, sym__non_newline_whitespace, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4511] = 3, - ACTIONS(3), 1, + [4484] = 2, + ACTIONS(893), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, - ACTIONS(5), 1, sym_comment, - ACTIONS(935), 1, - aux_sym_param_token2, - [4521] = 2, + [4492] = 2, ACTIONS(937), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4529] = 2, + [4500] = 2, ACTIONS(939), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4537] = 2, + [4508] = 2, ACTIONS(941), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4545] = 2, - ACTIONS(943), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4516] = 3, + ACTIONS(3), 1, sym_line_continuation, + ACTIONS(5), 1, sym_comment, - [4553] = 2, + ACTIONS(943), 1, + aux_sym_param_token2, + [4526] = 2, ACTIONS(945), 1, - aux_sym_shell_fragment_token1, + anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4561] = 2, + [4534] = 2, ACTIONS(947), 1, - aux_sym_shell_fragment_token1, + aux_sym__shell_fragment_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4569] = 2, + [4542] = 2, ACTIONS(949), 1, - anon_sym_EQ, - ACTIONS(3), 2, + aux_sym__shell_fragment_token1, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4577] = 2, - ACTIONS(951), 1, + [4550] = 2, + ACTIONS(897), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4585] = 2, + [4558] = 2, + ACTIONS(951), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4566] = 2, ACTIONS(953), 1, aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4593] = 2, - ACTIONS(923), 1, - anon_sym_EQ, - ACTIONS(3), 2, + [4574] = 2, + ACTIONS(955), 1, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4601] = 2, - ACTIONS(704), 1, + [4582] = 2, + ACTIONS(875), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4609] = 2, - ACTIONS(955), 1, + [4590] = 2, + ACTIONS(957), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4617] = 2, - ACTIONS(957), 1, + [4598] = 2, + ACTIONS(959), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4625] = 2, - ACTIONS(672), 1, + [4606] = 3, + ACTIONS(3), 1, + sym_line_continuation, + ACTIONS(5), 1, + sym_comment, + ACTIONS(961), 1, + aux_sym_param_token2, + [4616] = 2, + ACTIONS(739), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4633] = 2, - ACTIONS(907), 1, - anon_sym_LF, - ACTIONS(5), 2, + [4624] = 2, + ACTIONS(724), 1, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4641] = 3, + [4632] = 3, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, - ACTIONS(959), 1, - aux_sym_mount_param_param_token1, - [4651] = 2, - ACTIONS(961), 1, - anon_sym_LF, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4659] = 2, ACTIONS(963), 1, + aux_sym_mount_param_param_token1, + [4642] = 2, + ACTIONS(965), 1, ts_builtin_sym_end, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4667] = 2, - ACTIONS(965), 1, + [4650] = 2, + ACTIONS(967), 1, aux_sym_maintainer_instruction_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4675] = 2, - ACTIONS(967), 1, + [4658] = 2, + ACTIONS(969), 1, aux_sym_maintainer_instruction_token2, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4683] = 2, - ACTIONS(969), 1, + [4666] = 2, + ACTIONS(909), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4691] = 2, + [4674] = 2, ACTIONS(971), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4699] = 3, + [4682] = 3, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, ACTIONS(973), 1, aux_sym_param_token2, - [4709] = 2, + [4692] = 2, ACTIONS(975), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4717] = 2, + [4700] = 2, ACTIONS(977), 1, - aux_sym_arg_instruction_token2, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4725] = 2, + [4708] = 2, ACTIONS(979), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4733] = 3, + [4716] = 3, ACTIONS(3), 1, sym_line_continuation, ACTIONS(5), 1, sym_comment, ACTIONS(981), 1, aux_sym_param_token2, - [4743] = 2, + [4726] = 2, ACTIONS(983), 1, - anon_sym_LF, - ACTIONS(5), 2, + aux_sym_arg_instruction_token2, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4751] = 2, + [4734] = 2, ACTIONS(985), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4759] = 2, + [4742] = 2, ACTIONS(987), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4767] = 2, + [4750] = 2, ACTIONS(989), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4775] = 2, + [4758] = 2, ACTIONS(991), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4783] = 2, + [4766] = 2, ACTIONS(993), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4791] = 2, - ACTIONS(733), 1, - anon_sym_EQ, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [4799] = 2, + [4774] = 2, ACTIONS(995), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4807] = 2, + [4782] = 2, ACTIONS(997), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4815] = 2, + [4790] = 2, ACTIONS(999), 1, - anon_sym_EQ, + anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4823] = 2, + [4798] = 2, ACTIONS(1001), 1, anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4831] = 2, + [4806] = 2, ACTIONS(1003), 1, - anon_sym_RBRACE, - ACTIONS(3), 2, - sym_line_continuation, - sym_comment, - [4839] = 2, - ACTIONS(737), 1, - anon_sym_EQ, - ACTIONS(3), 2, + anon_sym_LF, + ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4847] = 2, + [4814] = 2, ACTIONS(1005), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_RBRACE, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4855] = 2, + [4822] = 2, ACTIONS(1007), 1, - anon_sym_RBRACE, + anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4863] = 2, + [4830] = 2, ACTIONS(1009), 1, - aux_sym__expansion_body_token1, + anon_sym_LF, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4871] = 2, + [4838] = 2, ACTIONS(1011), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4879] = 2, - ACTIONS(1013), 1, + [4846] = 2, + ACTIONS(704), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4887] = 2, - ACTIONS(1015), 1, + [4854] = 2, + ACTIONS(1013), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4895] = 2, - ACTIONS(891), 1, - anon_sym_LF, + [4862] = 2, + ACTIONS(1015), 1, + aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4903] = 2, + [4870] = 2, ACTIONS(1017), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4911] = 2, + [4878] = 2, ACTIONS(1019), 1, - anon_sym_LF, - ACTIONS(5), 2, + anon_sym_EQ, + ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4919] = 2, + [4886] = 2, ACTIONS(1021), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4927] = 2, + [4894] = 2, + ACTIONS(700), 1, + anon_sym_EQ, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4902] = 2, ACTIONS(1023), 1, anon_sym_RBRACE, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4935] = 2, + [4910] = 2, ACTIONS(1025), 1, + anon_sym_RBRACE, + ACTIONS(3), 2, + sym_line_continuation, + sym_comment, + [4918] = 2, + ACTIONS(1027), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4943] = 2, - ACTIONS(1027), 1, + [4926] = 2, + ACTIONS(1029), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4951] = 2, - ACTIONS(1029), 1, + [4934] = 2, + ACTIONS(1031), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4959] = 2, - ACTIONS(1031), 1, + [4942] = 2, + ACTIONS(1033), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4967] = 2, - ACTIONS(1033), 1, + [4950] = 2, + ACTIONS(1035), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4975] = 2, - ACTIONS(1035), 1, + [4958] = 2, + ACTIONS(1037), 1, anon_sym_EQ, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [4983] = 2, - ACTIONS(1037), 1, - aux_sym__expansion_body_token1, - ACTIONS(5), 2, - sym_line_continuation, - sym_comment, - [4991] = 2, + [4966] = 2, ACTIONS(1039), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [4999] = 2, + [4974] = 2, ACTIONS(1041), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5007] = 2, + [4982] = 2, ACTIONS(1043), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5015] = 2, + [4990] = 2, ACTIONS(1045), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5023] = 2, + [4998] = 2, ACTIONS(1047), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5031] = 2, + [5006] = 2, ACTIONS(1049), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5039] = 2, + [5014] = 2, ACTIONS(1051), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5047] = 2, + [5022] = 2, ACTIONS(1053), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5055] = 2, + [5030] = 2, ACTIONS(1055), 1, aux_sym__expansion_body_token1, ACTIONS(5), 2, sym_line_continuation, sym_comment, - [5063] = 2, + [5038] = 2, ACTIONS(1057), 1, + aux_sym__expansion_body_token1, + ACTIONS(5), 2, + sym_line_continuation, + sym_comment, + [5046] = 2, + ACTIONS(1059), 1, aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, sym_comment, - [5071] = 2, - ACTIONS(1059), 1, + [5054] = 2, + ACTIONS(1061), 1, aux_sym_param_token1, ACTIONS(3), 2, sym_line_continuation, @@ -7679,324 +7641,322 @@ 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)] = 508, - [SMALL_STATE(14)] = 543, - [SMALL_STATE(15)] = 578, + [SMALL_STATE(7)] = 323, + [SMALL_STATE(8)] = 355, + [SMALL_STATE(9)] = 389, + [SMALL_STATE(10)] = 419, + [SMALL_STATE(11)] = 449, + [SMALL_STATE(12)] = 479, + [SMALL_STATE(13)] = 514, + [SMALL_STATE(14)] = 549, + [SMALL_STATE(15)] = 572, [SMALL_STATE(16)] = 607, - [SMALL_STATE(17)] = 636, - [SMALL_STATE(18)] = 661, - [SMALL_STATE(19)] = 686, - [SMALL_STATE(20)] = 721, - [SMALL_STATE(21)] = 756, - [SMALL_STATE(22)] = 778, - [SMALL_STATE(23)] = 802, - [SMALL_STATE(24)] = 824, - [SMALL_STATE(25)] = 848, - [SMALL_STATE(26)] = 872, - [SMALL_STATE(27)] = 896, - [SMALL_STATE(28)] = 920, - [SMALL_STATE(29)] = 942, - [SMALL_STATE(30)] = 965, - [SMALL_STATE(31)] = 988, - [SMALL_STATE(32)] = 1005, - [SMALL_STATE(33)] = 1022, - [SMALL_STATE(34)] = 1045, - [SMALL_STATE(35)] = 1068, - [SMALL_STATE(36)] = 1091, - [SMALL_STATE(37)] = 1114, - [SMALL_STATE(38)] = 1137, - [SMALL_STATE(39)] = 1160, - [SMALL_STATE(40)] = 1183, - [SMALL_STATE(41)] = 1206, - [SMALL_STATE(42)] = 1231, - [SMALL_STATE(43)] = 1252, - [SMALL_STATE(44)] = 1273, - [SMALL_STATE(45)] = 1296, - [SMALL_STATE(46)] = 1319, - [SMALL_STATE(47)] = 1344, - [SMALL_STATE(48)] = 1367, - [SMALL_STATE(49)] = 1388, - [SMALL_STATE(50)] = 1411, - [SMALL_STATE(51)] = 1428, - [SMALL_STATE(52)] = 1451, - [SMALL_STATE(53)] = 1474, - [SMALL_STATE(54)] = 1496, - [SMALL_STATE(55)] = 1518, - [SMALL_STATE(56)] = 1540, - [SMALL_STATE(57)] = 1562, - [SMALL_STATE(58)] = 1584, - [SMALL_STATE(59)] = 1612, - [SMALL_STATE(60)] = 1640, - [SMALL_STATE(61)] = 1668, - [SMALL_STATE(62)] = 1690, - [SMALL_STATE(63)] = 1718, - [SMALL_STATE(64)] = 1746, - [SMALL_STATE(65)] = 1774, - [SMALL_STATE(66)] = 1790, - [SMALL_STATE(67)] = 1812, - [SMALL_STATE(68)] = 1834, - [SMALL_STATE(69)] = 1862, - [SMALL_STATE(70)] = 1884, - [SMALL_STATE(71)] = 1900, - [SMALL_STATE(72)] = 1922, - [SMALL_STATE(73)] = 1938, - [SMALL_STATE(74)] = 1960, - [SMALL_STATE(75)] = 1976, - [SMALL_STATE(76)] = 1995, - [SMALL_STATE(77)] = 2016, - [SMALL_STATE(78)] = 2031, - [SMALL_STATE(79)] = 2050, - [SMALL_STATE(80)] = 2065, - [SMALL_STATE(81)] = 2084, - [SMALL_STATE(82)] = 2103, - [SMALL_STATE(83)] = 2118, - [SMALL_STATE(84)] = 2137, - [SMALL_STATE(85)] = 2156, - [SMALL_STATE(86)] = 2175, - [SMALL_STATE(87)] = 2194, - [SMALL_STATE(88)] = 2213, - [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)] = 2368, - [SMALL_STATE(97)] = 2382, - [SMALL_STATE(98)] = 2400, - [SMALL_STATE(99)] = 2418, - [SMALL_STATE(100)] = 2436, - [SMALL_STATE(101)] = 2450, - [SMALL_STATE(102)] = 2468, - [SMALL_STATE(103)] = 2486, - [SMALL_STATE(104)] = 2504, - [SMALL_STATE(105)] = 2518, - [SMALL_STATE(106)] = 2532, - [SMALL_STATE(107)] = 2550, - [SMALL_STATE(108)] = 2566, - [SMALL_STATE(109)] = 2584, - [SMALL_STATE(110)] = 2598, - [SMALL_STATE(111)] = 2616, - [SMALL_STATE(112)] = 2634, - [SMALL_STATE(113)] = 2652, - [SMALL_STATE(114)] = 2674, - [SMALL_STATE(115)] = 2692, - [SMALL_STATE(116)] = 2710, - [SMALL_STATE(117)] = 2732, - [SMALL_STATE(118)] = 2746, - [SMALL_STATE(119)] = 2768, - [SMALL_STATE(120)] = 2784, - [SMALL_STATE(121)] = 2802, - [SMALL_STATE(122)] = 2816, - [SMALL_STATE(123)] = 2830, - [SMALL_STATE(124)] = 2846, - [SMALL_STATE(125)] = 2862, - [SMALL_STATE(126)] = 2876, - [SMALL_STATE(127)] = 2894, - [SMALL_STATE(128)] = 2907, - [SMALL_STATE(129)] = 2922, - [SMALL_STATE(130)] = 2937, - [SMALL_STATE(131)] = 2950, - [SMALL_STATE(132)] = 2967, - [SMALL_STATE(133)] = 2984, - [SMALL_STATE(134)] = 2997, - [SMALL_STATE(135)] = 3012, - [SMALL_STATE(136)] = 3029, - [SMALL_STATE(137)] = 3040, - [SMALL_STATE(138)] = 3051, - [SMALL_STATE(139)] = 3064, - [SMALL_STATE(140)] = 3079, - [SMALL_STATE(141)] = 3094, - [SMALL_STATE(142)] = 3105, - [SMALL_STATE(143)] = 3120, - [SMALL_STATE(144)] = 3137, - [SMALL_STATE(145)] = 3152, - [SMALL_STATE(146)] = 3167, - [SMALL_STATE(147)] = 3180, - [SMALL_STATE(148)] = 3193, - [SMALL_STATE(149)] = 3210, - [SMALL_STATE(150)] = 3223, - [SMALL_STATE(151)] = 3236, - [SMALL_STATE(152)] = 3251, - [SMALL_STATE(153)] = 3266, - [SMALL_STATE(154)] = 3281, - [SMALL_STATE(155)] = 3296, - [SMALL_STATE(156)] = 3311, - [SMALL_STATE(157)] = 3326, - [SMALL_STATE(158)] = 3343, - [SMALL_STATE(159)] = 3360, - [SMALL_STATE(160)] = 3373, - [SMALL_STATE(161)] = 3386, - [SMALL_STATE(162)] = 3403, - [SMALL_STATE(163)] = 3413, - [SMALL_STATE(164)] = 3423, - [SMALL_STATE(165)] = 3437, - [SMALL_STATE(166)] = 3451, - [SMALL_STATE(167)] = 3465, - [SMALL_STATE(168)] = 3479, - [SMALL_STATE(169)] = 3493, - [SMALL_STATE(170)] = 3507, - [SMALL_STATE(171)] = 3521, - [SMALL_STATE(172)] = 3535, - [SMALL_STATE(173)] = 3549, - [SMALL_STATE(174)] = 3561, - [SMALL_STATE(175)] = 3575, - [SMALL_STATE(176)] = 3589, - [SMALL_STATE(177)] = 3603, - [SMALL_STATE(178)] = 3617, - [SMALL_STATE(179)] = 3631, - [SMALL_STATE(180)] = 3645, - [SMALL_STATE(181)] = 3659, - [SMALL_STATE(182)] = 3673, - [SMALL_STATE(183)] = 3687, - [SMALL_STATE(184)] = 3701, - [SMALL_STATE(185)] = 3715, - [SMALL_STATE(186)] = 3729, - [SMALL_STATE(187)] = 3743, - [SMALL_STATE(188)] = 3757, - [SMALL_STATE(189)] = 3771, - [SMALL_STATE(190)] = 3785, - [SMALL_STATE(191)] = 3799, - [SMALL_STATE(192)] = 3813, - [SMALL_STATE(193)] = 3827, - [SMALL_STATE(194)] = 3841, - [SMALL_STATE(195)] = 3851, - [SMALL_STATE(196)] = 3863, - [SMALL_STATE(197)] = 3877, - [SMALL_STATE(198)] = 3887, - [SMALL_STATE(199)] = 3899, - [SMALL_STATE(200)] = 3913, - [SMALL_STATE(201)] = 3923, - [SMALL_STATE(202)] = 3937, - [SMALL_STATE(203)] = 3947, - [SMALL_STATE(204)] = 3961, - [SMALL_STATE(205)] = 3975, - [SMALL_STATE(206)] = 3985, - [SMALL_STATE(207)] = 3997, - [SMALL_STATE(208)] = 4009, - [SMALL_STATE(209)] = 4021, - [SMALL_STATE(210)] = 4035, - [SMALL_STATE(211)] = 4049, - [SMALL_STATE(212)] = 4061, - [SMALL_STATE(213)] = 4073, - [SMALL_STATE(214)] = 4087, - [SMALL_STATE(215)] = 4099, - [SMALL_STATE(216)] = 4111, - [SMALL_STATE(217)] = 4125, - [SMALL_STATE(218)] = 4137, - [SMALL_STATE(219)] = 4148, - [SMALL_STATE(220)] = 4159, - [SMALL_STATE(221)] = 4170, - [SMALL_STATE(222)] = 4181, - [SMALL_STATE(223)] = 4194, - [SMALL_STATE(224)] = 4205, - [SMALL_STATE(225)] = 4216, - [SMALL_STATE(226)] = 4225, - [SMALL_STATE(227)] = 4236, - [SMALL_STATE(228)] = 4247, - [SMALL_STATE(229)] = 4256, - [SMALL_STATE(230)] = 4267, - [SMALL_STATE(231)] = 4276, - [SMALL_STATE(232)] = 4285, - [SMALL_STATE(233)] = 4294, - [SMALL_STATE(234)] = 4303, - [SMALL_STATE(235)] = 4312, - [SMALL_STATE(236)] = 4321, - [SMALL_STATE(237)] = 4332, - [SMALL_STATE(238)] = 4343, - [SMALL_STATE(239)] = 4356, - [SMALL_STATE(240)] = 4367, - [SMALL_STATE(241)] = 4376, - [SMALL_STATE(242)] = 4387, - [SMALL_STATE(243)] = 4398, - [SMALL_STATE(244)] = 4409, - [SMALL_STATE(245)] = 4418, - [SMALL_STATE(246)] = 4431, - [SMALL_STATE(247)] = 4442, - [SMALL_STATE(248)] = 4453, - [SMALL_STATE(249)] = 4463, - [SMALL_STATE(250)] = 4471, - [SMALL_STATE(251)] = 4479, - [SMALL_STATE(252)] = 4487, - [SMALL_STATE(253)] = 4495, - [SMALL_STATE(254)] = 4503, - [SMALL_STATE(255)] = 4511, - [SMALL_STATE(256)] = 4521, - [SMALL_STATE(257)] = 4529, - [SMALL_STATE(258)] = 4537, - [SMALL_STATE(259)] = 4545, - [SMALL_STATE(260)] = 4553, - [SMALL_STATE(261)] = 4561, - [SMALL_STATE(262)] = 4569, - [SMALL_STATE(263)] = 4577, - [SMALL_STATE(264)] = 4585, - [SMALL_STATE(265)] = 4593, - [SMALL_STATE(266)] = 4601, - [SMALL_STATE(267)] = 4609, - [SMALL_STATE(268)] = 4617, - [SMALL_STATE(269)] = 4625, - [SMALL_STATE(270)] = 4633, - [SMALL_STATE(271)] = 4641, - [SMALL_STATE(272)] = 4651, - [SMALL_STATE(273)] = 4659, - [SMALL_STATE(274)] = 4667, - [SMALL_STATE(275)] = 4675, - [SMALL_STATE(276)] = 4683, - [SMALL_STATE(277)] = 4691, - [SMALL_STATE(278)] = 4699, - [SMALL_STATE(279)] = 4709, - [SMALL_STATE(280)] = 4717, - [SMALL_STATE(281)] = 4725, - [SMALL_STATE(282)] = 4733, - [SMALL_STATE(283)] = 4743, - [SMALL_STATE(284)] = 4751, - [SMALL_STATE(285)] = 4759, - [SMALL_STATE(286)] = 4767, - [SMALL_STATE(287)] = 4775, - [SMALL_STATE(288)] = 4783, - [SMALL_STATE(289)] = 4791, - [SMALL_STATE(290)] = 4799, - [SMALL_STATE(291)] = 4807, - [SMALL_STATE(292)] = 4815, - [SMALL_STATE(293)] = 4823, - [SMALL_STATE(294)] = 4831, - [SMALL_STATE(295)] = 4839, - [SMALL_STATE(296)] = 4847, - [SMALL_STATE(297)] = 4855, - [SMALL_STATE(298)] = 4863, - [SMALL_STATE(299)] = 4871, - [SMALL_STATE(300)] = 4879, - [SMALL_STATE(301)] = 4887, - [SMALL_STATE(302)] = 4895, - [SMALL_STATE(303)] = 4903, - [SMALL_STATE(304)] = 4911, - [SMALL_STATE(305)] = 4919, - [SMALL_STATE(306)] = 4927, - [SMALL_STATE(307)] = 4935, - [SMALL_STATE(308)] = 4943, - [SMALL_STATE(309)] = 4951, - [SMALL_STATE(310)] = 4959, - [SMALL_STATE(311)] = 4967, - [SMALL_STATE(312)] = 4975, - [SMALL_STATE(313)] = 4983, - [SMALL_STATE(314)] = 4991, - [SMALL_STATE(315)] = 4999, - [SMALL_STATE(316)] = 5007, - [SMALL_STATE(317)] = 5015, - [SMALL_STATE(318)] = 5023, - [SMALL_STATE(319)] = 5031, - [SMALL_STATE(320)] = 5039, - [SMALL_STATE(321)] = 5047, - [SMALL_STATE(322)] = 5055, - [SMALL_STATE(323)] = 5063, - [SMALL_STATE(324)] = 5071, + [SMALL_STATE(17)] = 642, + [SMALL_STATE(18)] = 667, + [SMALL_STATE(19)] = 694, + [SMALL_STATE(20)] = 719, + [SMALL_STATE(21)] = 743, + [SMALL_STATE(22)] = 767, + [SMALL_STATE(23)] = 793, + [SMALL_STATE(24)] = 817, + [SMALL_STATE(25)] = 841, + [SMALL_STATE(26)] = 867, + [SMALL_STATE(27)] = 889, + [SMALL_STATE(28)] = 913, + [SMALL_STATE(29)] = 939, + [SMALL_STATE(30)] = 961, + [SMALL_STATE(31)] = 983, + [SMALL_STATE(32)] = 1006, + [SMALL_STATE(33)] = 1027, + [SMALL_STATE(34)] = 1052, + [SMALL_STATE(35)] = 1075, + [SMALL_STATE(36)] = 1098, + [SMALL_STATE(37)] = 1121, + [SMALL_STATE(38)] = 1144, + [SMALL_STATE(39)] = 1167, + [SMALL_STATE(40)] = 1190, + [SMALL_STATE(41)] = 1207, + [SMALL_STATE(42)] = 1230, + [SMALL_STATE(43)] = 1255, + [SMALL_STATE(44)] = 1272, + [SMALL_STATE(45)] = 1295, + [SMALL_STATE(46)] = 1312, + [SMALL_STATE(47)] = 1335, + [SMALL_STATE(48)] = 1358, + [SMALL_STATE(49)] = 1379, + [SMALL_STATE(50)] = 1402, + [SMALL_STATE(51)] = 1425, + [SMALL_STATE(52)] = 1446, + [SMALL_STATE(53)] = 1469, + [SMALL_STATE(54)] = 1492, + [SMALL_STATE(55)] = 1515, + [SMALL_STATE(56)] = 1543, + [SMALL_STATE(57)] = 1571, + [SMALL_STATE(58)] = 1593, + [SMALL_STATE(59)] = 1615, + [SMALL_STATE(60)] = 1637, + [SMALL_STATE(61)] = 1653, + [SMALL_STATE(62)] = 1669, + [SMALL_STATE(63)] = 1691, + [SMALL_STATE(64)] = 1719, + [SMALL_STATE(65)] = 1735, + [SMALL_STATE(66)] = 1757, + [SMALL_STATE(67)] = 1785, + [SMALL_STATE(68)] = 1813, + [SMALL_STATE(69)] = 1841, + [SMALL_STATE(70)] = 1863, + [SMALL_STATE(71)] = 1885, + [SMALL_STATE(72)] = 1913, + [SMALL_STATE(73)] = 1935, + [SMALL_STATE(74)] = 1951, + [SMALL_STATE(75)] = 1973, + [SMALL_STATE(76)] = 1992, + [SMALL_STATE(77)] = 2011, + [SMALL_STATE(78)] = 2030, + [SMALL_STATE(79)] = 2051, + [SMALL_STATE(80)] = 2070, + [SMALL_STATE(81)] = 2089, + [SMALL_STATE(82)] = 2108, + [SMALL_STATE(83)] = 2127, + [SMALL_STATE(84)] = 2146, + [SMALL_STATE(85)] = 2165, + [SMALL_STATE(86)] = 2180, + [SMALL_STATE(87)] = 2195, + [SMALL_STATE(88)] = 2214, + [SMALL_STATE(89)] = 2233, + [SMALL_STATE(90)] = 2252, + [SMALL_STATE(91)] = 2271, + [SMALL_STATE(92)] = 2286, + [SMALL_STATE(93)] = 2309, + [SMALL_STATE(94)] = 2328, + [SMALL_STATE(95)] = 2347, + [SMALL_STATE(96)] = 2366, + [SMALL_STATE(97)] = 2385, + [SMALL_STATE(98)] = 2403, + [SMALL_STATE(99)] = 2417, + [SMALL_STATE(100)] = 2435, + [SMALL_STATE(101)] = 2457, + [SMALL_STATE(102)] = 2475, + [SMALL_STATE(103)] = 2489, + [SMALL_STATE(104)] = 2507, + [SMALL_STATE(105)] = 2525, + [SMALL_STATE(106)] = 2543, + [SMALL_STATE(107)] = 2561, + [SMALL_STATE(108)] = 2579, + [SMALL_STATE(109)] = 2597, + [SMALL_STATE(110)] = 2613, + [SMALL_STATE(111)] = 2631, + [SMALL_STATE(112)] = 2645, + [SMALL_STATE(113)] = 2663, + [SMALL_STATE(114)] = 2681, + [SMALL_STATE(115)] = 2703, + [SMALL_STATE(116)] = 2725, + [SMALL_STATE(117)] = 2741, + [SMALL_STATE(118)] = 2759, + [SMALL_STATE(119)] = 2773, + [SMALL_STATE(120)] = 2789, + [SMALL_STATE(121)] = 2803, + [SMALL_STATE(122)] = 2821, + [SMALL_STATE(123)] = 2835, + [SMALL_STATE(124)] = 2851, + [SMALL_STATE(125)] = 2865, + [SMALL_STATE(126)] = 2883, + [SMALL_STATE(127)] = 2901, + [SMALL_STATE(128)] = 2915, + [SMALL_STATE(129)] = 2929, + [SMALL_STATE(130)] = 2942, + [SMALL_STATE(131)] = 2955, + [SMALL_STATE(132)] = 2972, + [SMALL_STATE(133)] = 2983, + [SMALL_STATE(134)] = 2994, + [SMALL_STATE(135)] = 3011, + [SMALL_STATE(136)] = 3022, + [SMALL_STATE(137)] = 3035, + [SMALL_STATE(138)] = 3048, + [SMALL_STATE(139)] = 3063, + [SMALL_STATE(140)] = 3078, + [SMALL_STATE(141)] = 3093, + [SMALL_STATE(142)] = 3108, + [SMALL_STATE(143)] = 3121, + [SMALL_STATE(144)] = 3136, + [SMALL_STATE(145)] = 3151, + [SMALL_STATE(146)] = 3164, + [SMALL_STATE(147)] = 3179, + [SMALL_STATE(148)] = 3196, + [SMALL_STATE(149)] = 3213, + [SMALL_STATE(150)] = 3226, + [SMALL_STATE(151)] = 3239, + [SMALL_STATE(152)] = 3254, + [SMALL_STATE(153)] = 3269, + [SMALL_STATE(154)] = 3284, + [SMALL_STATE(155)] = 3299, + [SMALL_STATE(156)] = 3316, + [SMALL_STATE(157)] = 3329, + [SMALL_STATE(158)] = 3346, + [SMALL_STATE(159)] = 3361, + [SMALL_STATE(160)] = 3376, + [SMALL_STATE(161)] = 3393, + [SMALL_STATE(162)] = 3406, + [SMALL_STATE(163)] = 3423, + [SMALL_STATE(164)] = 3433, + [SMALL_STATE(165)] = 3443, + [SMALL_STATE(166)] = 3457, + [SMALL_STATE(167)] = 3471, + [SMALL_STATE(168)] = 3485, + [SMALL_STATE(169)] = 3499, + [SMALL_STATE(170)] = 3513, + [SMALL_STATE(171)] = 3527, + [SMALL_STATE(172)] = 3541, + [SMALL_STATE(173)] = 3555, + [SMALL_STATE(174)] = 3569, + [SMALL_STATE(175)] = 3579, + [SMALL_STATE(176)] = 3593, + [SMALL_STATE(177)] = 3607, + [SMALL_STATE(178)] = 3621, + [SMALL_STATE(179)] = 3635, + [SMALL_STATE(180)] = 3649, + [SMALL_STATE(181)] = 3663, + [SMALL_STATE(182)] = 3677, + [SMALL_STATE(183)] = 3691, + [SMALL_STATE(184)] = 3705, + [SMALL_STATE(185)] = 3719, + [SMALL_STATE(186)] = 3733, + [SMALL_STATE(187)] = 3747, + [SMALL_STATE(188)] = 3761, + [SMALL_STATE(189)] = 3775, + [SMALL_STATE(190)] = 3789, + [SMALL_STATE(191)] = 3803, + [SMALL_STATE(192)] = 3817, + [SMALL_STATE(193)] = 3831, + [SMALL_STATE(194)] = 3843, + [SMALL_STATE(195)] = 3857, + [SMALL_STATE(196)] = 3867, + [SMALL_STATE(197)] = 3879, + [SMALL_STATE(198)] = 3893, + [SMALL_STATE(199)] = 3907, + [SMALL_STATE(200)] = 3917, + [SMALL_STATE(201)] = 3927, + [SMALL_STATE(202)] = 3941, + [SMALL_STATE(203)] = 3955, + [SMALL_STATE(204)] = 3969, + [SMALL_STATE(205)] = 3979, + [SMALL_STATE(206)] = 3991, + [SMALL_STATE(207)] = 4003, + [SMALL_STATE(208)] = 4015, + [SMALL_STATE(209)] = 4029, + [SMALL_STATE(210)] = 4041, + [SMALL_STATE(211)] = 4055, + [SMALL_STATE(212)] = 4069, + [SMALL_STATE(213)] = 4081, + [SMALL_STATE(214)] = 4093, + [SMALL_STATE(215)] = 4105, + [SMALL_STATE(216)] = 4119, + [SMALL_STATE(217)] = 4131, + [SMALL_STATE(218)] = 4142, + [SMALL_STATE(219)] = 4155, + [SMALL_STATE(220)] = 4166, + [SMALL_STATE(221)] = 4177, + [SMALL_STATE(222)] = 4188, + [SMALL_STATE(223)] = 4199, + [SMALL_STATE(224)] = 4210, + [SMALL_STATE(225)] = 4221, + [SMALL_STATE(226)] = 4232, + [SMALL_STATE(227)] = 4243, + [SMALL_STATE(228)] = 4252, + [SMALL_STATE(229)] = 4261, + [SMALL_STATE(230)] = 4270, + [SMALL_STATE(231)] = 4279, + [SMALL_STATE(232)] = 4288, + [SMALL_STATE(233)] = 4297, + [SMALL_STATE(234)] = 4306, + [SMALL_STATE(235)] = 4315, + [SMALL_STATE(236)] = 4326, + [SMALL_STATE(237)] = 4337, + [SMALL_STATE(238)] = 4350, + [SMALL_STATE(239)] = 4359, + [SMALL_STATE(240)] = 4370, + [SMALL_STATE(241)] = 4381, + [SMALL_STATE(242)] = 4390, + [SMALL_STATE(243)] = 4401, + [SMALL_STATE(244)] = 4414, + [SMALL_STATE(245)] = 4425, + [SMALL_STATE(246)] = 4436, + [SMALL_STATE(247)] = 4444, + [SMALL_STATE(248)] = 4452, + [SMALL_STATE(249)] = 4460, + [SMALL_STATE(250)] = 4468, + [SMALL_STATE(251)] = 4476, + [SMALL_STATE(252)] = 4484, + [SMALL_STATE(253)] = 4492, + [SMALL_STATE(254)] = 4500, + [SMALL_STATE(255)] = 4508, + [SMALL_STATE(256)] = 4516, + [SMALL_STATE(257)] = 4526, + [SMALL_STATE(258)] = 4534, + [SMALL_STATE(259)] = 4542, + [SMALL_STATE(260)] = 4550, + [SMALL_STATE(261)] = 4558, + [SMALL_STATE(262)] = 4566, + [SMALL_STATE(263)] = 4574, + [SMALL_STATE(264)] = 4582, + [SMALL_STATE(265)] = 4590, + [SMALL_STATE(266)] = 4598, + [SMALL_STATE(267)] = 4606, + [SMALL_STATE(268)] = 4616, + [SMALL_STATE(269)] = 4624, + [SMALL_STATE(270)] = 4632, + [SMALL_STATE(271)] = 4642, + [SMALL_STATE(272)] = 4650, + [SMALL_STATE(273)] = 4658, + [SMALL_STATE(274)] = 4666, + [SMALL_STATE(275)] = 4674, + [SMALL_STATE(276)] = 4682, + [SMALL_STATE(277)] = 4692, + [SMALL_STATE(278)] = 4700, + [SMALL_STATE(279)] = 4708, + [SMALL_STATE(280)] = 4716, + [SMALL_STATE(281)] = 4726, + [SMALL_STATE(282)] = 4734, + [SMALL_STATE(283)] = 4742, + [SMALL_STATE(284)] = 4750, + [SMALL_STATE(285)] = 4758, + [SMALL_STATE(286)] = 4766, + [SMALL_STATE(287)] = 4774, + [SMALL_STATE(288)] = 4782, + [SMALL_STATE(289)] = 4790, + [SMALL_STATE(290)] = 4798, + [SMALL_STATE(291)] = 4806, + [SMALL_STATE(292)] = 4814, + [SMALL_STATE(293)] = 4822, + [SMALL_STATE(294)] = 4830, + [SMALL_STATE(295)] = 4838, + [SMALL_STATE(296)] = 4846, + [SMALL_STATE(297)] = 4854, + [SMALL_STATE(298)] = 4862, + [SMALL_STATE(299)] = 4870, + [SMALL_STATE(300)] = 4878, + [SMALL_STATE(301)] = 4886, + [SMALL_STATE(302)] = 4894, + [SMALL_STATE(303)] = 4902, + [SMALL_STATE(304)] = 4910, + [SMALL_STATE(305)] = 4918, + [SMALL_STATE(306)] = 4926, + [SMALL_STATE(307)] = 4934, + [SMALL_STATE(308)] = 4942, + [SMALL_STATE(309)] = 4950, + [SMALL_STATE(310)] = 4958, + [SMALL_STATE(311)] = 4966, + [SMALL_STATE(312)] = 4974, + [SMALL_STATE(313)] = 4982, + [SMALL_STATE(314)] = 4990, + [SMALL_STATE(315)] = 4998, + [SMALL_STATE(316)] = 5006, + [SMALL_STATE(317)] = 5014, + [SMALL_STATE(318)] = 5022, + [SMALL_STATE(319)] = 5030, + [SMALL_STATE(320)] = 5038, + [SMALL_STATE(321)] = 5046, + [SMALL_STATE(322)] = 5054, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -8005,518 +7965,519 @@ static const TSParseActionEntry ts_parse_actions[] = { [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(68), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), + [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [17] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), + [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(99), [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(14), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), + [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [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(68), - [54] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(6), - [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(71), - [63] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(123), - [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(13), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(14), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(62), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(157), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(118), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(280), - [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(148), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(76), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(236), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(275), - [105] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(274), - [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(26), - [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), + [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [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(56), + [52] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(7), + [55] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(28), + [58] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(57), + [61] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(109), + [64] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(99), + [67] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(13), + [70] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(15), + [73] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(22), + [76] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(63), + [79] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(160), + [82] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(100), + [85] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(281), + [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(157), + [94] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(78), + [97] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(236), + [100] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(273), + [103] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1, 0, 0), + [108] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [110] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [112] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), + [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), [116] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 2, 0, 1), - [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [118] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), [120] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 2, 0, 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), - [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(103), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), - [138] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(218), - [141] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), - [143] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [145] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [147] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), - [149] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [151] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), - [153] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), - [155] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [157] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [159] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [161] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1, 0, 0), - [163] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1, 0, 0), - [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), - [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(167), - [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(18), - [177] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 4, 0, 13), - [179] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 4, 0, 13), - [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), - [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 2, 0, 0), - [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 2, 0, 0), - [187] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [189] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 5, 0, 15), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 5, 0, 15), - [195] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), - [197] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(24), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), - [202] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(260), - [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(sym_shell_fragment, 1, 0, 0), - [213] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [215] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_shell_fragment, 1, 0, 0), - [217] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), - [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), - [221] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(216), - [224] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(27), - [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(238), - [234] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [236] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), - [238] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), - [240] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [242] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [244] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(166), - [247] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(33), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2, 0, 0), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2, 0, 0), - [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [256] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), - [258] = {.entry = {.count = 1, .reusable = false}}, SHIFT(51), - [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), - [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), - [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), - [272] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(172), - [275] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(37), - [278] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [280] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(45), - [284] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [288] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(40), - [291] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(165), - [294] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 2, 0, 0), - [298] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [300] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), - [302] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 2, 0, 0), - [306] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [308] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [310] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), - [312] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(43), - [315] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(180), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), - [320] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [322] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), - [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), - [326] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), - [328] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(257), - [331] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(39), - [334] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(120), - [337] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(199), - [340] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), - [342] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [345] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(47), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 1, 0, 0), - [350] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [352] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), - [354] = {.entry = {.count = 1, .reusable = false}}, SHIFT(29), - [356] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param_param, 3, 0, 0), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param_param, 3, 0, 0), - [362] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(51), - [365] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_shell_fragment_repeat1, 2, 0, 0), SHIFT_REPEAT(261), - [368] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), - [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_image_digest_repeat1, 2, 0, 0), - [376] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), - [378] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(170), - [381] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(54), - [384] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(61), - [388] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [390] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), - [394] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), - [396] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(323), - [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), - [401] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(202), - [404] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(180), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [411] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [415] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(86), - [418] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(86), - [421] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(185), - [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(254), - [427] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), - [429] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), - [431] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), - [433] = {.entry = {.count = 1, .reusable = false}}, SHIFT(55), - [435] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [437] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [439] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imm_expansion, 2, 0, 0), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__imm_expansion, 2, 0, 0), - [443] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 4, 0, 11), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), - [451] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), - [455] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(69), - [458] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(184), - [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), - [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), - [467] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 0), - [469] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 3, 0, 0), - [471] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2, 0, 0), - [473] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2, 0, 0), - [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [477] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [479] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, 0, 13), - [481] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 13), - [483] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [485] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [487] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), - [491] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1, 0, 0), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [497] = {.entry = {.count = 1, .reusable = false}}, SHIFT(87), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [501] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 2, 0, 0), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), - [505] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), - [507] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(83), - [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(175), - [513] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 2, 0, 0), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [519] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2, 0, 0), - [521] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), - [529] = {.entry = {.count = 1, .reusable = false}}, SHIFT(93), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, 0, 1), - [533] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, 0, 1), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(91), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), - [543] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(192), - [546] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(119), - [549] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(91), - [552] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(187), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 1, 0, 0), - [557] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), - [559] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(93), - [562] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(177), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), - [567] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(164), - [570] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(94), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [577] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [585] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), - [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), - [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), - [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), - [597] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), - [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(265), - [602] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 4, 0, 0), - [604] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [606] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [608] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [611] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), - [613] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(110), - [616] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 3, 0, 0), - [618] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 4, 0, 0), - [620] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 3, 0, 0), - [622] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 0), - [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [632] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1, 0, 0), - [634] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1, 0, 0), - [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [638] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [640] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(34), - [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 2, 0, 0), - [654] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1, 0, 0), - [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [662] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), - [666] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), - [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), - [672] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2, 0, 0), - [674] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(54), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(44), + [128] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [132] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), + [136] = {.entry = {.count = 1, .reusable = false}}, SHIFT(80), + [138] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [140] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), + [146] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), + [148] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(244), + [151] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat1, 2, 0, 0), + [153] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), + [155] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(169), + [158] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), + [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(17), + [163] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 1, 0, 0), + [165] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), + [167] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [169] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unquoted_string, 1, 0, 0), + [171] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unquoted_string, 1, 0, 0), + [173] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [175] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), + [177] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(20), + [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), + [182] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(258), + [185] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 2, 0, 0), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 2, 0, 0), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [191] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [193] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), + [203] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), + [205] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(215), + [208] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_name_repeat1, 2, 0, 0), SHIFT_REPEAT(23), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), + [215] = {.entry = {.count = 1, .reusable = false}}, SHIFT(47), + [217] = {.entry = {.count = 1, .reusable = false}}, SHIFT(83), + [219] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param, 4, 0, 13), + [221] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param, 4, 0, 13), + [223] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [225] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_name, 1, 0, 0), + [227] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_name, 1, 0, 0), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(21), + [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(237), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_tag, 2, 0, 0), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_tag, 2, 0, 0), + [246] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [248] = {.entry = {.count = 1, .reusable = false}}, SHIFT(38), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 1, 0, 0), + [252] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [254] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [256] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), + [258] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(254), + [261] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(41), + [264] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_label_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(97), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), + [269] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [271] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [275] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(197), + [278] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), + [280] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [283] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_double_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(35), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), + [288] = {.entry = {.count = 1, .reusable = false}}, SHIFT(52), + [290] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 2, 0, 0), + [294] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), + [296] = {.entry = {.count = 1, .reusable = false}}, SHIFT(35), + [298] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), + [304] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(173), + [307] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_image_tag_repeat1, 2, 0, 0), SHIFT_REPEAT(38), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mount_param_param, 3, 0, 0), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mount_param_param, 3, 0, 0), + [314] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [316] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [318] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_instruction, 2, 0, 0), + [322] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [324] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), + [326] = {.entry = {.count = 1, .reusable = false}}, SHIFT(97), + [328] = {.entry = {.count = 1, .reusable = false}}, SHIFT(49), + [330] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), + [332] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(47), + [335] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__shell_fragment, 2, 0, 0), SHIFT_REPEAT(259), + [338] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__user_name_or_group, 2, 0, 0), + [340] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [342] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(167), + [345] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_unquoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(49), + [348] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), + [350] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), + [352] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(51), + [355] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__user_name_or_group_repeat1, 2, 0, 0), SHIFT_REPEAT(182), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [360] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(52), + [363] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(166), + [366] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), + [368] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), + [370] = {.entry = {.count = 1, .reusable = false}}, SHIFT(36), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path_with_heredoc, 1, 0, 0), + [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), + [378] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [380] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(80), + [383] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(80), + [386] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(186), + [389] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(251), + [392] = {.entry = {.count = 1, .reusable = true}}, SHIFT(190), + [394] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), + [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), + [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [404] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), + [406] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), + [408] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(171), + [411] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_digest_repeat1, 2, 0, 0), SHIFT_REPEAT(58), + [414] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 4, 0, 11), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [418] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__expansion_body, 3, 0, 0), + [420] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__expansion_body, 3, 0, 0), + [422] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), + [424] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(174), + [427] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 2, 0, 0), SHIFT_REPEAT(182), + [430] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), + [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [436] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__imm_expansion, 2, 0, 0), + [438] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__imm_expansion, 2, 0, 0), + [440] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_digest, 2, 0, 0), + [442] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_digest, 2, 0, 0), + [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), + [450] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(193), + [456] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 2, 0, 0), + [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), + [460] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [462] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 2, 0, 0), + [464] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), + [466] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), + [468] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(321), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_path, 1, 0, 0), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(69), + [475] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_path, 1, 0, 0), + [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_param, 4, 0, 13), + [479] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_param, 4, 0, 13), + [481] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(74), + [484] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(185), + [487] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), + [489] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [491] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), + [497] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(77), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym__stopsignal_value_repeat1, 2, 0, 0), SHIFT_REPEAT(176), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [507] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(79), + [510] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(179), + [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [517] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 2, 0, 0), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(39), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [527] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 2, 0, 0), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [533] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expansion, 2, 0, 0), + [535] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expansion, 2, 0, 0), + [537] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_instruction, 2, 0, 0), + [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(194), + [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), + [543] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), + [545] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(165), + [548] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_image_alias_repeat1, 2, 0, 0), SHIFT_REPEAT(88), + [551] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(89), + [554] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_path_repeat1, 2, 0, 0), SHIFT_REPEAT(187), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__stopsignal_value, 1, 0, 0), + [559] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 1, 0, 1), + [563] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 1, 0, 1), + [565] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), + [567] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), + [571] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(194), + [574] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_expose_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(123), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(75), + [579] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_alias, 1, 0, 0), + [581] = {.entry = {.count = 1, .reusable = true}}, SHIFT(84), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(89), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [589] = {.entry = {.count = 1, .reusable = true}}, SHIFT(126), + [591] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [595] = {.entry = {.count = 1, .reusable = true}}, SHIFT(94), + [597] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), + [599] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [601] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), + [603] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), + [605] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [607] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [609] = {.entry = {.count = 1, .reusable = true}}, SHIFT(101), + [611] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [613] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), + [615] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_env_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(264), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [624] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 4, 0, 0), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), + [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 4, 0, 0), + [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), + [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [636] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_add_instruction, 3, 0, 0), + [638] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [641] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), + [643] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_single_quoted_string_repeat1, 2, 0, 0), SHIFT_REPEAT(112), + [646] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_copy_instruction, 3, 0, 0), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [650] = {.entry = {.count = 1, .reusable = false}}, SHIFT(31), + [652] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 1, 0, 0), + [654] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 1, 0, 0), + [656] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [658] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 0), + [660] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [662] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), + [668] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [670] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [674] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 2, 0, 0), [676] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 5, 0, 0), [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 5, 0, 0), [680] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), - [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(209), - [685] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), - [687] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [690] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(143), - [693] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), - [695] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(67), - [698] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 4, 0, 0), - [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, 0, 9), - [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, 0, 9), - [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2, 0, 0), - [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2, 0, 0), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3, 0, 0), - [714] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2, 0, 0), - [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 4, 0, 0), - [718] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 4, 0, 0), - [720] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(324), - [723] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [725] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [727] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [729] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [731] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [733] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3, 0, 0), - [735] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3, 0, 0), - [737] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3, 0, 0), - [739] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3, 0, 0), - [741] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 5), - [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 5), - [745] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), - [747] = {.entry = {.count = 1, .reusable = true}}, SHIFT(194), - [749] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), - [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), - [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [761] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), - [763] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(116), - [766] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), - [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [778] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), - [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(205), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(208), - [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), SHIFT_REPEAT(241), + [682] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_run_instruction_repeat2, 2, 0, 0), SHIFT_REPEAT(208), + [685] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(76), + [688] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 4, 0, 0), + [690] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_label_pair, 3, 0, 9), + [692] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_label_pair, 3, 0, 9), + [694] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_run_instruction, 3, 0, 0), + [696] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 5), + [698] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 5), + [700] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [702] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 3, 0, 0), + [704] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [706] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 3, 0, 0), + [708] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_add_instruction, 4, 0, 0), + [710] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_command, 2, 0, 0), + [712] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_copy_instruction, 4, 0, 0), + [714] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), + [716] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat2, 2, 0, 0), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), + [724] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [726] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_double_quoted_string, 2, 0, 0), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(90), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [732] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_add_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(322), + [735] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [737] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [739] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [741] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_single_quoted_string, 2, 0, 0), + [743] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), + [745] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [748] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_repeat1, 2, 0, 0), SHIFT_REPEAT(162), + [751] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), + [753] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [755] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [757] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [759] = {.entry = {.count = 1, .reusable = true}}, SHIFT(320), + [761] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [763] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), + [765] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), SHIFT_REPEAT(115), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(319), + [770] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 1, 0, 0), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [792] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), SHIFT_REPEAT(239), [795] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_json_string_array_repeat1, 2, 0, 0), - [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), SHIFT_REPEAT(272), + [797] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [799] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), + [801] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), + [803] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), SHIFT_REPEAT(277), [806] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_heredoc_block_repeat1, 2, 0, 0), [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), - [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(133), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(309), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), - [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), + [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [844] = {.entry = {.count = 1, .reusable = false}}, SHIFT(53), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(316), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [852] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 2, 0, 0), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [856] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym__immediate_user_name_or_group, 1, 0, 0), - [858] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3, 0, 0), - [860] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2, 0, 0), - [862] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2, 0, 0), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(240), - [868] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(53), - [871] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [873] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [875] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [877] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, 0, 10), - [879] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, 0, 10), - [881] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), + [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [834] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(85), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), + [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), + [856] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 2, 0, 0), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), + [860] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_volume_instruction, 3, 0, 0), + [862] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expose_port, 2, 0, 0), + [864] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expose_port, 2, 0, 0), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [870] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_shell_command_repeat1, 2, 0, 0), SHIFT_REPEAT(83), + [873] = {.entry = {.count = 1, .reusable = true}}, SHIFT(91), + [875] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), + [877] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [879] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 6), + [881] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 6), [883] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 3, 0, 0), - [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 2, 0, 0), - [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 3, 0, 0), - [891] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 4, 0, 0), - [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 3, 0, 0), - [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 2, 0, 0), - [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 2, 0, 4), - [899] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [901] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), - [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 2, 0, 6), - [905] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 2, 0, 6), - [907] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 3, 0, 0), - [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 2, 0, 0), - [911] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [913] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 2, 0, 3), - [915] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 2, 0, 0), - [919] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, 0, 8), - [921] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, 0, 8), - [923] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [925] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [927] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2, 0, 0), - [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 2, 0, 0), - [933] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [935] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [885] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), + [887] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_volume_instruction_repeat1, 2, 0, 0), + [889] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_pair, 3, 0, 10), + [891] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_env_pair, 3, 0, 10), + [893] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 2, 0, 0), + [895] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 3, 0, 0), + [897] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 4, 0, 0), + [899] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 3, 0, 0), + [901] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_heredoc_block, 2, 0, 0), + [903] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 2, 0, 4), + [905] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [907] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [909] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string_array, 3, 0, 0), + [911] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_user_instruction, 2, 0, 3), + [913] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [915] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_json_string, 2, 0, 0), + [917] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 2, 0, 0), + [919] = {.entry = {.count = 1, .reusable = false}}, SHIFT(147), + [921] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), + [923] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), + [925] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_image_spec, 3, 0, 8), + [927] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_image_spec, 3, 0, 8), + [929] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 2, 0, 0), + [931] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 2, 0, 0), + [933] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_entrypoint_instruction, 2, 0, 0), + [935] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), [937] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_env_instruction, 2, 0, 2), - [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [939] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), [941] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cmd_instruction, 2, 0, 0), - [943] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4, 0, 7), - [945] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), - [951] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3, 0, 0), - [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [955] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), - [959] = {.entry = {.count = 1, .reusable = false}}, SHIFT(50), - [961] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [963] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [965] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), - [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [969] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 2, 0, 0), + [943] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [945] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 4, 0, 7), + [947] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [949] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [951] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), + [953] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [955] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, 0, 10), + [957] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [959] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [961] = {.entry = {.count = 1, .reusable = false}}, SHIFT(73), + [963] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), + [965] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [967] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [969] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), [971] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [975] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 2, 0, 0), - [977] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), - [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), - [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [983] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_stopsignal_instruction, 2, 0, 0), - [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 2, 0, 0), - [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 2, 0, 0), - [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_volume_instruction, 2, 0, 0), - [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(207), - [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2, 0, 0), - [997] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, 0, 14), - [1003] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [1005] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__spaced_env_pair, 3, 0, 10), - [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(117), - [1009] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), - [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), - [1015] = {.entry = {.count = 1, .reusable = true}}, SHIFT(125), - [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), - [1019] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 4, 0, 12), - [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), - [1025] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [1027] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [1029] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [1031] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), - [1033] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [1035] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [1037] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), - [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), - [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), - [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), - [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), - [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(306), - [1057] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), - [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(312), + [973] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), + [975] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [977] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_workdir_instruction, 2, 0, 0), + [979] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [981] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [983] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [985] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_arg_instruction, 4, 0, 12), + [987] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [989] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_onbuild_instruction, 2, 0, 0), + [991] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 3, 0, 0), + [993] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [995] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_healthcheck_instruction, 2, 0, 0), + [997] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_shell_instruction, 2, 0, 0), + [999] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [1001] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_maintainer_instruction, 2, 0, 0), + [1003] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_cross_build_instruction, 2, 0, 0), + [1005] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), + [1007] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [1009] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_from_instruction, 5, 0, 14), + [1011] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), + [1013] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [1015] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), + [1017] = {.entry = {.count = 1, .reusable = true}}, SHIFT(120), + [1019] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [1021] = {.entry = {.count = 1, .reusable = true}}, SHIFT(130), + [1023] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [1025] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), + [1027] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [1029] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [1031] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [1033] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), + [1035] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), + [1037] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), + [1039] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [1041] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [1043] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [1045] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [1047] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), + [1049] = {.entry = {.count = 1, .reusable = false}}, SHIFT(297), + [1051] = {.entry = {.count = 1, .reusable = false}}, SHIFT(299), + [1053] = {.entry = {.count = 1, .reusable = false}}, SHIFT(301), + [1055] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [1057] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [1059] = {.entry = {.count = 1, .reusable = true}}, SHIFT(308), + [1061] = {.entry = {.count = 1, .reusable = true}}, SHIFT(310), }; 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] = { @@ -8524,13 +8485,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, }, }; 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))))