From 5fefd45628a32fc999aa9f4aebcc5ddcd071bcf2 Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Fri, 26 Jan 2024 03:01:06 -0500 Subject: [PATCH] fix: allow variables to be delimited by commas --- grammar.js | 1 + src/grammar.json | 12 + src/node-types.json | 4 + src/parser.c | 5544 ++++++++++++++++++++++--------------------- 4 files changed, 2854 insertions(+), 2707 deletions(-) diff --git a/grammar.js b/grammar.js index 2d8916e..2e8a4d4 100644 --- a/grammar.js +++ b/grammar.js @@ -103,6 +103,7 @@ module.exports = grammar({ variable: $ => seq( field('left', $.symbol), ':=', + optional(','), field('right', $.expression), ), diff --git a/src/grammar.json b/src/grammar.json index f8781a2..4865e39 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -286,6 +286,18 @@ "type": "STRING", "value": ":=" }, + { + "type": "CHOICE", + "members": [ + { + "type": "STRING", + "value": "," + }, + { + "type": "BLANK" + } + ] + }, { "type": "FIELD", "name": "right", diff --git a/src/node-types.json b/src/node-types.json index 91df5dc..079e27f 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -943,6 +943,10 @@ "type": ")", "named": false }, + { + "type": ",", + "named": false + }, { "type": ":=", "named": false diff --git a/src/parser.c b/src/parser.c index 52dffb1..1242d12 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 275 +#define STATE_COUNT 279 #define LARGE_STATE_COUNT 15 -#define SYMBOL_COUNT 79 +#define SYMBOL_COUNT 80 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 48 +#define TOKEN_COUNT 49 #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 5 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 6 +#define PRODUCTION_ID_COUNT 7 enum ts_symbol_identifiers { sym_symbol = 1, @@ -30,71 +30,72 @@ enum ts_symbol_identifiers { anon_sym_endif = 11, anon_sym_source = 12, anon_sym_COLON_EQ = 13, - anon_sym_bool = 14, - anon_sym_tristate = 15, - anon_sym_int = 16, - anon_sym_hex = 17, - anon_sym_string = 18, - aux_sym_type_definition_token1 = 19, - anon_sym_prompt = 20, - anon_sym_default = 21, - anon_sym_def_bool = 22, - anon_sym_def_tristate = 23, - anon_sym_dependson = 24, - anon_sym_select = 25, - anon_sym_imply = 26, - anon_sym_visibleif = 27, - anon_sym_range = 28, - anon_sym_help = 29, - sym_optional = 30, - sym_modules = 31, - anon_sym_BANG = 32, - anon_sym_PIPE_PIPE = 33, - anon_sym_AMP_AMP = 34, - anon_sym_EQ = 35, - anon_sym_BANG_EQ = 36, - anon_sym_LT = 37, - anon_sym_GT = 38, - anon_sym_LT_EQ = 39, - anon_sym_GT_EQ = 40, - anon_sym_LPAREN = 41, - anon_sym_RPAREN = 42, - anon_sym_DOLLAR_LPAREN = 43, - sym_macro_content = 44, - sym_prompt = 45, - sym_comment = 46, - sym__help_text = 47, - sym_configuration = 48, - sym_mainmenu = 49, - sym__entry = 50, - sym_config = 51, - sym_menuconfig = 52, - sym_choice = 53, - sym_comment_entry = 54, - sym_menu = 55, - sym_if = 56, - sym_source = 57, - sym_variable = 58, - sym__config_option = 59, - sym_type_definition = 60, - sym_input_prompt = 61, - sym_default_value = 62, - sym_type_definition_default = 63, - sym_dependencies = 64, - sym_reverse_dependencies = 65, - sym_weak_reverse_dependencies = 66, - sym_limiting_menu_display = 67, - sym_numerical_ranges = 68, - sym_help_text = 69, - sym_conditional_clause = 70, - sym_expression = 71, - sym_unary_expression = 72, - sym_binary_expression = 73, - sym_parenthesized_expression = 74, - sym_macro_variable = 75, - aux_sym_configuration_repeat1 = 76, - aux_sym_config_repeat1 = 77, - aux_sym_macro_variable_repeat1 = 78, + anon_sym_COMMA = 14, + anon_sym_bool = 15, + anon_sym_tristate = 16, + anon_sym_int = 17, + anon_sym_hex = 18, + anon_sym_string = 19, + aux_sym_type_definition_token1 = 20, + anon_sym_prompt = 21, + anon_sym_default = 22, + anon_sym_def_bool = 23, + anon_sym_def_tristate = 24, + anon_sym_dependson = 25, + anon_sym_select = 26, + anon_sym_imply = 27, + anon_sym_visibleif = 28, + anon_sym_range = 29, + anon_sym_help = 30, + sym_optional = 31, + sym_modules = 32, + anon_sym_BANG = 33, + anon_sym_PIPE_PIPE = 34, + anon_sym_AMP_AMP = 35, + anon_sym_EQ = 36, + anon_sym_BANG_EQ = 37, + anon_sym_LT = 38, + anon_sym_GT = 39, + anon_sym_LT_EQ = 40, + anon_sym_GT_EQ = 41, + anon_sym_LPAREN = 42, + anon_sym_RPAREN = 43, + anon_sym_DOLLAR_LPAREN = 44, + sym_macro_content = 45, + sym_prompt = 46, + sym_comment = 47, + sym__help_text = 48, + sym_configuration = 49, + sym_mainmenu = 50, + sym__entry = 51, + sym_config = 52, + sym_menuconfig = 53, + sym_choice = 54, + sym_comment_entry = 55, + sym_menu = 56, + sym_if = 57, + sym_source = 58, + sym_variable = 59, + sym__config_option = 60, + sym_type_definition = 61, + sym_input_prompt = 62, + sym_default_value = 63, + sym_type_definition_default = 64, + sym_dependencies = 65, + sym_reverse_dependencies = 66, + sym_weak_reverse_dependencies = 67, + sym_limiting_menu_display = 68, + sym_numerical_ranges = 69, + sym_help_text = 70, + sym_conditional_clause = 71, + sym_expression = 72, + sym_unary_expression = 73, + sym_binary_expression = 74, + sym_parenthesized_expression = 75, + sym_macro_variable = 76, + aux_sym_configuration_repeat1 = 77, + aux_sym_config_repeat1 = 78, + aux_sym_macro_variable_repeat1 = 79, }; static const char * const ts_symbol_names[] = { @@ -112,6 +113,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_endif] = "endif", [anon_sym_source] = "source", [anon_sym_COLON_EQ] = ":=", + [anon_sym_COMMA] = ",", [anon_sym_bool] = "bool", [anon_sym_tristate] = "tristate", [anon_sym_int] = "int", @@ -194,6 +196,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_endif] = anon_sym_endif, [anon_sym_source] = anon_sym_source, [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, + [anon_sym_COMMA] = anon_sym_COMMA, [anon_sym_bool] = anon_sym_bool, [anon_sym_tristate] = anon_sym_tristate, [anon_sym_int] = anon_sym_int, @@ -318,6 +321,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_COMMA] = { + .visible = true, + .named = false, + }, [anon_sym_bool] = { .visible = true, .named = false, @@ -603,6 +610,7 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [3] = {.index = 1, .length = 1}, [4] = {.index = 2, .length = 2}, [5] = {.index = 4, .length = 3}, + [6] = {.index = 7, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -617,6 +625,9 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_left, 0}, {field_operator, 1}, {field_right, 2}, + [7] = + {field_left, 0}, + {field_right, 3}, }; static const TSSymbol ts_alias_sequences[PRODUCTION_ID_COUNT][MAX_ALIAS_SEQUENCE_LENGTH] = { @@ -634,23 +645,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 2, - [4] = 4, - [5] = 4, + [3] = 3, + [4] = 3, + [5] = 2, [6] = 6, - [7] = 7, - [8] = 7, - [9] = 6, + [7] = 6, + [8] = 8, + [9] = 8, [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, - [15] = 12, - [16] = 13, - [17] = 10, - [18] = 11, - [19] = 14, + [15] = 13, + [16] = 12, + [17] = 11, + [18] = 14, + [19] = 10, [20] = 20, [21] = 21, [22] = 22, @@ -661,23 +672,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [27] = 27, [28] = 28, [29] = 29, - [30] = 26, + [30] = 25, [31] = 21, - [32] = 27, - [33] = 20, - [34] = 22, - [35] = 23, + [32] = 20, + [33] = 22, + [34] = 29, + [35] = 28, [36] = 24, - [37] = 25, - [38] = 28, - [39] = 29, + [37] = 23, + [38] = 26, + [39] = 27, [40] = 40, [41] = 40, [42] = 42, - [43] = 43, + [43] = 42, [44] = 44, - [45] = 42, - [46] = 43, + [45] = 45, + [46] = 45, [47] = 44, [48] = 48, [49] = 49, @@ -698,214 +709,218 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [64] = 64, [65] = 65, [66] = 65, - [67] = 61, - [68] = 57, - [69] = 62, - [70] = 60, - [71] = 59, - [72] = 51, - [73] = 50, - [74] = 54, - [75] = 63, + [67] = 62, + [68] = 60, + [69] = 54, + [70] = 52, + [71] = 55, + [72] = 64, + [73] = 49, + [74] = 48, + [75] = 57, [76] = 56, - [77] = 64, - [78] = 53, + [77] = 61, + [78] = 59, [79] = 58, - [80] = 55, - [81] = 48, - [82] = 52, - [83] = 49, - [84] = 27, - [85] = 20, + [80] = 53, + [81] = 63, + [82] = 50, + [83] = 51, + [84] = 25, + [85] = 23, [86] = 86, - [87] = 21, - [88] = 29, - [89] = 22, - [90] = 23, - [91] = 24, - [92] = 26, - [93] = 28, + [87] = 27, + [88] = 24, + [89] = 26, + [90] = 29, + [91] = 28, + [92] = 21, + [93] = 20, [94] = 94, [95] = 95, - [96] = 94, + [96] = 96, [97] = 97, [98] = 98, [99] = 99, - [100] = 100, - [101] = 101, - [102] = 98, - [103] = 100, - [104] = 86, + [100] = 99, + [101] = 97, + [102] = 86, + [103] = 103, + [104] = 98, [105] = 105, - [106] = 99, - [107] = 95, + [106] = 106, + [107] = 105, [108] = 108, - [109] = 28, - [110] = 21, - [111] = 20, - [112] = 22, - [113] = 27, - [114] = 23, - [115] = 24, - [116] = 26, - [117] = 108, - [118] = 29, - [119] = 119, - [120] = 120, + [109] = 103, + [110] = 95, + [111] = 28, + [112] = 21, + [113] = 20, + [114] = 24, + [115] = 26, + [116] = 29, + [117] = 25, + [118] = 94, + [119] = 27, + [120] = 23, [121] = 121, [122] = 122, [123] = 123, [124] = 124, - [125] = 122, - [126] = 120, - [127] = 127, + [125] = 125, + [126] = 126, + [127] = 122, [128] = 128, [129] = 129, - [130] = 130, - [131] = 131, + [130] = 124, + [131] = 125, [132] = 132, [133] = 133, [134] = 134, - [135] = 131, + [135] = 135, [136] = 136, - [137] = 20, - [138] = 29, + [137] = 137, + [138] = 138, [139] = 139, - [140] = 21, - [141] = 134, - [142] = 28, - [143] = 27, - [144] = 26, + [140] = 140, + [141] = 141, + [142] = 25, + [143] = 26, + [144] = 27, [145] = 24, [146] = 23, - [147] = 22, - [148] = 134, - [149] = 134, - [150] = 150, - [151] = 151, - [152] = 152, - [153] = 153, - [154] = 132, - [155] = 132, + [147] = 20, + [148] = 21, + [149] = 28, + [150] = 29, + [151] = 141, + [152] = 141, + [153] = 141, + [154] = 154, + [155] = 155, [156] = 156, - [157] = 153, - [158] = 152, - [159] = 151, - [160] = 132, - [161] = 150, - [162] = 136, - [163] = 131, - [164] = 156, - [165] = 133, - [166] = 166, - [167] = 133, - [168] = 156, - [169] = 136, - [170] = 166, - [171] = 132, - [172] = 134, - [173] = 139, - [174] = 133, - [175] = 156, - [176] = 131, - [177] = 136, - [178] = 131, - [179] = 156, - [180] = 133, - [181] = 136, - [182] = 182, - [183] = 121, - [184] = 184, - [185] = 185, - [186] = 184, - [187] = 184, + [157] = 157, + [158] = 136, + [159] = 136, + [160] = 135, + [161] = 157, + [162] = 156, + [163] = 155, + [164] = 136, + [165] = 154, + [166] = 140, + [167] = 135, + [168] = 137, + [169] = 138, + [170] = 170, + [171] = 139, + [172] = 138, + [173] = 137, + [174] = 140, + [175] = 170, + [176] = 136, + [177] = 141, + [178] = 178, + [179] = 138, + [180] = 137, + [181] = 140, + [182] = 135, + [183] = 137, + [184] = 138, + [185] = 135, + [186] = 140, + [187] = 133, [188] = 188, - [189] = 185, - [190] = 184, - [191] = 128, - [192] = 124, - [193] = 184, - [194] = 194, - [195] = 129, - [196] = 130, - [197] = 127, - [198] = 123, - [199] = 119, - [200] = 200, - [201] = 201, - [202] = 201, - [203] = 200, - [204] = 201, + [189] = 188, + [190] = 190, + [191] = 188, + [192] = 192, + [193] = 190, + [194] = 188, + [195] = 126, + [196] = 121, + [197] = 188, + [198] = 198, + [199] = 123, + [200] = 132, + [201] = 129, + [202] = 134, + [203] = 128, + [204] = 204, [205] = 205, - [206] = 206, - [207] = 201, - [208] = 200, - [209] = 200, - [210] = 200, - [211] = 201, - [212] = 200, - [213] = 206, - [214] = 201, - [215] = 20, - [216] = 216, - [217] = 27, - [218] = 218, - [219] = 219, - [220] = 218, - [221] = 221, + [206] = 204, + [207] = 204, + [208] = 205, + [209] = 209, + [210] = 210, + [211] = 205, + [212] = 204, + [213] = 205, + [214] = 204, + [215] = 205, + [216] = 210, + [217] = 204, + [218] = 205, + [219] = 25, + [220] = 220, + [221] = 23, [222] = 222, [223] = 223, [224] = 224, - [225] = 224, + [225] = 222, [226] = 226, - [227] = 222, - [228] = 226, - [229] = 221, - [230] = 223, - [231] = 223, - [232] = 219, - [233] = 50, - [234] = 62, - [235] = 235, - [236] = 236, - [237] = 237, - [238] = 238, - [239] = 236, - [240] = 238, + [227] = 227, + [228] = 227, + [229] = 223, + [230] = 230, + [231] = 226, + [232] = 232, + [233] = 230, + [234] = 232, + [235] = 226, + [236] = 224, + [237] = 56, + [238] = 49, + [239] = 239, + [240] = 240, [241] = 241, [242] = 242, - [243] = 243, - [244] = 241, - [245] = 245, + [243] = 242, + [244] = 244, + [245] = 240, [246] = 246, - [247] = 243, - [248] = 248, + [247] = 247, + [248] = 244, [249] = 249, [250] = 250, - [251] = 251, - [252] = 242, - [253] = 246, + [251] = 247, + [252] = 252, + [253] = 253, [254] = 254, [255] = 255, - [256] = 256, - [257] = 243, - [258] = 251, - [259] = 248, + [256] = 250, + [257] = 249, + [258] = 258, + [259] = 259, [260] = 260, - [261] = 261, - [262] = 261, - [263] = 235, - [264] = 256, - [265] = 237, - [266] = 249, - [267] = 267, - [268] = 251, - [269] = 269, - [270] = 245, - [271] = 267, + [261] = 247, + [262] = 255, + [263] = 252, + [264] = 264, + [265] = 265, + [266] = 265, + [267] = 239, + [268] = 260, + [269] = 241, + [270] = 253, + [271] = 271, [272] = 255, - [273] = 260, - [274] = 254, + [273] = 246, + [274] = 274, + [275] = 271, + [276] = 259, + [277] = 264, + [278] = 258, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -914,167 +929,169 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { switch (state) { case 0: if (eof) ADVANCE(37); - if (lookahead == '!') ADVANCE(43); + if (lookahead == '!') ADVANCE(44); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '$') ADVANCE(14); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(52); - if (lookahead == ')') ADVANCE(53); + if (lookahead == '(') ADVANCE(53); + if (lookahead == ')') ADVANCE(54); + if (lookahead == ',') ADVANCE(39); if (lookahead == '-') ADVANCE(25); if (lookahead == ':') ADVANCE(19); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(49); + if (lookahead == '<') ADVANCE(49); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(50); if (lookahead == '\\') SKIP(30) - if (lookahead == 'd') ADVANCE(75); - if (lookahead == 'v') ADVANCE(78); + if (lookahead == 'd') ADVANCE(76); + if (lookahead == 'v') ADVANCE(79); if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(0) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 1: - if (lookahead == '\n') SKIP(3) + if (lookahead == '\n') SKIP(9) END_STATE(); case 2: - if (lookahead == '\n') SKIP(3) + if (lookahead == '\n') SKIP(9) if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(39); + if (lookahead == '\n') SKIP(5) + END_STATE(); + case 4: + if (lookahead == '\n') SKIP(5) + if (lookahead == '\r') SKIP(3) + END_STATE(); + case 5: + if (lookahead == '\n') ADVANCE(40); if (lookahead == '!') ADVANCE(18); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(13); if (lookahead == '-') ADVANCE(25); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(49); - if (lookahead == '\\') SKIP(2) + if (lookahead == '<') ADVANCE(49); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(50); + if (lookahead == '\\') SKIP(4) if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(3) + lookahead == ' ') SKIP(5) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); - case 4: - if (lookahead == '\n') ADVANCE(39); + case 6: + if (lookahead == '\n') ADVANCE(40); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '&') ADVANCE(12); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(49); + if (lookahead == '<') ADVANCE(49); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(50); if (lookahead == '\\') SKIP(8) if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(4) - END_STATE(); - case 5: - if (lookahead == '\n') SKIP(9) - END_STATE(); - case 6: - if (lookahead == '\n') SKIP(9) - if (lookahead == '\r') SKIP(5) + lookahead == ' ') SKIP(6) END_STATE(); case 7: - if (lookahead == '\n') SKIP(4) + if (lookahead == '\n') SKIP(6) END_STATE(); case 8: - if (lookahead == '\n') SKIP(4) + if (lookahead == '\n') SKIP(6) if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '!') ADVANCE(42); + if (lookahead == '!') ADVANCE(43); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '$') ADVANCE(14); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(52); + if (lookahead == '(') ADVANCE(53); + if (lookahead == ',') ADVANCE(39); if (lookahead == '-') ADVANCE(25); - if (lookahead == '\\') SKIP(6) + if (lookahead == '\\') SKIP(2) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 10: if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '#') ADVANCE(61); if (lookahead == '$') ADVANCE(15); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(64); - if (lookahead == ')') ADVANCE(53); - if (lookahead == '\\') ADVANCE(58); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(54); + if (lookahead == '\\') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(63); - if (lookahead != 0) ADVANCE(67); + lookahead == ' ') ADVANCE(64); + if (lookahead != 0) ADVANCE(68); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(70); + if (lookahead == '"') ADVANCE(71); if (lookahead == '\\') ADVANCE(26); if (lookahead != 0) ADVANCE(11); END_STATE(); case 12: - if (lookahead == '&') ADVANCE(45); + if (lookahead == '&') ADVANCE(46); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(70); + if (lookahead == '\'') ADVANCE(71); if (lookahead == '\\') ADVANCE(27); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(54); + if (lookahead == '(') ADVANCE(55); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(54); - if (lookahead != 0) ADVANCE(67); + if (lookahead == '(') ADVANCE(55); + if (lookahead != 0) ADVANCE(68); END_STATE(); case 16: if (lookahead == '(') ADVANCE(17); - if (lookahead == ')') ADVANCE(67); - if (lookahead != 0) ADVANCE(64); + if (lookahead == ')') ADVANCE(68); + if (lookahead != 0) ADVANCE(65); END_STATE(); case 17: - if (lookahead == ')') ADVANCE(67); + if (lookahead == ')') ADVANCE(68); if (lookahead != 0) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '=') ADVANCE(47); + if (lookahead == '=') ADVANCE(48); END_STATE(); case 19: if (lookahead == '=') ADVANCE(38); END_STATE(); case 20: - if (lookahead == 'f') ADVANCE(41); + if (lookahead == 'f') ADVANCE(42); END_STATE(); case 21: if (lookahead == 'i') ADVANCE(20); END_STATE(); case 22: - if (lookahead == 'n') ADVANCE(40); + if (lookahead == 'n') ADVANCE(41); END_STATE(); case 23: if (lookahead == 'o') ADVANCE(22); END_STATE(); case 24: - if (lookahead == '|') ADVANCE(44); + if (lookahead == '|') ADVANCE(45); END_STATE(); case 25: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 26: if (lookahead != 0 && @@ -1086,7 +1103,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { END_STATE(); case 28: if (lookahead != 0 && - lookahead != '(') ADVANCE(67); + lookahead != '(') ADVANCE(68); END_STATE(); case 29: if (eof) ADVANCE(37); @@ -1118,14 +1135,14 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 35: if (eof) ADVANCE(37); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '$') ADVANCE(14); if (lookahead == '&') ADVANCE(12); - if (lookahead == ')') ADVANCE(53); + if (lookahead == ')') ADVANCE(54); if (lookahead == '-') ADVANCE(25); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(49); + if (lookahead == '<') ADVANCE(49); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(50); if (lookahead == '\\') SKIP(32) if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || @@ -1133,27 +1150,27 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 36: if (eof) ADVANCE(37); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(89); + if (lookahead == '#') ADVANCE(90); if (lookahead == '&') ADVANCE(12); if (lookahead == '-') ADVANCE(25); - if (lookahead == '<') ADVANCE(48); - if (lookahead == '=') ADVANCE(46); - if (lookahead == '>') ADVANCE(49); + if (lookahead == '<') ADVANCE(49); + if (lookahead == '=') ADVANCE(47); + if (lookahead == '>') ADVANCE(50); if (lookahead == '\\') SKIP(34) - if (lookahead == 'd') ADVANCE(75); - if (lookahead == 'v') ADVANCE(78); + if (lookahead == 'd') ADVANCE(76); + if (lookahead == 'v') ADVANCE(79); if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(36) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 37: ACCEPT_TOKEN(ts_builtin_sym_end); @@ -1162,347 +1179,350 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { ACCEPT_TOKEN(anon_sym_COLON_EQ); END_STATE(); case 39: - ACCEPT_TOKEN(aux_sym_type_definition_token1); - if (lookahead == '\n') ADVANCE(39); + ACCEPT_TOKEN(anon_sym_COMMA); END_STATE(); case 40: - ACCEPT_TOKEN(anon_sym_dependson); + ACCEPT_TOKEN(aux_sym_type_definition_token1); + if (lookahead == '\n') ADVANCE(40); END_STATE(); case 41: - ACCEPT_TOKEN(anon_sym_visibleif); + ACCEPT_TOKEN(anon_sym_dependson); END_STATE(); case 42: - ACCEPT_TOKEN(anon_sym_BANG); + ACCEPT_TOKEN(anon_sym_visibleif); END_STATE(); case 43: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(47); END_STATE(); case 44: - ACCEPT_TOKEN(anon_sym_PIPE_PIPE); + ACCEPT_TOKEN(anon_sym_BANG); + if (lookahead == '=') ADVANCE(48); END_STATE(); case 45: - ACCEPT_TOKEN(anon_sym_AMP_AMP); + ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); case 46: - ACCEPT_TOKEN(anon_sym_EQ); + ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); case 47: - ACCEPT_TOKEN(anon_sym_BANG_EQ); + ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); case 48: - ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(50); + ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); case 49: - ACCEPT_TOKEN(anon_sym_GT); + ACCEPT_TOKEN(anon_sym_LT); if (lookahead == '=') ADVANCE(51); END_STATE(); case 50: - ACCEPT_TOKEN(anon_sym_LT_EQ); + ACCEPT_TOKEN(anon_sym_GT); + if (lookahead == '=') ADVANCE(52); END_STATE(); case 51: - ACCEPT_TOKEN(anon_sym_GT_EQ); + ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); case 52: - ACCEPT_TOKEN(anon_sym_LPAREN); + ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); case 53: - ACCEPT_TOKEN(anon_sym_RPAREN); + ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); case 54: - ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); + ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); case 55: - ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(64); - if (lookahead == '$') ADVANCE(86); - if (lookahead == '(') ADVANCE(55); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '\\') ADVANCE(56); - if (lookahead == '"' || - lookahead == '\'') ADVANCE(88); - if (lookahead != 0) ADVANCE(55); + ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); case 56: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(64); - if (lookahead == '$') ADVANCE(57); - if (lookahead == '(') ADVANCE(55); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '\n') ADVANCE(65); + if (lookahead == '$') ADVANCE(87); + if (lookahead == '(') ADVANCE(56); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '\\') ADVANCE(57); if (lookahead == '"' || - lookahead == '\'') ADVANCE(88); - if (lookahead != 0) ADVANCE(55); + lookahead == '\'') ADVANCE(89); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 57: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(64); - if (lookahead == '$') ADVANCE(57); - if (lookahead == '(') ADVANCE(55); - if (lookahead == ')') ADVANCE(60); - if (lookahead == '\\') ADVANCE(56); - if (lookahead != 0) ADVANCE(55); + if (lookahead == '\n') ADVANCE(65); + if (lookahead == '$') ADVANCE(58); + if (lookahead == '(') ADVANCE(56); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '\\') ADVANCE(57); + if (lookahead == '"' || + lookahead == '\'') ADVANCE(89); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 58: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(63); - if (lookahead == '\r') ADVANCE(59); - if (lookahead == '$') ADVANCE(66); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(65); - if (lookahead != 0 && - lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); + if (lookahead == '\n') ADVANCE(65); + if (lookahead == '$') ADVANCE(58); + if (lookahead == '(') ADVANCE(56); + if (lookahead == ')') ADVANCE(61); + if (lookahead == '\\') ADVANCE(57); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 59: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(63); - if (lookahead == '$') ADVANCE(28); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(65); + if (lookahead == '\n') ADVANCE(64); + if (lookahead == '\r') ADVANCE(60); + if (lookahead == '$') ADVANCE(67); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(66); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(68); END_STATE(); case 60: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(67); - if (lookahead == '$') ADVANCE(87); - if (lookahead == '(') ADVANCE(55); - if (lookahead == '\\') ADVANCE(61); - if (lookahead == '"' || - ('\'' <= lookahead && lookahead <= ')')) ADVANCE(89); - if (lookahead != 0) ADVANCE(60); + if (lookahead == '\n') ADVANCE(64); + if (lookahead == '$') ADVANCE(28); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(66); + if (lookahead != 0 && + lookahead != '"' && + (lookahead < '\'' || ')' < lookahead)) ADVANCE(68); END_STATE(); case 61: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(67); - if (lookahead == '$') ADVANCE(62); - if (lookahead == '(') ADVANCE(55); - if (lookahead == '\\') ADVANCE(61); + if (lookahead == '\n') ADVANCE(68); + if (lookahead == '$') ADVANCE(88); + if (lookahead == '(') ADVANCE(56); + if (lookahead == '\\') ADVANCE(62); if (lookahead == '"' || - ('\'' <= lookahead && lookahead <= ')')) ADVANCE(89); - if (lookahead != 0) ADVANCE(60); + ('\'' <= lookahead && lookahead <= ')')) ADVANCE(90); + if (lookahead != 0) ADVANCE(61); END_STATE(); case 62: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(67); - if (lookahead == '$') ADVANCE(62); - if (lookahead == '(') ADVANCE(55); - if (lookahead == '\\') ADVANCE(61); - if (lookahead != 0) ADVANCE(60); + if (lookahead == '\n') ADVANCE(68); + if (lookahead == '$') ADVANCE(63); + if (lookahead == '(') ADVANCE(56); + if (lookahead == '\\') ADVANCE(62); + if (lookahead == '"' || + ('\'' <= lookahead && lookahead <= ')')) ADVANCE(90); + if (lookahead != 0) ADVANCE(61); END_STATE(); case 63: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '#') ADVANCE(60); + if (lookahead == '\n') ADVANCE(68); + if (lookahead == '$') ADVANCE(63); + if (lookahead == '(') ADVANCE(56); + if (lookahead == '\\') ADVANCE(62); + if (lookahead != 0) ADVANCE(61); + END_STATE(); + case 64: + ACCEPT_TOKEN(sym_macro_content); + if (lookahead == '#') ADVANCE(61); if (lookahead == '$') ADVANCE(15); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(58); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(59); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(63); + lookahead == ' ') ADVANCE(64); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(68); END_STATE(); - case 64: + case 65: ACCEPT_TOKEN(sym_macro_content); if (lookahead == '$') ADVANCE(16); - if (lookahead == '(') ADVANCE(64); - if (lookahead == ')') ADVANCE(67); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '\\') ADVANCE(69); if (lookahead == '"' || lookahead == '\'') ADVANCE(17); - if (lookahead != 0) ADVANCE(64); + if (lookahead != 0) ADVANCE(65); END_STATE(); - case 65: + case 66: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(66); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(65); + if (lookahead == '$') ADVANCE(67); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(66); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(68); END_STATE(); - case 66: + case 67: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(66); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(65); - if (lookahead != 0) ADVANCE(67); + if (lookahead == '$') ADVANCE(67); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(66); + if (lookahead != 0) ADVANCE(68); END_STATE(); - case 67: + case 68: ACCEPT_TOKEN(sym_macro_content); if (lookahead == '$') ADVANCE(28); - if (lookahead == '(') ADVANCE(64); - if (lookahead == '\\') ADVANCE(65); + if (lookahead == '(') ADVANCE(65); + if (lookahead == '\\') ADVANCE(66); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(68); END_STATE(); - case 68: + case 69: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(69); - if (lookahead == '(') ADVANCE(64); - if (lookahead == ')') ADVANCE(67); - if (lookahead == '\\') ADVANCE(68); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '\\') ADVANCE(69); if (lookahead == '"' || lookahead == '\'') ADVANCE(17); - if (lookahead != 0) ADVANCE(64); - END_STATE(); - case 69: - ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(69); - if (lookahead == '(') ADVANCE(64); - if (lookahead == ')') ADVANCE(67); - if (lookahead == '\\') ADVANCE(68); - if (lookahead != 0) ADVANCE(64); + if (lookahead != 0) ADVANCE(65); END_STATE(); case 70: - ACCEPT_TOKEN(sym_prompt); + ACCEPT_TOKEN(sym_macro_content); + if (lookahead == '$') ADVANCE(70); + if (lookahead == '(') ADVANCE(65); + if (lookahead == ')') ADVANCE(68); + if (lookahead == '\\') ADVANCE(69); + if (lookahead != 0) ADVANCE(65); END_STATE(); case 71: - ACCEPT_TOKEN(sym_symbol); - if (lookahead == ' ') ADVANCE(23); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ACCEPT_TOKEN(sym_prompt); END_STATE(); case 72: ACCEPT_TOKEN(sym_symbol); - if (lookahead == ' ') ADVANCE(21); + if (lookahead == ' ') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 73: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'b') ADVANCE(80); + if (lookahead == ' ') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 74: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'd') ADVANCE(83); + if (lookahead == 'b') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 75: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(82); + if (lookahead == 'd') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 76: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(81); + if (lookahead == 'e') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 77: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(72); + if (lookahead == 'e') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 78: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'i') ADVANCE(84); + if (lookahead == 'e') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 79: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'i') ADVANCE(73); + if (lookahead == 'i') ADVANCE(85); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 80: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'l') ADVANCE(77); + if (lookahead == 'i') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 81: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'n') ADVANCE(74); + if (lookahead == 'l') ADVANCE(78); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 82: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'p') ADVANCE(76); + if (lookahead == 'n') ADVANCE(75); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 83: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 's') ADVANCE(71); + if (lookahead == 'p') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 84: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 's') ADVANCE(79); + if (lookahead == 's') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 85: ACCEPT_TOKEN(sym_symbol); + if (lookahead == 's') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 86: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(64); - if (lookahead == '(') ADVANCE(88); - if (lookahead == ')') ADVANCE(60); - if (lookahead != 0) ADVANCE(55); + ACCEPT_TOKEN(sym_symbol); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(86); END_STATE(); case 87: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(67); + if (lookahead == '\n') ADVANCE(65); if (lookahead == '(') ADVANCE(89); - if (lookahead != 0) ADVANCE(60); + if (lookahead == ')') ADVANCE(61); + if (lookahead != 0) ADVANCE(56); END_STATE(); case 88: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(17); - if (lookahead == ')') ADVANCE(60); - if (lookahead != 0) ADVANCE(88); + if (lookahead == '\n') ADVANCE(68); + if (lookahead == '(') ADVANCE(90); + if (lookahead != 0) ADVANCE(61); END_STATE(); case 89: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == ')') ADVANCE(61); + if (lookahead != 0) ADVANCE(89); + END_STATE(); + case 90: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(89); + lookahead != '\n') ADVANCE(90); END_STATE(); default: return false; @@ -2079,37 +2099,37 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [117] = {.lex_state = 35}, [118] = {.lex_state = 35}, [119] = {.lex_state = 35}, - [120] = {.lex_state = 3}, + [120] = {.lex_state = 35}, [121] = {.lex_state = 35}, - [122] = {.lex_state = 3}, + [122] = {.lex_state = 9}, [123] = {.lex_state = 35}, - [124] = {.lex_state = 35}, - [125] = {.lex_state = 3}, - [126] = {.lex_state = 3}, - [127] = {.lex_state = 35}, + [124] = {.lex_state = 5}, + [125] = {.lex_state = 5}, + [126] = {.lex_state = 35}, + [127] = {.lex_state = 9}, [128] = {.lex_state = 35}, [129] = {.lex_state = 35}, - [130] = {.lex_state = 35}, - [131] = {.lex_state = 9}, - [132] = {.lex_state = 9}, - [133] = {.lex_state = 9}, - [134] = {.lex_state = 9}, + [130] = {.lex_state = 5}, + [131] = {.lex_state = 5}, + [132] = {.lex_state = 35}, + [133] = {.lex_state = 35}, + [134] = {.lex_state = 35}, [135] = {.lex_state = 9}, [136] = {.lex_state = 9}, - [137] = {.lex_state = 3}, - [138] = {.lex_state = 3}, + [137] = {.lex_state = 9}, + [138] = {.lex_state = 9}, [139] = {.lex_state = 9}, - [140] = {.lex_state = 3}, + [140] = {.lex_state = 9}, [141] = {.lex_state = 9}, - [142] = {.lex_state = 3}, - [143] = {.lex_state = 3}, - [144] = {.lex_state = 3}, - [145] = {.lex_state = 3}, - [146] = {.lex_state = 3}, - [147] = {.lex_state = 3}, - [148] = {.lex_state = 9}, - [149] = {.lex_state = 9}, - [150] = {.lex_state = 9}, + [142] = {.lex_state = 5}, + [143] = {.lex_state = 5}, + [144] = {.lex_state = 5}, + [145] = {.lex_state = 5}, + [146] = {.lex_state = 5}, + [147] = {.lex_state = 5}, + [148] = {.lex_state = 5}, + [149] = {.lex_state = 5}, + [150] = {.lex_state = 5}, [151] = {.lex_state = 9}, [152] = {.lex_state = 9}, [153] = {.lex_state = 9}, @@ -2142,98 +2162,102 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [180] = {.lex_state = 9}, [181] = {.lex_state = 9}, [182] = {.lex_state = 9}, - [183] = {.lex_state = 35}, - [184] = {.lex_state = 35}, - [185] = {.lex_state = 4}, - [186] = {.lex_state = 35}, + [183] = {.lex_state = 9}, + [184] = {.lex_state = 9}, + [185] = {.lex_state = 9}, + [186] = {.lex_state = 9}, [187] = {.lex_state = 35}, [188] = {.lex_state = 35}, - [189] = {.lex_state = 4}, - [190] = {.lex_state = 35}, + [189] = {.lex_state = 35}, + [190] = {.lex_state = 6}, [191] = {.lex_state = 35}, [192] = {.lex_state = 35}, - [193] = {.lex_state = 35}, - [194] = {.lex_state = 4}, + [193] = {.lex_state = 6}, + [194] = {.lex_state = 35}, [195] = {.lex_state = 35}, [196] = {.lex_state = 35}, [197] = {.lex_state = 35}, - [198] = {.lex_state = 35}, + [198] = {.lex_state = 6}, [199] = {.lex_state = 35}, - [200] = {.lex_state = 10}, - [201] = {.lex_state = 10}, - [202] = {.lex_state = 10}, - [203] = {.lex_state = 10}, + [200] = {.lex_state = 35}, + [201] = {.lex_state = 35}, + [202] = {.lex_state = 35}, + [203] = {.lex_state = 35}, [204] = {.lex_state = 10}, [205] = {.lex_state = 10}, - [206] = {.lex_state = 3}, + [206] = {.lex_state = 10}, [207] = {.lex_state = 10}, [208] = {.lex_state = 10}, [209] = {.lex_state = 10}, - [210] = {.lex_state = 10}, + [210] = {.lex_state = 5}, [211] = {.lex_state = 10}, [212] = {.lex_state = 10}, - [213] = {.lex_state = 3}, + [213] = {.lex_state = 10}, [214] = {.lex_state = 10}, [215] = {.lex_state = 10}, - [216] = {.lex_state = 10}, + [216] = {.lex_state = 5}, [217] = {.lex_state = 10}, - [218] = {.lex_state = 3}, - [219] = {.lex_state = 35}, - [220] = {.lex_state = 3}, - [221] = {.lex_state = 3}, - [222] = {.lex_state = 35}, - [223] = {.lex_state = 3}, - [224] = {.lex_state = 3}, - [225] = {.lex_state = 3}, - [226] = {.lex_state = 3}, - [227] = {.lex_state = 35}, - [228] = {.lex_state = 3}, - [229] = {.lex_state = 3}, - [230] = {.lex_state = 3}, - [231] = {.lex_state = 3}, + [218] = {.lex_state = 10}, + [219] = {.lex_state = 10}, + [220] = {.lex_state = 10}, + [221] = {.lex_state = 10}, + [222] = {.lex_state = 5}, + [223] = {.lex_state = 35}, + [224] = {.lex_state = 5}, + [225] = {.lex_state = 5}, + [226] = {.lex_state = 5}, + [227] = {.lex_state = 5}, + [228] = {.lex_state = 5}, + [229] = {.lex_state = 35}, + [230] = {.lex_state = 5}, + [231] = {.lex_state = 5}, [232] = {.lex_state = 35}, - [233] = {.lex_state = 3}, - [234] = {.lex_state = 3}, - [235] = {.lex_state = 35}, - [236] = {.lex_state = 4}, - [237] = {.lex_state = 4}, - [238] = {.lex_state = 4}, - [239] = {.lex_state = 4}, - [240] = {.lex_state = 4}, - [241] = {.lex_state = 4}, - [242] = {.lex_state = 4}, - [243] = {.lex_state = 4}, - [244] = {.lex_state = 4}, - [245] = {.lex_state = 0}, - [246] = {.lex_state = 4}, - [247] = {.lex_state = 4}, - [248] = {.lex_state = 4}, - [249] = {.lex_state = 0}, - [250] = {.lex_state = 0}, - [251] = {.lex_state = 0}, - [252] = {.lex_state = 4}, - [253] = {.lex_state = 4}, - [254] = {.lex_state = 35}, - [255] = {.lex_state = 35}, - [256] = {.lex_state = 0}, - [257] = {.lex_state = 4}, - [258] = {.lex_state = 0}, - [259] = {.lex_state = 4}, - [260] = {.lex_state = 0, .external_lex_state = 1}, - [261] = {.lex_state = 35}, - [262] = {.lex_state = 35}, - [263] = {.lex_state = 35}, - [264] = {.lex_state = 0}, - [265] = {.lex_state = 4}, - [266] = {.lex_state = 0}, - [267] = {.lex_state = 0}, + [233] = {.lex_state = 5}, + [234] = {.lex_state = 35}, + [235] = {.lex_state = 5}, + [236] = {.lex_state = 5}, + [237] = {.lex_state = 5}, + [238] = {.lex_state = 5}, + [239] = {.lex_state = 35}, + [240] = {.lex_state = 6}, + [241] = {.lex_state = 6}, + [242] = {.lex_state = 6}, + [243] = {.lex_state = 6}, + [244] = {.lex_state = 6}, + [245] = {.lex_state = 6}, + [246] = {.lex_state = 0}, + [247] = {.lex_state = 6}, + [248] = {.lex_state = 6}, + [249] = {.lex_state = 6}, + [250] = {.lex_state = 6}, + [251] = {.lex_state = 6}, + [252] = {.lex_state = 6}, + [253] = {.lex_state = 0}, + [254] = {.lex_state = 0}, + [255] = {.lex_state = 0}, + [256] = {.lex_state = 6}, + [257] = {.lex_state = 6}, + [258] = {.lex_state = 35}, + [259] = {.lex_state = 35}, + [260] = {.lex_state = 0}, + [261] = {.lex_state = 6}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 6}, + [264] = {.lex_state = 0, .external_lex_state = 1}, + [265] = {.lex_state = 35}, + [266] = {.lex_state = 35}, + [267] = {.lex_state = 35}, [268] = {.lex_state = 0}, - [269] = {.lex_state = 0}, + [269] = {.lex_state = 6}, [270] = {.lex_state = 0}, [271] = {.lex_state = 0}, - [272] = {.lex_state = 35}, - [273] = {.lex_state = 0, .external_lex_state = 1}, - [274] = {.lex_state = 35}, + [272] = {.lex_state = 0}, + [273] = {.lex_state = 0}, + [274] = {.lex_state = 0}, + [275] = {.lex_state = 0}, + [276] = {.lex_state = 35}, + [277] = {.lex_state = 0, .external_lex_state = 1}, + [278] = {.lex_state = 35}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -2252,6 +2276,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_endif] = ACTIONS(1), [anon_sym_source] = ACTIONS(1), [anon_sym_COLON_EQ] = ACTIONS(1), + [anon_sym_COMMA] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_tristate] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), @@ -2286,18 +2311,18 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_text] = ACTIONS(1), }, [1] = { - [sym_configuration] = STATE(250), - [sym_mainmenu] = STATE(97), - [sym__entry] = STATE(101), - [sym_config] = STATE(101), - [sym_menuconfig] = STATE(101), - [sym_choice] = STATE(101), - [sym_comment_entry] = STATE(101), - [sym_menu] = STATE(101), - [sym_if] = STATE(101), - [sym_source] = STATE(101), - [sym_variable] = STATE(101), - [aux_sym_configuration_repeat1] = STATE(101), + [sym_configuration] = STATE(254), + [sym_mainmenu] = STATE(108), + [sym__entry] = STATE(106), + [sym_config] = STATE(106), + [sym_menuconfig] = STATE(106), + [sym_choice] = STATE(106), + [sym_comment_entry] = STATE(106), + [sym_menu] = STATE(106), + [sym_if] = STATE(106), + [sym_source] = STATE(106), + [sym_variable] = STATE(106), + [aux_sym_configuration_repeat1] = STATE(106), [ts_builtin_sym_end] = ACTIONS(5), [sym_symbol] = ACTIONS(7), [anon_sym_mainmenu] = ACTIONS(9), @@ -2311,28 +2336,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [2] = { - [sym__entry] = STATE(107), - [sym_config] = STATE(107), - [sym_menuconfig] = STATE(107), - [sym_choice] = STATE(107), - [sym_comment_entry] = STATE(107), - [sym_menu] = STATE(107), - [sym_if] = STATE(107), - [sym_source] = STATE(107), - [sym_variable] = STATE(107), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(107), - [aux_sym_config_repeat1] = STATE(14), + [sym__entry] = STATE(103), + [sym_config] = STATE(103), + [sym_menuconfig] = STATE(103), + [sym_choice] = STATE(103), + [sym_comment_entry] = STATE(103), + [sym_menu] = STATE(103), + [sym_if] = STATE(103), + [sym_source] = STATE(103), + [sym_variable] = STATE(103), + [sym__config_option] = STATE(4), + [sym_type_definition] = STATE(4), + [sym_input_prompt] = STATE(4), + [sym_default_value] = STATE(4), + [sym_type_definition_default] = STATE(4), + [sym_dependencies] = STATE(4), + [sym_reverse_dependencies] = STATE(4), + [sym_weak_reverse_dependencies] = STATE(4), + [sym_limiting_menu_display] = STATE(4), + [sym_numerical_ranges] = STATE(4), + [sym_help_text] = STATE(4), + [aux_sym_configuration_repeat1] = STATE(103), + [aux_sym_config_repeat1] = STATE(4), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), @@ -2362,28 +2387,28 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_comment] = ACTIONS(3), }, [3] = { - [sym__entry] = STATE(95), - [sym_config] = STATE(95), - [sym_menuconfig] = STATE(95), - [sym_choice] = STATE(95), - [sym_comment_entry] = STATE(95), - [sym_menu] = STATE(95), - [sym_if] = STATE(95), - [sym_source] = STATE(95), - [sym_variable] = STATE(95), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(95), - [aux_sym_config_repeat1] = STATE(14), + [sym__entry] = STATE(104), + [sym_config] = STATE(104), + [sym_menuconfig] = STATE(104), + [sym_choice] = STATE(104), + [sym_comment_entry] = STATE(104), + [sym_menu] = STATE(104), + [sym_if] = STATE(104), + [sym_source] = STATE(104), + [sym_variable] = STATE(104), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(104), + [aux_sym_config_repeat1] = STATE(11), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), @@ -2408,20 +2433,71 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [4] = { - [sym__entry] = STATE(96), - [sym_config] = STATE(96), - [sym_menuconfig] = STATE(96), - [sym_choice] = STATE(96), - [sym_comment_entry] = STATE(96), - [sym_menu] = STATE(96), - [sym_if] = STATE(96), - [sym_source] = STATE(96), - [sym_variable] = STATE(96), + [sym__entry] = STATE(98), + [sym_config] = STATE(98), + [sym_menuconfig] = STATE(98), + [sym_choice] = STATE(98), + [sym_comment_entry] = STATE(98), + [sym_menu] = STATE(98), + [sym_if] = STATE(98), + [sym_source] = STATE(98), + [sym_variable] = STATE(98), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(98), + [aux_sym_config_repeat1] = STATE(11), + [sym_symbol] = ACTIONS(25), + [anon_sym_config] = ACTIONS(27), + [anon_sym_menuconfig] = ACTIONS(29), + [anon_sym_choice] = ACTIONS(31), + [anon_sym_comment] = ACTIONS(33), + [anon_sym_menu] = ACTIONS(35), + [anon_sym_endmenu] = ACTIONS(69), + [anon_sym_if] = ACTIONS(39), + [anon_sym_source] = ACTIONS(41), + [anon_sym_bool] = ACTIONS(43), + [anon_sym_tristate] = ACTIONS(43), + [anon_sym_int] = ACTIONS(43), + [anon_sym_hex] = ACTIONS(43), + [anon_sym_string] = ACTIONS(43), + [anon_sym_prompt] = ACTIONS(45), + [anon_sym_default] = ACTIONS(47), + [anon_sym_def_bool] = ACTIONS(49), + [anon_sym_def_tristate] = ACTIONS(49), + [anon_sym_dependson] = ACTIONS(51), + [anon_sym_select] = ACTIONS(53), + [anon_sym_imply] = ACTIONS(55), + [anon_sym_visibleif] = ACTIONS(57), + [anon_sym_range] = ACTIONS(59), + [anon_sym_help] = ACTIONS(61), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), + [sym_comment] = ACTIONS(3), + }, + [5] = { + [sym__entry] = STATE(109), + [sym_config] = STATE(109), + [sym_menuconfig] = STATE(109), + [sym_choice] = STATE(109), + [sym_comment_entry] = STATE(109), + [sym_menu] = STATE(109), + [sym_if] = STATE(109), + [sym_source] = STATE(109), + [sym_variable] = STATE(109), [sym__config_option] = STATE(3), [sym_type_definition] = STATE(3), [sym_input_prompt] = STATE(3), @@ -2433,7 +2509,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_limiting_menu_display] = STATE(3), [sym_numerical_ranges] = STATE(3), [sym_help_text] = STATE(3), - [aux_sym_configuration_repeat1] = STATE(96), + [aux_sym_configuration_repeat1] = STATE(109), [aux_sym_config_repeat1] = STATE(3), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), @@ -2441,7 +2517,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_choice] = ACTIONS(31), [anon_sym_comment] = ACTIONS(33), [anon_sym_menu] = ACTIONS(35), - [anon_sym_endmenu] = ACTIONS(67), + [anon_sym_endmenu] = ACTIONS(71), [anon_sym_if] = ACTIONS(39), [anon_sym_source] = ACTIONS(41), [anon_sym_bool] = ACTIONS(43), @@ -2459,40 +2535,39 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(69), - [sym_modules] = ACTIONS(69), + [sym_optional] = ACTIONS(73), + [sym_modules] = ACTIONS(73), [sym_comment] = ACTIONS(3), }, - [5] = { - [sym__entry] = STATE(94), - [sym_config] = STATE(94), - [sym_menuconfig] = STATE(94), - [sym_choice] = STATE(94), - [sym_comment_entry] = STATE(94), - [sym_menu] = STATE(94), - [sym_if] = STATE(94), - [sym_source] = STATE(94), - [sym_variable] = STATE(94), - [sym__config_option] = STATE(2), - [sym_type_definition] = STATE(2), - [sym_input_prompt] = STATE(2), - [sym_default_value] = STATE(2), - [sym_type_definition_default] = STATE(2), - [sym_dependencies] = STATE(2), - [sym_reverse_dependencies] = STATE(2), - [sym_weak_reverse_dependencies] = STATE(2), - [sym_limiting_menu_display] = STATE(2), - [sym_numerical_ranges] = STATE(2), - [sym_help_text] = STATE(2), - [aux_sym_configuration_repeat1] = STATE(94), - [aux_sym_config_repeat1] = STATE(2), + [6] = { + [sym__entry] = STATE(101), + [sym_config] = STATE(101), + [sym_menuconfig] = STATE(101), + [sym_choice] = STATE(101), + [sym_comment_entry] = STATE(101), + [sym_menu] = STATE(101), + [sym_if] = STATE(101), + [sym_source] = STATE(101), + [sym_variable] = STATE(101), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(101), + [aux_sym_config_repeat1] = STATE(11), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), [anon_sym_choice] = ACTIONS(31), [anon_sym_comment] = ACTIONS(33), [anon_sym_menu] = ACTIONS(35), - [anon_sym_endmenu] = ACTIONS(71), [anon_sym_if] = ACTIONS(39), [anon_sym_source] = ACTIONS(41), [anon_sym_bool] = ACTIONS(43), @@ -2510,33 +2585,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(73), - [sym_modules] = ACTIONS(73), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, - [6] = { - [sym__entry] = STATE(99), - [sym_config] = STATE(99), - [sym_menuconfig] = STATE(99), - [sym_choice] = STATE(99), - [sym_comment_entry] = STATE(99), - [sym_menu] = STATE(99), - [sym_if] = STATE(99), - [sym_source] = STATE(99), - [sym_variable] = STATE(99), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(99), - [aux_sym_config_repeat1] = STATE(14), + [7] = { + [sym__entry] = STATE(97), + [sym_config] = STATE(97), + [sym_menuconfig] = STATE(97), + [sym_choice] = STATE(97), + [sym_comment_entry] = STATE(97), + [sym_menu] = STATE(97), + [sym_if] = STATE(97), + [sym_source] = STATE(97), + [sym_variable] = STATE(97), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(97), + [aux_sym_config_repeat1] = STATE(11), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), @@ -2560,83 +2635,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), - [sym_comment] = ACTIONS(3), - }, - [7] = { - [sym__entry] = STATE(98), - [sym_config] = STATE(98), - [sym_menuconfig] = STATE(98), - [sym_choice] = STATE(98), - [sym_comment_entry] = STATE(98), - [sym_menu] = STATE(98), - [sym_if] = STATE(98), - [sym_source] = STATE(98), - [sym_variable] = STATE(98), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(98), - [aux_sym_config_repeat1] = STATE(14), - [sym_symbol] = ACTIONS(25), - [anon_sym_config] = ACTIONS(27), - [anon_sym_menuconfig] = ACTIONS(29), - [anon_sym_choice] = ACTIONS(31), - [anon_sym_comment] = ACTIONS(33), - [anon_sym_menu] = ACTIONS(35), - [anon_sym_if] = ACTIONS(39), - [anon_sym_source] = ACTIONS(41), - [anon_sym_bool] = ACTIONS(43), - [anon_sym_tristate] = ACTIONS(43), - [anon_sym_int] = ACTIONS(43), - [anon_sym_hex] = ACTIONS(43), - [anon_sym_string] = ACTIONS(43), - [anon_sym_prompt] = ACTIONS(45), - [anon_sym_default] = ACTIONS(47), - [anon_sym_def_bool] = ACTIONS(49), - [anon_sym_def_tristate] = ACTIONS(49), - [anon_sym_dependson] = ACTIONS(51), - [anon_sym_select] = ACTIONS(53), - [anon_sym_imply] = ACTIONS(55), - [anon_sym_visibleif] = ACTIONS(57), - [anon_sym_range] = ACTIONS(59), - [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [8] = { - [sym__entry] = STATE(102), - [sym_config] = STATE(102), - [sym_menuconfig] = STATE(102), - [sym_choice] = STATE(102), - [sym_comment_entry] = STATE(102), - [sym_menu] = STATE(102), - [sym_if] = STATE(102), - [sym_source] = STATE(102), - [sym_variable] = STATE(102), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(102), - [aux_sym_config_repeat1] = STATE(14), + [sym__entry] = STATE(107), + [sym_config] = STATE(107), + [sym_menuconfig] = STATE(107), + [sym_choice] = STATE(107), + [sym_comment_entry] = STATE(107), + [sym_menu] = STATE(107), + [sym_if] = STATE(107), + [sym_source] = STATE(107), + [sym_variable] = STATE(107), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(107), + [aux_sym_config_repeat1] = STATE(11), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), @@ -2660,33 +2685,33 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [9] = { - [sym__entry] = STATE(106), - [sym_config] = STATE(106), - [sym_menuconfig] = STATE(106), - [sym_choice] = STATE(106), - [sym_comment_entry] = STATE(106), - [sym_menu] = STATE(106), - [sym_if] = STATE(106), - [sym_source] = STATE(106), - [sym_variable] = STATE(106), - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_configuration_repeat1] = STATE(106), - [aux_sym_config_repeat1] = STATE(14), + [sym__entry] = STATE(105), + [sym_config] = STATE(105), + [sym_menuconfig] = STATE(105), + [sym_choice] = STATE(105), + [sym_comment_entry] = STATE(105), + [sym_menu] = STATE(105), + [sym_if] = STATE(105), + [sym_source] = STATE(105), + [sym_variable] = STATE(105), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_configuration_repeat1] = STATE(105), + [aux_sym_config_repeat1] = STATE(11), [sym_symbol] = ACTIONS(25), [anon_sym_config] = ACTIONS(27), [anon_sym_menuconfig] = ACTIONS(29), @@ -2710,8 +2735,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, [10] = { @@ -2753,34 +2778,77 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(77), + [sym_modules] = ACTIONS(77), [sym_comment] = ACTIONS(3), }, [11] = { - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_config_repeat1] = STATE(14), - [sym_symbol] = ACTIONS(77), - [anon_sym_config] = ACTIONS(77), - [anon_sym_menuconfig] = ACTIONS(77), - [anon_sym_choice] = ACTIONS(77), - [anon_sym_endchoice] = ACTIONS(77), - [anon_sym_comment] = ACTIONS(77), - [anon_sym_menu] = ACTIONS(77), - [anon_sym_endmenu] = ACTIONS(77), - [anon_sym_if] = ACTIONS(77), - [anon_sym_endif] = ACTIONS(77), - [anon_sym_source] = ACTIONS(77), + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_config_repeat1] = STATE(11), + [sym_symbol] = ACTIONS(79), + [anon_sym_config] = ACTIONS(79), + [anon_sym_menuconfig] = ACTIONS(79), + [anon_sym_choice] = ACTIONS(79), + [anon_sym_endchoice] = ACTIONS(79), + [anon_sym_comment] = ACTIONS(79), + [anon_sym_menu] = ACTIONS(79), + [anon_sym_endmenu] = ACTIONS(79), + [anon_sym_if] = ACTIONS(79), + [anon_sym_endif] = ACTIONS(79), + [anon_sym_source] = ACTIONS(79), + [anon_sym_bool] = ACTIONS(81), + [anon_sym_tristate] = ACTIONS(81), + [anon_sym_int] = ACTIONS(81), + [anon_sym_hex] = ACTIONS(81), + [anon_sym_string] = ACTIONS(81), + [anon_sym_prompt] = ACTIONS(84), + [anon_sym_default] = ACTIONS(87), + [anon_sym_def_bool] = ACTIONS(90), + [anon_sym_def_tristate] = ACTIONS(90), + [anon_sym_dependson] = ACTIONS(93), + [anon_sym_select] = ACTIONS(96), + [anon_sym_imply] = ACTIONS(99), + [anon_sym_visibleif] = ACTIONS(102), + [anon_sym_range] = ACTIONS(105), + [anon_sym_help] = ACTIONS(108), + [sym_optional] = ACTIONS(111), + [sym_modules] = ACTIONS(111), + [sym_comment] = ACTIONS(3), + }, + [12] = { + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_config_repeat1] = STATE(11), + [sym_symbol] = ACTIONS(114), + [anon_sym_config] = ACTIONS(114), + [anon_sym_menuconfig] = ACTIONS(114), + [anon_sym_choice] = ACTIONS(114), + [anon_sym_endchoice] = ACTIONS(114), + [anon_sym_comment] = ACTIONS(114), + [anon_sym_menu] = ACTIONS(114), + [anon_sym_endmenu] = ACTIONS(114), + [anon_sym_if] = ACTIONS(114), + [anon_sym_endif] = ACTIONS(114), + [anon_sym_source] = ACTIONS(114), [anon_sym_bool] = ACTIONS(43), [anon_sym_tristate] = ACTIONS(43), [anon_sym_int] = ACTIONS(43), @@ -2796,34 +2864,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, - [12] = { - [sym__config_option] = STATE(13), - [sym_type_definition] = STATE(13), - [sym_input_prompt] = STATE(13), - [sym_default_value] = STATE(13), - [sym_type_definition_default] = STATE(13), - [sym_dependencies] = STATE(13), - [sym_reverse_dependencies] = STATE(13), - [sym_weak_reverse_dependencies] = STATE(13), - [sym_limiting_menu_display] = STATE(13), - [sym_numerical_ranges] = STATE(13), - [sym_help_text] = STATE(13), - [aux_sym_config_repeat1] = STATE(13), - [sym_symbol] = ACTIONS(79), - [anon_sym_config] = ACTIONS(79), - [anon_sym_menuconfig] = ACTIONS(79), - [anon_sym_choice] = ACTIONS(79), - [anon_sym_endchoice] = ACTIONS(79), - [anon_sym_comment] = ACTIONS(79), - [anon_sym_menu] = ACTIONS(79), - [anon_sym_endmenu] = ACTIONS(79), - [anon_sym_if] = ACTIONS(79), - [anon_sym_endif] = ACTIONS(79), - [anon_sym_source] = ACTIONS(79), + [13] = { + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_config_repeat1] = STATE(11), + [sym_symbol] = ACTIONS(116), + [anon_sym_config] = ACTIONS(116), + [anon_sym_menuconfig] = ACTIONS(116), + [anon_sym_choice] = ACTIONS(116), + [anon_sym_endchoice] = ACTIONS(116), + [anon_sym_comment] = ACTIONS(116), + [anon_sym_menu] = ACTIONS(116), + [anon_sym_endmenu] = ACTIONS(116), + [anon_sym_if] = ACTIONS(116), + [anon_sym_endif] = ACTIONS(116), + [anon_sym_source] = ACTIONS(116), [anon_sym_bool] = ACTIONS(43), [anon_sym_tristate] = ACTIONS(43), [anon_sym_int] = ACTIONS(43), @@ -2839,34 +2907,34 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(81), - [sym_modules] = ACTIONS(81), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, - [13] = { - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_config_repeat1] = STATE(14), - [sym_symbol] = ACTIONS(83), - [anon_sym_config] = ACTIONS(83), - [anon_sym_menuconfig] = ACTIONS(83), - [anon_sym_choice] = ACTIONS(83), - [anon_sym_endchoice] = ACTIONS(83), - [anon_sym_comment] = ACTIONS(83), - [anon_sym_menu] = ACTIONS(83), - [anon_sym_endmenu] = ACTIONS(83), - [anon_sym_if] = ACTIONS(83), - [anon_sym_endif] = ACTIONS(83), - [anon_sym_source] = ACTIONS(83), + [14] = { + [sym__config_option] = STATE(11), + [sym_type_definition] = STATE(11), + [sym_input_prompt] = STATE(11), + [sym_default_value] = STATE(11), + [sym_type_definition_default] = STATE(11), + [sym_dependencies] = STATE(11), + [sym_reverse_dependencies] = STATE(11), + [sym_weak_reverse_dependencies] = STATE(11), + [sym_limiting_menu_display] = STATE(11), + [sym_numerical_ranges] = STATE(11), + [sym_help_text] = STATE(11), + [aux_sym_config_repeat1] = STATE(11), + [sym_symbol] = ACTIONS(118), + [anon_sym_config] = ACTIONS(118), + [anon_sym_menuconfig] = ACTIONS(118), + [anon_sym_choice] = ACTIONS(118), + [anon_sym_endchoice] = ACTIONS(118), + [anon_sym_comment] = ACTIONS(118), + [anon_sym_menu] = ACTIONS(118), + [anon_sym_endmenu] = ACTIONS(118), + [anon_sym_if] = ACTIONS(118), + [anon_sym_endif] = ACTIONS(118), + [anon_sym_source] = ACTIONS(118), [anon_sym_bool] = ACTIONS(43), [anon_sym_tristate] = ACTIONS(43), [anon_sym_int] = ACTIONS(43), @@ -2882,51 +2950,8 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_visibleif] = ACTIONS(57), [anon_sym_range] = ACTIONS(59), [anon_sym_help] = ACTIONS(61), - [sym_optional] = ACTIONS(63), - [sym_modules] = ACTIONS(63), - [sym_comment] = ACTIONS(3), - }, - [14] = { - [sym__config_option] = STATE(14), - [sym_type_definition] = STATE(14), - [sym_input_prompt] = STATE(14), - [sym_default_value] = STATE(14), - [sym_type_definition_default] = STATE(14), - [sym_dependencies] = STATE(14), - [sym_reverse_dependencies] = STATE(14), - [sym_weak_reverse_dependencies] = STATE(14), - [sym_limiting_menu_display] = STATE(14), - [sym_numerical_ranges] = STATE(14), - [sym_help_text] = STATE(14), - [aux_sym_config_repeat1] = STATE(14), - [sym_symbol] = ACTIONS(85), - [anon_sym_config] = ACTIONS(85), - [anon_sym_menuconfig] = ACTIONS(85), - [anon_sym_choice] = ACTIONS(85), - [anon_sym_endchoice] = ACTIONS(85), - [anon_sym_comment] = ACTIONS(85), - [anon_sym_menu] = ACTIONS(85), - [anon_sym_endmenu] = ACTIONS(85), - [anon_sym_if] = ACTIONS(85), - [anon_sym_endif] = ACTIONS(85), - [anon_sym_source] = ACTIONS(85), - [anon_sym_bool] = ACTIONS(87), - [anon_sym_tristate] = ACTIONS(87), - [anon_sym_int] = ACTIONS(87), - [anon_sym_hex] = ACTIONS(87), - [anon_sym_string] = ACTIONS(87), - [anon_sym_prompt] = ACTIONS(90), - [anon_sym_default] = ACTIONS(93), - [anon_sym_def_bool] = ACTIONS(96), - [anon_sym_def_tristate] = ACTIONS(96), - [anon_sym_dependson] = ACTIONS(99), - [anon_sym_select] = ACTIONS(102), - [anon_sym_imply] = ACTIONS(105), - [anon_sym_visibleif] = ACTIONS(108), - [anon_sym_range] = ACTIONS(111), - [anon_sym_help] = ACTIONS(114), - [sym_optional] = ACTIONS(117), - [sym_modules] = ACTIONS(117), + [sym_optional] = ACTIONS(67), + [sym_modules] = ACTIONS(67), [sym_comment] = ACTIONS(3), }, }; @@ -2965,7 +2990,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - ACTIONS(79), 8, + ACTIONS(116), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -2974,7 +2999,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - STATE(16), 12, + STATE(17), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -3011,7 +3036,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(128), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(146), 2, + ACTIONS(142), 2, sym_optional, sym_modules, ACTIONS(122), 5, @@ -3020,7 +3045,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - ACTIONS(83), 8, + ACTIONS(114), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3029,7 +3054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - STATE(19), 12, + STATE(17), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -3045,37 +3070,37 @@ static const uint16_t ts_small_parse_table[] = { [140] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(124), 1, + ACTIONS(146), 1, + ts_builtin_sym_end, + ACTIONS(151), 1, anon_sym_prompt, - ACTIONS(126), 1, + ACTIONS(154), 1, anon_sym_default, - ACTIONS(130), 1, + ACTIONS(160), 1, anon_sym_dependson, - ACTIONS(132), 1, + ACTIONS(163), 1, anon_sym_select, - ACTIONS(134), 1, + ACTIONS(166), 1, anon_sym_imply, - ACTIONS(136), 1, + ACTIONS(169), 1, anon_sym_visibleif, - ACTIONS(138), 1, + ACTIONS(172), 1, anon_sym_range, - ACTIONS(140), 1, + ACTIONS(175), 1, anon_sym_help, - ACTIONS(148), 1, - ts_builtin_sym_end, - ACTIONS(128), 2, + ACTIONS(157), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(146), 2, + ACTIONS(178), 2, sym_optional, sym_modules, - ACTIONS(122), 5, + ACTIONS(148), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - ACTIONS(75), 8, + ACTIONS(79), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3084,7 +3109,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - STATE(19), 12, + STATE(17), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -3116,12 +3141,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_range, ACTIONS(140), 1, anon_sym_help, - ACTIONS(150), 1, + ACTIONS(181), 1, ts_builtin_sym_end, ACTIONS(128), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(146), 2, + ACTIONS(142), 2, sym_optional, sym_modules, ACTIONS(122), 5, @@ -3130,7 +3155,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - ACTIONS(77), 8, + ACTIONS(118), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3139,7 +3164,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - STATE(19), 12, + STATE(17), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -3155,37 +3180,37 @@ static const uint16_t ts_small_parse_table[] = { [280] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(152), 1, - ts_builtin_sym_end, - ACTIONS(157), 1, + ACTIONS(124), 1, anon_sym_prompt, - ACTIONS(160), 1, + ACTIONS(126), 1, anon_sym_default, - ACTIONS(166), 1, + ACTIONS(130), 1, anon_sym_dependson, - ACTIONS(169), 1, + ACTIONS(132), 1, anon_sym_select, - ACTIONS(172), 1, + ACTIONS(134), 1, anon_sym_imply, - ACTIONS(175), 1, + ACTIONS(136), 1, anon_sym_visibleif, - ACTIONS(178), 1, + ACTIONS(138), 1, anon_sym_range, - ACTIONS(181), 1, + ACTIONS(140), 1, anon_sym_help, - ACTIONS(163), 2, + ACTIONS(183), 1, + ts_builtin_sym_end, + ACTIONS(128), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(184), 2, + ACTIONS(185), 2, sym_optional, sym_modules, - ACTIONS(154), 5, + ACTIONS(122), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - ACTIONS(85), 8, + ACTIONS(75), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3194,7 +3219,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - STATE(19), 12, + STATE(18), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -3207,19 +3232,25 @@ static const uint16_t ts_small_parse_table[] = { sym_numerical_ranges, sym_help_text, aux_sym_config_repeat1, - [350] = 3, + [350] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 8, + ACTIONS(191), 1, + anon_sym_AMP_AMP, + ACTIONS(193), 1, + anon_sym_EQ, + ACTIONS(197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(189), 3, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, + ACTIONS(195), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(187), 28, + ACTIONS(187), 26, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3245,22 +3276,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [394] = 3, + [402] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(193), 8, - anon_sym_dependson, - anon_sym_visibleif, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(193), 1, anon_sym_EQ, + ACTIONS(197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(195), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(191), 28, + ACTIONS(189), 4, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(187), 26, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3286,23 +3320,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [438] = 4, + [452] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(199), 1, + ACTIONS(191), 1, + anon_sym_AMP_AMP, + ACTIONS(193), 1, anon_sym_EQ, - ACTIONS(197), 7, + ACTIONS(203), 1, + anon_sym_PIPE_PIPE, + ACTIONS(197), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 2, anon_sym_dependson, anon_sym_visibleif, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(195), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 28, + ACTIONS(199), 26, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3328,13 +3366,11 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [484] = 3, + [506] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(197), 8, + ACTIONS(207), 8, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, @@ -3343,7 +3379,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 28, + ACTIONS(205), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3372,24 +3408,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [528] = 6, + [550] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(199), 1, - anon_sym_EQ, - ACTIONS(203), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(201), 3, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(197), 4, + ACTIONS(211), 8, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(195), 26, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(209), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3415,27 +3446,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [578] = 8, + [594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(199), 1, - anon_sym_EQ, - ACTIONS(209), 1, - anon_sym_PIPE_PIPE, - ACTIONS(211), 1, - anon_sym_AMP_AMP, - ACTIONS(203), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(207), 2, + ACTIONS(215), 8, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(201), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(205), 26, + ACTIONS(213), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3461,26 +3487,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [632] = 7, + [638] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(199), 1, - anon_sym_EQ, - ACTIONS(211), 1, - anon_sym_AMP_AMP, - ACTIONS(203), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(197), 3, + ACTIONS(219), 8, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, - ACTIONS(201), 3, + anon_sym_AMP_AMP, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 26, + ACTIONS(217), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3506,11 +3528,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [684] = 3, + [682] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(215), 8, + ACTIONS(223), 8, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, @@ -3519,7 +3543,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(213), 28, + ACTIONS(221), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3548,10 +3572,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [728] = 3, + [726] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 8, + ACTIONS(189), 8, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, @@ -3560,7 +3584,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(217), 28, + ACTIONS(187), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3589,19 +3613,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [772] = 3, + [770] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 8, + ACTIONS(193), 1, + anon_sym_EQ, + ACTIONS(189), 7, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(221), 28, + ACTIONS(187), 28, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3630,26 +3655,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [816] = 7, + [816] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(225), 1, + ACTIONS(215), 9, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(227), 1, anon_sym_EQ, - ACTIONS(231), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(229), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(197), 4, - ts_builtin_sym_end, - anon_sym_dependson, - anon_sym_visibleif, - anon_sym_PIPE_PIPE, - ACTIONS(195), 23, + ACTIONS(213), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3672,21 +3691,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [866] = 3, + [858] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(193), 9, + ACTIONS(225), 1, + anon_sym_EQ, + ACTIONS(229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(227), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(189), 5, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(191), 25, + ACTIONS(187), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3709,23 +3735,27 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [908] = 3, + [906] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(215), 9, - ts_builtin_sym_end, - anon_sym_dependson, - anon_sym_visibleif, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, + ACTIONS(225), 1, anon_sym_EQ, + ACTIONS(231), 1, + anon_sym_AMP_AMP, + ACTIONS(229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(227), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(213), 25, + ACTIONS(189), 4, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + ACTIONS(187), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3748,23 +3778,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [950] = 3, + [956] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 9, + ACTIONS(225), 1, + anon_sym_EQ, + ACTIONS(231), 1, + anon_sym_AMP_AMP, + ACTIONS(233), 1, + anon_sym_PIPE_PIPE, + ACTIONS(229), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(201), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, + ACTIONS(227), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(187), 25, + ACTIONS(199), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3787,15 +3822,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [992] = 4, + [1008] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, + ACTIONS(225), 1, anon_sym_EQ, - ACTIONS(197), 8, + ACTIONS(189), 8, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, @@ -3804,7 +3837,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 25, + ACTIONS(187), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3830,10 +3863,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [1036] = 3, + [1052] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(197), 9, + ACTIONS(189), 9, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, @@ -3843,7 +3876,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 25, + ACTIONS(187), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3869,25 +3902,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [1078] = 6, + [1094] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(227), 1, - anon_sym_EQ, - ACTIONS(231), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(229), 3, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(197), 5, + ACTIONS(211), 9, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(195), 23, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(209), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3910,28 +3938,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [1126] = 8, + [1136] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(225), 1, - anon_sym_AMP_AMP, - ACTIONS(227), 1, - anon_sym_EQ, - ACTIONS(233), 1, - anon_sym_PIPE_PIPE, - ACTIONS(231), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(207), 3, + ACTIONS(207), 9, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(229), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(205), 23, + ACTIONS(205), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -3954,6 +3977,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, sym_symbol, [1178] = 3, ACTIONS(3), 1, @@ -4066,7 +4091,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(7), 12, + STATE(9), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4156,7 +4181,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(11), 12, + STATE(6), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4200,7 +4225,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(6), 12, + STATE(7), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4216,35 +4241,35 @@ static const uint16_t ts_small_parse_table[] = { [1496] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(130), 1, + ACTIONS(51), 1, anon_sym_dependson, - ACTIONS(136), 1, + ACTIONS(57), 1, anon_sym_visibleif, - ACTIONS(265), 1, + ACTIONS(245), 1, anon_sym_prompt, - ACTIONS(267), 1, + ACTIONS(247), 1, anon_sym_default, - ACTIONS(271), 1, + ACTIONS(251), 1, anon_sym_select, - ACTIONS(273), 1, + ACTIONS(253), 1, anon_sym_imply, - ACTIONS(275), 1, + ACTIONS(255), 1, anon_sym_range, - ACTIONS(277), 1, + ACTIONS(257), 1, anon_sym_help, - ACTIONS(269), 2, + ACTIONS(249), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(279), 2, + ACTIONS(263), 2, sym_optional, sym_modules, - ACTIONS(263), 5, + ACTIONS(243), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(17), 12, + STATE(13), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4260,35 +4285,35 @@ static const uint16_t ts_small_parse_table[] = { [1553] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(130), 1, + ACTIONS(51), 1, anon_sym_dependson, - ACTIONS(136), 1, + ACTIONS(57), 1, anon_sym_visibleif, - ACTIONS(265), 1, + ACTIONS(245), 1, anon_sym_prompt, - ACTIONS(267), 1, + ACTIONS(247), 1, anon_sym_default, - ACTIONS(271), 1, + ACTIONS(251), 1, anon_sym_select, - ACTIONS(273), 1, + ACTIONS(253), 1, anon_sym_imply, - ACTIONS(275), 1, + ACTIONS(255), 1, anon_sym_range, - ACTIONS(277), 1, + ACTIONS(257), 1, anon_sym_help, - ACTIONS(269), 2, + ACTIONS(249), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(281), 2, + ACTIONS(265), 2, sym_optional, sym_modules, - ACTIONS(263), 5, + ACTIONS(243), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(18), 12, + STATE(12), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4304,35 +4329,35 @@ static const uint16_t ts_small_parse_table[] = { [1610] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(130), 1, anon_sym_dependson, - ACTIONS(57), 1, + ACTIONS(136), 1, anon_sym_visibleif, - ACTIONS(245), 1, + ACTIONS(269), 1, anon_sym_prompt, - ACTIONS(247), 1, + ACTIONS(271), 1, anon_sym_default, - ACTIONS(251), 1, + ACTIONS(275), 1, anon_sym_select, - ACTIONS(253), 1, + ACTIONS(277), 1, anon_sym_imply, - ACTIONS(255), 1, + ACTIONS(279), 1, anon_sym_range, - ACTIONS(257), 1, + ACTIONS(281), 1, anon_sym_help, - ACTIONS(249), 2, + ACTIONS(273), 2, anon_sym_def_bool, anon_sym_def_tristate, ACTIONS(283), 2, sym_optional, sym_modules, - ACTIONS(243), 5, + ACTIONS(267), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(9), 12, + STATE(16), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4348,35 +4373,35 @@ static const uint16_t ts_small_parse_table[] = { [1667] = 13, ACTIONS(3), 1, sym_comment, - ACTIONS(51), 1, + ACTIONS(130), 1, anon_sym_dependson, - ACTIONS(57), 1, + ACTIONS(136), 1, anon_sym_visibleif, - ACTIONS(245), 1, + ACTIONS(269), 1, anon_sym_prompt, - ACTIONS(247), 1, + ACTIONS(271), 1, anon_sym_default, - ACTIONS(251), 1, + ACTIONS(275), 1, anon_sym_select, - ACTIONS(253), 1, + ACTIONS(277), 1, anon_sym_imply, - ACTIONS(255), 1, + ACTIONS(279), 1, anon_sym_range, - ACTIONS(257), 1, + ACTIONS(281), 1, anon_sym_help, - ACTIONS(249), 2, + ACTIONS(273), 2, anon_sym_def_bool, anon_sym_def_tristate, ACTIONS(285), 2, sym_optional, sym_modules, - ACTIONS(243), 5, + ACTIONS(267), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(10), 12, + STATE(15), 12, sym__config_option, sym_type_definition, sym_input_prompt, @@ -4984,7 +5009,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - STATE(100), 10, + STATE(99), 10, sym__entry, sym_config, sym_menuconfig, @@ -5029,7 +5054,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - STATE(103), 10, + STATE(100), 10, sym__entry, sym_config, sym_menuconfig, @@ -5043,11 +5068,11 @@ static const uint16_t ts_small_parse_table[] = { [2458] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(341), 3, + ACTIONS(345), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(339), 23, + ACTIONS(343), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5074,11 +5099,11 @@ static const uint16_t ts_small_parse_table[] = { [2492] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 3, + ACTIONS(337), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(323), 23, + ACTIONS(335), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5105,11 +5130,11 @@ static const uint16_t ts_small_parse_table[] = { [2526] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(345), 3, + ACTIONS(313), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(343), 23, + ACTIONS(311), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5136,11 +5161,11 @@ static const uint16_t ts_small_parse_table[] = { [2560] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(337), 3, + ACTIONS(305), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(335), 23, + ACTIONS(303), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5167,11 +5192,11 @@ static const uint16_t ts_small_parse_table[] = { [2594] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 3, + ACTIONS(317), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(331), 23, + ACTIONS(315), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5198,11 +5223,11 @@ static const uint16_t ts_small_parse_table[] = { [2628] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(301), 3, + ACTIONS(353), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(299), 23, + ACTIONS(351), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5229,11 +5254,11 @@ static const uint16_t ts_small_parse_table[] = { [2662] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(297), 3, + ACTIONS(293), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(295), 23, + ACTIONS(291), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5260,11 +5285,11 @@ static const uint16_t ts_small_parse_table[] = { [2696] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(313), 3, + ACTIONS(289), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(311), 23, + ACTIONS(287), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5291,11 +5316,11 @@ static const uint16_t ts_small_parse_table[] = { [2730] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(349), 3, + ACTIONS(325), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(347), 23, + ACTIONS(323), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5353,11 +5378,11 @@ static const uint16_t ts_small_parse_table[] = { [2798] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(353), 3, + ACTIONS(341), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(351), 23, + ACTIONS(339), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5384,11 +5409,11 @@ static const uint16_t ts_small_parse_table[] = { [2832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 3, + ACTIONS(333), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(307), 23, + ACTIONS(331), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5446,11 +5471,11 @@ static const uint16_t ts_small_parse_table[] = { [2900] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 3, + ACTIONS(309), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(315), 23, + ACTIONS(307), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5477,11 +5502,11 @@ static const uint16_t ts_small_parse_table[] = { [2934] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(289), 3, + ACTIONS(349), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(287), 23, + ACTIONS(347), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5508,11 +5533,11 @@ static const uint16_t ts_small_parse_table[] = { [2968] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(305), 3, + ACTIONS(297), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(303), 23, + ACTIONS(295), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5539,11 +5564,11 @@ static const uint16_t ts_small_parse_table[] = { [3002] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(293), 3, + ACTIONS(301), 3, ts_builtin_sym_end, anon_sym_dependson, anon_sym_visibleif, - ACTIONS(291), 23, + ACTIONS(299), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5596,7 +5621,7 @@ static const uint16_t ts_small_parse_table[] = { [3065] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 8, + ACTIONS(207), 8, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ, @@ -5605,7 +5630,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT_EQ, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, - ACTIONS(187), 13, + ACTIONS(205), 13, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5656,7 +5681,7 @@ static const uint16_t ts_small_parse_table[] = { [3139] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(193), 7, + ACTIONS(223), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ, @@ -5664,7 +5689,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - ACTIONS(191), 13, + ACTIONS(221), 13, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5681,7 +5706,7 @@ static const uint16_t ts_small_parse_table[] = { [3167] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 7, + ACTIONS(211), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ, @@ -5689,7 +5714,32 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - ACTIONS(221), 13, + ACTIONS(209), 13, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_endchoice, + anon_sym_comment, + anon_sym_menu, + anon_sym_endmenu, + anon_sym_if, + anon_sym_endif, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [3195] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(219), 7, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + anon_sym_RPAREN, + ACTIONS(217), 13, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5703,19 +5753,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [3195] = 4, + [3223] = 4, ACTIONS(3), 1, sym_comment, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(197), 6, + ACTIONS(189), 6, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - ACTIONS(195), 13, + ACTIONS(187), 13, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5729,10 +5779,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [3225] = 3, + [3253] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(197), 7, + ACTIONS(189), 7, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_EQ, @@ -5740,7 +5790,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT_EQ, anon_sym_GT_EQ, anon_sym_RPAREN, - ACTIONS(195), 13, + ACTIONS(187), 13, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5754,7 +5804,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [3253] = 6, + [3281] = 6, ACTIONS(3), 1, sym_comment, ACTIONS(361), 1, @@ -5762,7 +5812,7 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(197), 3, + ACTIONS(189), 3, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, anon_sym_RPAREN, @@ -5770,7 +5820,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 11, + ACTIONS(187), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5782,14 +5832,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [3287] = 7, + [3315] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(359), 1, anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(197), 2, + ACTIONS(189), 2, anon_sym_PIPE_PIPE, anon_sym_RPAREN, ACTIONS(365), 2, @@ -5799,7 +5849,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 11, + ACTIONS(187), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5811,18 +5861,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [3323] = 3, + [3351] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 7, + ACTIONS(357), 1, anon_sym_PIPE_PIPE, + ACTIONS(359), 1, anon_sym_AMP_AMP, + ACTIONS(361), 1, anon_sym_EQ, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(363), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - ACTIONS(217), 13, + ACTIONS(395), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -5833,31 +5888,57 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_endif, anon_sym_source, + sym_symbol, + [3386] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(357), 1, + anon_sym_PIPE_PIPE, + ACTIONS(359), 1, + anon_sym_AMP_AMP, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(365), 2, anon_sym_LT, anon_sym_GT, + ACTIONS(363), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(397), 11, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_endchoice, + anon_sym_comment, + anon_sym_menu, + anon_sym_endmenu, + anon_sym_if, + anon_sym_endif, + anon_sym_source, sym_symbol, - [3351] = 11, + [3421] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(25), 1, + ACTIONS(7), 1, sym_symbol, - ACTIONS(27), 1, + ACTIONS(11), 1, anon_sym_config, - ACTIONS(29), 1, + ACTIONS(13), 1, anon_sym_menuconfig, - ACTIONS(31), 1, + ACTIONS(15), 1, anon_sym_choice, - ACTIONS(33), 1, + ACTIONS(17), 1, anon_sym_comment, - ACTIONS(35), 1, + ACTIONS(19), 1, anon_sym_menu, - ACTIONS(37), 1, - anon_sym_endmenu, - ACTIONS(39), 1, + ACTIONS(21), 1, anon_sym_if, - ACTIONS(41), 1, + ACTIONS(23), 1, anon_sym_source, - STATE(86), 10, + ACTIONS(399), 1, + ts_builtin_sym_end, + STATE(102), 10, sym__entry, sym_config, sym_menuconfig, @@ -5868,7 +5949,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3394] = 11, + [3464] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -5887,8 +5968,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(395), 1, - anon_sym_endmenu, + ACTIONS(401), 1, + anon_sym_endchoice, STATE(86), 10, sym__entry, sym_config, @@ -5900,7 +5981,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3437] = 11, + [3507] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -5919,7 +6000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(65), 1, + ACTIONS(403), 1, anon_sym_endmenu, STATE(86), 10, sym__entry, @@ -5932,39 +6013,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3480] = 11, - ACTIONS(3), 1, - sym_comment, - ACTIONS(7), 1, - sym_symbol, - ACTIONS(11), 1, - anon_sym_config, - ACTIONS(13), 1, - anon_sym_menuconfig, - ACTIONS(15), 1, - anon_sym_choice, - ACTIONS(17), 1, - anon_sym_comment, - ACTIONS(19), 1, - anon_sym_menu, - ACTIONS(21), 1, - anon_sym_if, - ACTIONS(23), 1, - anon_sym_source, - ACTIONS(397), 1, - ts_builtin_sym_end, - STATE(105), 10, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - sym_variable, - aux_sym_configuration_repeat1, - [3523] = 11, + [3550] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -5983,8 +6032,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(399), 1, - anon_sym_endchoice, + ACTIONS(405), 1, + anon_sym_endif, STATE(86), 10, sym__entry, sym_config, @@ -5996,7 +6045,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3566] = 11, + [3593] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6015,8 +6064,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(401), 1, - anon_sym_endchoice, + ACTIONS(407), 1, + anon_sym_endif, STATE(86), 10, sym__entry, sym_config, @@ -6028,7 +6077,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3609] = 11, + [3636] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6047,8 +6096,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(403), 1, - anon_sym_endif, + ACTIONS(409), 1, + anon_sym_endchoice, STATE(86), 10, sym__entry, sym_config, @@ -6060,28 +6109,28 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3652] = 11, + [3679] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(7), 1, + ACTIONS(411), 1, + ts_builtin_sym_end, + ACTIONS(413), 1, sym_symbol, - ACTIONS(11), 1, + ACTIONS(416), 1, anon_sym_config, - ACTIONS(13), 1, + ACTIONS(419), 1, anon_sym_menuconfig, - ACTIONS(15), 1, + ACTIONS(422), 1, anon_sym_choice, - ACTIONS(17), 1, + ACTIONS(425), 1, anon_sym_comment, - ACTIONS(19), 1, + ACTIONS(428), 1, anon_sym_menu, - ACTIONS(21), 1, + ACTIONS(431), 1, anon_sym_if, - ACTIONS(23), 1, + ACTIONS(434), 1, anon_sym_source, - ACTIONS(397), 1, - ts_builtin_sym_end, - STATE(104), 10, + STATE(102), 10, sym__entry, sym_config, sym_menuconfig, @@ -6092,7 +6141,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3695] = 11, + [3722] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6111,8 +6160,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(405), 1, - anon_sym_endchoice, + ACTIONS(69), 1, + anon_sym_endmenu, STATE(86), 10, sym__entry, sym_config, @@ -6124,7 +6173,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3738] = 11, + [3765] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6143,8 +6192,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(407), 1, - anon_sym_endif, + ACTIONS(437), 1, + anon_sym_endmenu, STATE(86), 10, sym__entry, sym_config, @@ -6156,28 +6205,28 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3781] = 11, + [3808] = 11, ACTIONS(3), 1, sym_comment, - ACTIONS(409), 1, - ts_builtin_sym_end, - ACTIONS(411), 1, + ACTIONS(25), 1, sym_symbol, - ACTIONS(414), 1, + ACTIONS(27), 1, anon_sym_config, - ACTIONS(417), 1, + ACTIONS(29), 1, anon_sym_menuconfig, - ACTIONS(420), 1, + ACTIONS(31), 1, anon_sym_choice, - ACTIONS(423), 1, + ACTIONS(33), 1, anon_sym_comment, - ACTIONS(426), 1, + ACTIONS(35), 1, anon_sym_menu, - ACTIONS(429), 1, + ACTIONS(39), 1, anon_sym_if, - ACTIONS(432), 1, + ACTIONS(41), 1, anon_sym_source, - STATE(104), 10, + ACTIONS(439), 1, + anon_sym_endchoice, + STATE(86), 10, sym__entry, sym_config, sym_menuconfig, @@ -6188,7 +6237,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3824] = 11, + [3851] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(7), 1, @@ -6207,9 +6256,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(23), 1, anon_sym_source, - ACTIONS(435), 1, + ACTIONS(441), 1, ts_builtin_sym_end, - STATE(104), 10, + STATE(102), 10, sym__entry, sym_config, sym_menuconfig, @@ -6220,7 +6269,7 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3867] = 11, + [3894] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6239,7 +6288,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(437), 1, + ACTIONS(443), 1, anon_sym_endchoice, STATE(86), 10, sym__entry, @@ -6252,7 +6301,39 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3910] = 11, + [3937] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(7), 1, + sym_symbol, + ACTIONS(11), 1, + anon_sym_config, + ACTIONS(13), 1, + anon_sym_menuconfig, + ACTIONS(15), 1, + anon_sym_choice, + ACTIONS(17), 1, + anon_sym_comment, + ACTIONS(19), 1, + anon_sym_menu, + ACTIONS(21), 1, + anon_sym_if, + ACTIONS(23), 1, + anon_sym_source, + ACTIONS(441), 1, + ts_builtin_sym_end, + STATE(96), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3980] = 11, ACTIONS(3), 1, sym_comment, ACTIONS(25), 1, @@ -6271,7 +6352,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, ACTIONS(41), 1, anon_sym_source, - ACTIONS(439), 1, + ACTIONS(65), 1, anon_sym_endmenu, STATE(86), 10, sym__entry, @@ -6284,38 +6365,37 @@ static const uint16_t ts_small_parse_table[] = { sym_source, sym_variable, aux_sym_configuration_repeat1, - [3953] = 7, + [4023] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(357), 1, + ACTIONS(445), 1, + ts_builtin_sym_end, + ACTIONS(447), 1, anon_sym_PIPE_PIPE, - ACTIONS(359), 1, + ACTIONS(449), 1, anon_sym_AMP_AMP, - ACTIONS(361), 1, + ACTIONS(451), 1, anon_sym_EQ, - ACTIONS(365), 2, + ACTIONS(455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(363), 3, + ACTIONS(453), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(441), 11, + ACTIONS(397), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, anon_sym_menu, - anon_sym_endmenu, anon_sym_if, - anon_sym_endif, anon_sym_source, sym_symbol, - [3988] = 3, + [4058] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(219), 7, + ACTIONS(189), 7, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6323,7 +6403,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(217), 10, + ACTIONS(187), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6334,18 +6414,23 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [4013] = 3, + [4083] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(193), 7, + ACTIONS(451), 1, + anon_sym_EQ, + ACTIONS(455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(189), 3, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, + ACTIONS(453), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(191), 10, + ACTIONS(187), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6353,21 +6438,25 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_menu, anon_sym_if, anon_sym_source, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [4038] = 3, + [4114] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(189), 7, - ts_builtin_sym_end, - anon_sym_PIPE_PIPE, + ACTIONS(449), 1, anon_sym_AMP_AMP, + ACTIONS(451), 1, anon_sym_EQ, + ACTIONS(189), 2, + ts_builtin_sym_end, + anon_sym_PIPE_PIPE, + ACTIONS(455), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(453), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(187), 10, + ACTIONS(187), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6375,22 +6464,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_menu, anon_sym_if, anon_sym_source, - anon_sym_LT, - anon_sym_GT, sym_symbol, - [4063] = 4, + [4147] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_EQ, - ACTIONS(197), 6, + ACTIONS(211), 7, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 10, + ACTIONS(209), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6401,10 +6487,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [4090] = 3, + [4172] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(215), 7, + ACTIONS(219), 7, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6412,7 +6498,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(213), 10, + ACTIONS(217), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6423,18 +6509,19 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [4115] = 3, + [4197] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(197), 7, + ACTIONS(451), 1, + anon_sym_EQ, + ACTIONS(189), 6, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 10, + ACTIONS(187), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6445,23 +6532,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [4140] = 6, + [4224] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_EQ, - ACTIONS(447), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(197), 3, + ACTIONS(215), 7, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(445), 3, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 8, + ACTIONS(213), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6469,25 +6551,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_menu, anon_sym_if, anon_sym_source, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [4171] = 7, + [4249] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_EQ, + ACTIONS(447), 1, + anon_sym_PIPE_PIPE, ACTIONS(449), 1, anon_sym_AMP_AMP, - ACTIONS(197), 2, + ACTIONS(451), 1, + anon_sym_EQ, + ACTIONS(457), 1, ts_builtin_sym_end, - anon_sym_PIPE_PIPE, - ACTIONS(447), 2, + ACTIONS(455), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(445), 3, + ACTIONS(453), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(195), 8, + ACTIONS(395), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6496,25 +6581,18 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [4204] = 8, + [4284] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(443), 1, - anon_sym_EQ, - ACTIONS(449), 1, - anon_sym_AMP_AMP, - ACTIONS(451), 1, + ACTIONS(223), 7, ts_builtin_sym_end, - ACTIONS(453), 1, anon_sym_PIPE_PIPE, - ACTIONS(447), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(445), 3, + anon_sym_AMP_AMP, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(441), 8, + ACTIONS(221), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6522,11 +6600,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_menu, anon_sym_if, anon_sym_source, + anon_sym_LT, + anon_sym_GT, sym_symbol, - [4239] = 3, + [4309] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(223), 7, + ACTIONS(207), 7, ts_builtin_sym_end, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6534,7 +6614,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(221), 10, + ACTIONS(205), 10, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6545,10 +6625,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LT, anon_sym_GT, sym_symbol, - [4264] = 2, + [4334] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(455), 11, + ACTIONS(459), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6560,28 +6640,28 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4281] = 8, - ACTIONS(457), 1, - anon_sym_if, - ACTIONS(459), 1, - aux_sym_type_definition_token1, - ACTIONS(461), 1, - anon_sym_PIPE_PIPE, + [4351] = 8, + ACTIONS(3), 1, + sym_comment, ACTIONS(463), 1, - anon_sym_AMP_AMP, + anon_sym_COMMA, ACTIONS(465), 1, - anon_sym_EQ, + anon_sym_BANG, + ACTIONS(467), 1, + anon_sym_LPAREN, ACTIONS(469), 1, - sym_comment, - STATE(242), 1, - sym_conditional_clause, - ACTIONS(467), 5, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [4310] = 2, + anon_sym_DOLLAR_LPAREN, + STATE(110), 1, + sym_expression, + ACTIONS(461), 2, + sym_prompt, + sym_symbol, + STATE(119), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4380] = 2, ACTIONS(3), 1, sym_comment, ACTIONS(471), 11, @@ -6596,31 +6676,88 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4327] = 8, - ACTIONS(457), 1, + [4397] = 8, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(461), 1, + ACTIONS(475), 1, + aux_sym_type_definition_token1, + ACTIONS(477), 1, anon_sym_PIPE_PIPE, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, + STATE(250), 1, + sym_conditional_clause, + ACTIONS(483), 5, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4426] = 8, ACTIONS(473), 1, + anon_sym_if, + ACTIONS(477), 1, + anon_sym_PIPE_PIPE, + ACTIONS(479), 1, + anon_sym_AMP_AMP, + ACTIONS(481), 1, + anon_sym_EQ, + ACTIONS(485), 1, + sym_comment, + ACTIONS(487), 1, aux_sym_type_definition_token1, - STATE(239), 1, + STATE(245), 1, sym_conditional_clause, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4356] = 2, + [4455] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(489), 11, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_endchoice, + anon_sym_comment, + anon_sym_menu, + anon_sym_endmenu, + anon_sym_if, + anon_sym_endif, + anon_sym_source, + sym_symbol, + [4472] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(493), 1, + anon_sym_COMMA, + ACTIONS(495), 1, + anon_sym_BANG, + ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, + anon_sym_DOLLAR_LPAREN, + STATE(95), 1, + sym_expression, + ACTIONS(491), 2, + sym_prompt, + sym_symbol, + STATE(87), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4501] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(475), 11, + ACTIONS(501), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6632,10 +6769,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4373] = 2, + [4518] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(477), 11, + ACTIONS(503), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6647,67 +6784,52 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4390] = 8, - ACTIONS(457), 1, + [4535] = 8, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(461), 1, + ACTIONS(477), 1, anon_sym_PIPE_PIPE, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(479), 1, + ACTIONS(505), 1, aux_sym_type_definition_token1, - STATE(236), 1, + STATE(256), 1, sym_conditional_clause, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4419] = 8, - ACTIONS(457), 1, + [4564] = 8, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(461), 1, + ACTIONS(477), 1, anon_sym_PIPE_PIPE, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(481), 1, + ACTIONS(507), 1, aux_sym_type_definition_token1, - STATE(252), 1, + STATE(240), 1, sym_conditional_clause, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4448] = 2, - ACTIONS(3), 1, - sym_comment, - ACTIONS(483), 11, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_menu, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, - sym_symbol, - [4465] = 2, + [4593] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(485), 11, + ACTIONS(509), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6719,10 +6841,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4482] = 2, + [4610] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(487), 11, + ACTIONS(511), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6734,10 +6856,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4499] = 2, + [4627] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(489), 11, + ACTIONS(513), 11, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -6749,16 +6871,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_endif, anon_sym_source, sym_symbol, - [4516] = 7, + [4644] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, ACTIONS(495), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(91), 1, + STATE(92), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -6768,54 +6890,73 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4542] = 7, + [4670] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(29), 1, + STATE(26), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4568] = 7, + [4696] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(147), 1, + STATE(149), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4594] = 7, + [4722] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(527), 1, anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + STATE(150), 1, + sym_expression, + ACTIONS(523), 2, + sym_prompt, + sym_symbol, + STATE(144), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4748] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(190), 1, + STATE(94), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -6825,50 +6966,50 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4620] = 7, + [4774] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(145), 1, + STATE(147), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4646] = 7, + [4800] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(144), 1, + STATE(194), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4672] = 3, - ACTIONS(189), 1, + [4826] = 3, + ACTIONS(215), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(187), 9, + ACTIONS(213), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6878,12 +7019,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4690] = 3, - ACTIONS(223), 1, + [4844] = 3, + ACTIONS(219), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(221), 9, + ACTIONS(217), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6893,31 +7034,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4708] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, - ACTIONS(495), 1, - anon_sym_LPAREN, - ACTIONS(497), 1, - anon_sym_DOLLAR_LPAREN, - STATE(108), 1, - sym_expression, - ACTIONS(491), 2, - sym_prompt, - sym_symbol, - STATE(87), 4, - sym_unary_expression, - sym_binary_expression, - sym_parenthesized_expression, - sym_macro_variable, - [4734] = 3, - ACTIONS(193), 1, + [4862] = 3, + ACTIONS(223), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(191), 9, + ACTIONS(221), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6927,31 +7049,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4752] = 7, - ACTIONS(3), 1, - sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, - ACTIONS(495), 1, - anon_sym_LPAREN, - ACTIONS(497), 1, - anon_sym_DOLLAR_LPAREN, - STATE(186), 1, - sym_expression, - ACTIONS(491), 2, - sym_prompt, - sym_symbol, - STATE(87), 4, - sym_unary_expression, - sym_binary_expression, - sym_parenthesized_expression, - sym_macro_variable, - [4778] = 3, - ACTIONS(219), 1, + [4880] = 3, + ACTIONS(211), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(217), 9, + ACTIONS(209), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6961,12 +7064,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4796] = 3, - ACTIONS(215), 1, + [4898] = 3, + ACTIONS(207), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(213), 9, + ACTIONS(205), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -6976,47 +7079,47 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4814] = 6, - ACTIONS(197), 1, + [4916] = 6, + ACTIONS(189), 1, aux_sym_type_definition_token1, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(195), 2, + ACTIONS(187), 2, anon_sym_if, anon_sym_PIPE_PIPE, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4838] = 5, - ACTIONS(197), 1, + [4940] = 5, + ACTIONS(189), 1, aux_sym_type_definition_token1, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(195), 3, + ACTIONS(187), 3, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4860] = 3, - ACTIONS(197), 1, + [4962] = 3, + ACTIONS(189), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(195), 9, + ACTIONS(187), 9, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -7026,14 +7129,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4878] = 4, - ACTIONS(197), 1, + [4980] = 4, + ACTIONS(189), 1, aux_sym_type_definition_token1, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(195), 8, + ACTIONS(187), 8, anon_sym_if, anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, @@ -7042,16 +7145,16 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [4898] = 7, + [5000] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, ACTIONS(495), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(184), 1, + STATE(189), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -7061,16 +7164,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4924] = 7, + [5026] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, ACTIONS(495), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(187), 1, + STATE(188), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -7080,311 +7183,311 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4950] = 7, + [5052] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(189), 1, + STATE(191), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [4976] = 7, + [5078] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(122), 1, + STATE(193), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5002] = 7, + [5104] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(120), 1, + STATE(125), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5028] = 7, + [5130] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(497), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(66), 1, + STATE(124), 1, sym_expression, - ACTIONS(491), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(87), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5054] = 7, + [5156] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(519), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(39), 1, + STATE(65), 1, sym_expression, - ACTIONS(515), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5080] = 7, + [5182] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(118), 1, + STATE(38), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5106] = 7, + [5208] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_LPAREN, - STATE(146), 1, + STATE(115), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(461), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(119), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5132] = 7, + [5234] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(497), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(65), 1, + STATE(148), 1, sym_expression, - ACTIONS(491), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(87), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5158] = 7, + [5260] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(126), 1, + STATE(66), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5184] = 7, + [5286] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(125), 1, + STATE(130), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5210] = 7, + [5312] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(138), 1, + STATE(131), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5236] = 7, + [5338] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(185), 1, + STATE(143), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5262] = 7, + [5364] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(26), 1, + STATE(190), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5288] = 7, + [5390] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(24), 1, + STATE(20), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5314] = 7, + [5416] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(23), 1, + STATE(21), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5340] = 7, + [5442] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(22), 1, + STATE(28), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5366] = 7, + [5468] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(517), 1, @@ -7393,43 +7496,62 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LPAREN, ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(37), 1, + STATE(29), 1, sym_expression, ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5392] = 7, + [5494] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(497), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(89), 1, + STATE(33), 1, sym_expression, - ACTIONS(491), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(87), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5418] = 7, + [5520] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(467), 1, anon_sym_LPAREN, + ACTIONS(469), 1, + anon_sym_DOLLAR_LPAREN, + STATE(118), 1, + sym_expression, + ACTIONS(461), 2, + sym_prompt, + sym_symbol, + STATE(119), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5546] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(495), 1, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, STATE(90), 1, sym_expression, @@ -7441,16 +7563,16 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5444] = 7, + [5572] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, ACTIONS(495), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(92), 1, + STATE(91), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -7460,54 +7582,54 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5470] = 7, + [5598] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(501), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(503), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(505), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(25), 1, + STATE(93), 1, sym_expression, - ACTIONS(499), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(21), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5496] = 7, + [5624] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(495), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(497), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(88), 1, + STATE(22), 1, sym_expression, - ACTIONS(491), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(87), 4, + STATE(27), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5522] = 7, + [5650] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(493), 1, - anon_sym_BANG, ACTIONS(495), 1, - anon_sym_LPAREN, + anon_sym_BANG, ACTIONS(497), 1, + anon_sym_LPAREN, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(193), 1, + STATE(89), 1, sym_expression, ACTIONS(491), 2, sym_prompt, @@ -7517,202 +7639,202 @@ static const uint16_t ts_small_parse_table[] = { sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5548] = 7, + [5676] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(495), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(497), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - STATE(117), 1, + STATE(197), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5574] = 7, + [5702] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(519), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(34), 1, + STATE(198), 1, sym_expression, - ACTIONS(515), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(144), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5600] = 7, + [5728] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(519), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(35), 1, + STATE(34), 1, sym_expression, - ACTIONS(515), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5626] = 7, + [5754] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(519), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(36), 1, + STATE(35), 1, sym_expression, - ACTIONS(515), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5652] = 7, + [5780] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_LPAREN, - STATE(116), 1, + STATE(113), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(461), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(119), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5678] = 7, + [5806] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_LPAREN, - STATE(115), 1, + STATE(112), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(461), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(119), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5704] = 7, + [5832] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_LPAREN, - STATE(114), 1, + STATE(111), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(461), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(119), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5730] = 7, + [5858] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(525), 1, + ACTIONS(465), 1, anon_sym_BANG, - ACTIONS(527), 1, + ACTIONS(467), 1, anon_sym_LPAREN, - ACTIONS(529), 1, + ACTIONS(469), 1, anon_sym_DOLLAR_LPAREN, - STATE(112), 1, + STATE(116), 1, sym_expression, - ACTIONS(523), 2, + ACTIONS(461), 2, sym_prompt, sym_symbol, - STATE(110), 4, + STATE(119), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5756] = 7, + [5884] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(517), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(519), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(521), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(30), 1, + STATE(31), 1, sym_expression, - ACTIONS(515), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(31), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5782] = 7, + [5910] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(509), 1, + ACTIONS(533), 1, anon_sym_BANG, - ACTIONS(511), 1, + ACTIONS(535), 1, anon_sym_LPAREN, - ACTIONS(513), 1, + ACTIONS(537), 1, anon_sym_DOLLAR_LPAREN, - STATE(194), 1, + STATE(32), 1, sym_expression, - ACTIONS(507), 2, + ACTIONS(531), 2, sym_prompt, sym_symbol, - STATE(140), 4, + STATE(39), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [5808] = 3, + [5936] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(531), 1, + ACTIONS(539), 1, ts_builtin_sym_end, - ACTIONS(471), 8, + ACTIONS(511), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7721,7 +7843,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [5825] = 7, + [5953] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(357), 1, @@ -7730,7 +7852,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(533), 1, + ACTIONS(541), 1, anon_sym_RPAREN, ACTIONS(365), 2, anon_sym_LT, @@ -7739,24 +7861,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5850] = 6, - ACTIONS(461), 1, - anon_sym_PIPE_PIPE, - ACTIONS(463), 1, - anon_sym_AMP_AMP, - ACTIONS(465), 1, - anon_sym_EQ, - ACTIONS(469), 1, - sym_comment, - ACTIONS(535), 1, - aux_sym_type_definition_token1, - ACTIONS(467), 5, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [5873] = 7, + [5978] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(357), 1, @@ -7765,7 +7870,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(537), 1, + ACTIONS(543), 1, anon_sym_RPAREN, ACTIONS(365), 2, anon_sym_LT, @@ -7774,7 +7879,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5898] = 7, + [6003] = 6, + ACTIONS(477), 1, + anon_sym_PIPE_PIPE, + ACTIONS(479), 1, + anon_sym_AMP_AMP, + ACTIONS(481), 1, + anon_sym_EQ, + ACTIONS(485), 1, + sym_comment, + ACTIONS(545), 1, + aux_sym_type_definition_token1, + ACTIONS(483), 5, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [6026] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(357), 1, @@ -7783,7 +7905,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(539), 1, + ACTIONS(547), 1, anon_sym_RPAREN, ACTIONS(365), 2, anon_sym_LT, @@ -7792,12 +7914,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5923] = 3, + [6051] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(541), 1, + ACTIONS(549), 1, ts_builtin_sym_end, - ACTIONS(543), 8, + ACTIONS(551), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7806,24 +7928,24 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [5940] = 6, - ACTIONS(461), 1, + [6068] = 6, + ACTIONS(477), 1, anon_sym_PIPE_PIPE, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(545), 1, + ACTIONS(553), 1, aux_sym_type_definition_token1, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5963] = 7, + [6091] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(357), 1, @@ -7832,7 +7954,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(547), 1, + ACTIONS(555), 1, anon_sym_RPAREN, ACTIONS(365), 2, anon_sym_LT, @@ -7841,12 +7963,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [5988] = 3, + [6116] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(549), 1, + ACTIONS(557), 1, ts_builtin_sym_end, - ACTIONS(485), 8, + ACTIONS(489), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7855,12 +7977,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6005] = 3, + [6133] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(551), 1, + ACTIONS(559), 1, ts_builtin_sym_end, - ACTIONS(477), 8, + ACTIONS(459), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7869,7 +7991,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6022] = 7, + [6150] = 7, ACTIONS(3), 1, sym_comment, ACTIONS(357), 1, @@ -7878,7 +8000,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_AMP_AMP, ACTIONS(361), 1, anon_sym_EQ, - ACTIONS(553), 1, + ACTIONS(561), 1, anon_sym_RPAREN, ACTIONS(365), 2, anon_sym_LT, @@ -7887,29 +8009,29 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6047] = 6, - ACTIONS(461), 1, + [6175] = 6, + ACTIONS(477), 1, anon_sym_PIPE_PIPE, - ACTIONS(463), 1, + ACTIONS(479), 1, anon_sym_AMP_AMP, - ACTIONS(465), 1, + ACTIONS(481), 1, anon_sym_EQ, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(555), 1, + ACTIONS(563), 1, aux_sym_type_definition_token1, - ACTIONS(467), 5, + ACTIONS(483), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [6070] = 3, + [6198] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(557), 1, + ACTIONS(565), 1, ts_builtin_sym_end, - ACTIONS(487), 8, + ACTIONS(471), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7918,12 +8040,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6087] = 3, + [6215] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(559), 1, + ACTIONS(567), 1, ts_builtin_sym_end, - ACTIONS(489), 8, + ACTIONS(509), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7932,12 +8054,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6104] = 3, + [6232] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(561), 1, + ACTIONS(569), 1, ts_builtin_sym_end, - ACTIONS(483), 8, + ACTIONS(503), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7946,12 +8068,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6121] = 3, + [6249] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(563), 1, + ACTIONS(571), 1, ts_builtin_sym_end, - ACTIONS(475), 8, + ACTIONS(513), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7960,12 +8082,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6138] = 3, + [6266] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(565), 1, + ACTIONS(573), 1, ts_builtin_sym_end, - ACTIONS(455), 8, + ACTIONS(501), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, @@ -7974,590 +8096,590 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_if, anon_sym_source, sym_symbol, - [6155] = 6, - ACTIONS(469), 1, + [6283] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(567), 1, + ACTIONS(575), 1, anon_sym_RPAREN, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(571), 1, + ACTIONS(579), 1, sym_macro_content, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - STATE(201), 2, + STATE(205), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6175] = 6, - ACTIONS(469), 1, + [6303] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(575), 1, + ACTIONS(583), 1, anon_sym_RPAREN, - ACTIONS(577), 1, + ACTIONS(585), 1, sym_macro_content, - STATE(205), 2, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6195] = 6, - ACTIONS(469), 1, + [6323] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(577), 1, - sym_macro_content, - ACTIONS(579), 1, + ACTIONS(587), 1, anon_sym_RPAREN, - STATE(205), 2, + ACTIONS(589), 1, + sym_macro_content, + STATE(213), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6215] = 6, - ACTIONS(469), 1, + [6343] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, - sym_prompt, ACTIONS(581), 1, + sym_prompt, + ACTIONS(591), 1, anon_sym_RPAREN, - ACTIONS(583), 1, + ACTIONS(593), 1, sym_macro_content, - STATE(202), 2, + STATE(208), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6235] = 6, - ACTIONS(469), 1, + [6363] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(577), 1, - sym_macro_content, ACTIONS(585), 1, + sym_macro_content, + ACTIONS(595), 1, anon_sym_RPAREN, - STATE(205), 2, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6255] = 6, - ACTIONS(469), 1, + [6383] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(587), 1, + ACTIONS(597), 1, anon_sym_RPAREN, - ACTIONS(589), 1, + ACTIONS(599), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(592), 1, + ACTIONS(602), 1, sym_macro_content, - ACTIONS(595), 1, + ACTIONS(605), 1, sym_prompt, - STATE(205), 2, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6275] = 7, - ACTIONS(457), 1, + [6403] = 7, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(598), 1, + ACTIONS(608), 1, aux_sym_type_definition_token1, - ACTIONS(600), 1, + ACTIONS(610), 1, anon_sym_prompt, - ACTIONS(602), 1, + ACTIONS(612), 1, sym_prompt, - STATE(224), 1, + STATE(228), 1, sym_input_prompt, - STATE(253), 1, + STATE(257), 1, sym_conditional_clause, - [6297] = 6, - ACTIONS(469), 1, + [6425] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(577), 1, + ACTIONS(585), 1, sym_macro_content, - ACTIONS(604), 1, + ACTIONS(614), 1, anon_sym_RPAREN, - STATE(205), 2, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6317] = 6, - ACTIONS(469), 1, + [6445] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(606), 1, + ACTIONS(616), 1, anon_sym_RPAREN, - ACTIONS(608), 1, + ACTIONS(618), 1, sym_macro_content, - STATE(204), 2, + STATE(218), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6337] = 6, - ACTIONS(469), 1, + [6465] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(610), 1, - anon_sym_RPAREN, - ACTIONS(612), 1, + ACTIONS(585), 1, sym_macro_content, - STATE(214), 2, + ACTIONS(620), 1, + anon_sym_RPAREN, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6357] = 6, - ACTIONS(469), 1, + [6485] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(614), 1, + ACTIONS(622), 1, anon_sym_RPAREN, - ACTIONS(616), 1, + ACTIONS(624), 1, sym_macro_content, - STATE(207), 2, + STATE(211), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6377] = 6, - ACTIONS(469), 1, + [6505] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, - sym_prompt, ACTIONS(577), 1, - sym_macro_content, - ACTIONS(618), 1, - anon_sym_RPAREN, - STATE(205), 2, - sym_macro_variable, - aux_sym_macro_variable_repeat1, - [6397] = 6, - ACTIONS(469), 1, - sym_comment, - ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, - ACTIONS(620), 1, - anon_sym_RPAREN, - ACTIONS(622), 1, + ACTIONS(585), 1, sym_macro_content, - STATE(211), 2, + ACTIONS(626), 1, + anon_sym_RPAREN, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6417] = 7, - ACTIONS(457), 1, + [6525] = 7, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(600), 1, + ACTIONS(610), 1, anon_sym_prompt, - ACTIONS(624), 1, + ACTIONS(628), 1, aux_sym_type_definition_token1, - ACTIONS(626), 1, + ACTIONS(630), 1, sym_prompt, - STATE(225), 1, + STATE(227), 1, sym_input_prompt, - STATE(246), 1, + STATE(249), 1, sym_conditional_clause, - [6439] = 6, - ACTIONS(469), 1, + [6547] = 6, + ACTIONS(485), 1, sym_comment, - ACTIONS(569), 1, + ACTIONS(577), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(573), 1, + ACTIONS(581), 1, sym_prompt, + ACTIONS(632), 1, + anon_sym_RPAREN, + ACTIONS(634), 1, + sym_macro_content, + STATE(215), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6567] = 6, + ACTIONS(485), 1, + sym_comment, ACTIONS(577), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(581), 1, + sym_prompt, + ACTIONS(585), 1, sym_macro_content, - ACTIONS(628), 1, + ACTIONS(636), 1, anon_sym_RPAREN, - STATE(205), 2, + STATE(209), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [6459] = 2, - ACTIONS(469), 1, + [6587] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(187), 4, + ACTIONS(213), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [6469] = 2, - ACTIONS(469), 1, + [6597] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(630), 4, + ACTIONS(638), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [6479] = 2, - ACTIONS(469), 1, + [6607] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(213), 4, + ACTIONS(205), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [6489] = 4, - ACTIONS(457), 1, + [6617] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(632), 1, + ACTIONS(640), 1, aux_sym_type_definition_token1, - STATE(238), 1, + STATE(248), 1, sym_conditional_clause, - [6502] = 4, + [6630] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(634), 1, + ACTIONS(642), 1, sym_symbol, - STATE(226), 1, + STATE(232), 1, sym_macro_variable, - [6515] = 4, - ACTIONS(457), 1, - anon_sym_if, - ACTIONS(469), 1, - sym_comment, - ACTIONS(636), 1, - aux_sym_type_definition_token1, - STATE(240), 1, - sym_conditional_clause, - [6528] = 4, - ACTIONS(457), 1, + [6643] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(638), 1, + ACTIONS(644), 1, aux_sym_type_definition_token1, - STATE(241), 1, + STATE(243), 1, sym_conditional_clause, - [6541] = 4, - ACTIONS(3), 1, - sym_comment, - ACTIONS(497), 1, - anon_sym_DOLLAR_LPAREN, - ACTIONS(640), 1, - sym_symbol, - STATE(219), 1, - sym_macro_variable, - [6554] = 4, - ACTIONS(457), 1, + [6656] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(642), 1, + ACTIONS(646), 1, aux_sym_type_definition_token1, - STATE(247), 1, + STATE(244), 1, sym_conditional_clause, - [6567] = 4, - ACTIONS(457), 1, + [6669] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(644), 1, + ACTIONS(648), 1, aux_sym_type_definition_token1, - STATE(248), 1, + STATE(251), 1, sym_conditional_clause, - [6580] = 4, - ACTIONS(457), 1, + [6682] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(650), 1, aux_sym_type_definition_token1, - STATE(259), 1, + STATE(263), 1, sym_conditional_clause, - [6593] = 4, - ACTIONS(457), 1, + [6695] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - ACTIONS(648), 1, + ACTIONS(652), 1, aux_sym_type_definition_token1, - STATE(265), 1, + STATE(252), 1, sym_conditional_clause, - [6606] = 4, + [6708] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(497), 1, + ACTIONS(499), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(650), 1, + ACTIONS(654), 1, sym_symbol, - STATE(232), 1, + STATE(234), 1, sym_macro_variable, - [6619] = 4, - ACTIONS(457), 1, - anon_sym_if, - ACTIONS(469), 1, - sym_comment, - ACTIONS(652), 1, - aux_sym_type_definition_token1, - STATE(237), 1, - sym_conditional_clause, - [6632] = 4, - ACTIONS(457), 1, - anon_sym_if, - ACTIONS(469), 1, - sym_comment, - ACTIONS(654), 1, - aux_sym_type_definition_token1, - STATE(244), 1, - sym_conditional_clause, - [6645] = 4, - ACTIONS(457), 1, + [6721] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, ACTIONS(656), 1, aux_sym_type_definition_token1, - STATE(243), 1, + STATE(269), 1, sym_conditional_clause, - [6658] = 4, - ACTIONS(457), 1, + [6734] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, ACTIONS(658), 1, aux_sym_type_definition_token1, - STATE(257), 1, + STATE(261), 1, sym_conditional_clause, - [6671] = 4, + [6747] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(513), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, ACTIONS(660), 1, sym_symbol, - STATE(228), 1, + STATE(230), 1, sym_macro_variable, - [6684] = 3, - ACTIONS(295), 1, + [6760] = 4, + ACTIONS(473), 1, anon_sym_if, - ACTIONS(297), 1, - aux_sym_type_definition_token1, - ACTIONS(469), 1, + ACTIONS(485), 1, sym_comment, - [6694] = 3, - ACTIONS(343), 1, - anon_sym_if, - ACTIONS(345), 1, + ACTIONS(662), 1, aux_sym_type_definition_token1, - ACTIONS(469), 1, - sym_comment, - [6704] = 2, + STATE(241), 1, + sym_conditional_clause, + [6773] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(662), 1, - sym_symbol, - [6711] = 2, - ACTIONS(469), 1, - sym_comment, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, ACTIONS(664), 1, - aux_sym_type_definition_token1, - [6718] = 2, - ACTIONS(469), 1, + sym_symbol, + STATE(233), 1, + sym_macro_variable, + [6786] = 4, + ACTIONS(473), 1, + anon_sym_if, + ACTIONS(485), 1, sym_comment, ACTIONS(666), 1, aux_sym_type_definition_token1, - [6725] = 2, - ACTIONS(469), 1, + STATE(247), 1, + sym_conditional_clause, + [6799] = 4, + ACTIONS(473), 1, + anon_sym_if, + ACTIONS(485), 1, sym_comment, ACTIONS(668), 1, aux_sym_type_definition_token1, - [6732] = 2, - ACTIONS(469), 1, + STATE(242), 1, + sym_conditional_clause, + [6812] = 3, + ACTIONS(319), 1, + anon_sym_if, + ACTIONS(321), 1, + aux_sym_type_definition_token1, + ACTIONS(485), 1, sym_comment, - ACTIONS(670), 1, + [6822] = 3, + ACTIONS(291), 1, + anon_sym_if, + ACTIONS(293), 1, aux_sym_type_definition_token1, - [6739] = 2, - ACTIONS(469), 1, + ACTIONS(485), 1, + sym_comment, + [6832] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(670), 1, + sym_symbol, + [6839] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(672), 1, aux_sym_type_definition_token1, - [6746] = 2, - ACTIONS(469), 1, + [6846] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(674), 1, aux_sym_type_definition_token1, - [6753] = 2, - ACTIONS(469), 1, + [6853] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(676), 1, aux_sym_type_definition_token1, - [6760] = 2, - ACTIONS(469), 1, + [6860] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(678), 1, aux_sym_type_definition_token1, - [6767] = 2, - ACTIONS(469), 1, + [6867] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(680), 1, aux_sym_type_definition_token1, - [6774] = 2, - ACTIONS(3), 1, + [6874] = 2, + ACTIONS(485), 1, sym_comment, ACTIONS(682), 1, + aux_sym_type_definition_token1, + [6881] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(684), 1, sym_prompt, - [6781] = 2, - ACTIONS(469), 1, + [6888] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(646), 1, + ACTIONS(686), 1, aux_sym_type_definition_token1, - [6788] = 2, - ACTIONS(469), 1, + [6895] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(684), 1, + ACTIONS(688), 1, aux_sym_type_definition_token1, - [6795] = 2, - ACTIONS(469), 1, + [6902] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(686), 1, + ACTIONS(650), 1, + aux_sym_type_definition_token1, + [6909] = 2, + ACTIONS(485), 1, + sym_comment, + ACTIONS(690), 1, + aux_sym_type_definition_token1, + [6916] = 2, + ACTIONS(485), 1, + sym_comment, + ACTIONS(692), 1, + aux_sym_type_definition_token1, + [6923] = 2, + ACTIONS(485), 1, + sym_comment, + ACTIONS(694), 1, aux_sym_type_definition_token1, - [6802] = 2, + [6930] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(688), 1, + ACTIONS(696), 1, anon_sym_COLON_EQ, - [6809] = 2, + [6937] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(690), 1, + ACTIONS(698), 1, ts_builtin_sym_end, - [6816] = 2, + [6944] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(692), 1, + ACTIONS(700), 1, sym_prompt, - [6823] = 2, - ACTIONS(469), 1, + [6951] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(694), 1, + ACTIONS(702), 1, aux_sym_type_definition_token1, - [6830] = 2, - ACTIONS(469), 1, + [6958] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(644), 1, + ACTIONS(652), 1, aux_sym_type_definition_token1, - [6837] = 2, + [6965] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(696), 1, + ACTIONS(704), 1, sym_symbol, - [6844] = 2, + [6972] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(698), 1, + ACTIONS(706), 1, sym_symbol, - [6851] = 2, + [6979] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(700), 1, + ACTIONS(708), 1, sym_prompt, - [6858] = 2, - ACTIONS(469), 1, + [6986] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(702), 1, + ACTIONS(710), 1, aux_sym_type_definition_token1, - [6865] = 2, + [6993] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(704), 1, + ACTIONS(712), 1, sym_prompt, - [6872] = 2, - ACTIONS(469), 1, + [7000] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(706), 1, + ACTIONS(714), 1, aux_sym_type_definition_token1, - [6879] = 2, + [7007] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(708), 1, + ACTIONS(716), 1, sym__help_text, - [6886] = 2, + [7014] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(710), 1, + ACTIONS(718), 1, sym_symbol, - [6893] = 2, + [7021] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(712), 1, + ACTIONS(720), 1, sym_symbol, - [6900] = 2, + [7028] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(714), 1, + ACTIONS(722), 1, sym_symbol, - [6907] = 2, + [7035] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(716), 1, + ACTIONS(724), 1, sym_prompt, - [6914] = 2, - ACTIONS(469), 1, + [7042] = 2, + ACTIONS(485), 1, sym_comment, - ACTIONS(718), 1, + ACTIONS(726), 1, aux_sym_type_definition_token1, - [6921] = 2, + [7049] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(720), 1, + ACTIONS(728), 1, anon_sym_COLON_EQ, - [6928] = 2, + [7056] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(722), 1, + ACTIONS(730), 1, sym_prompt, - [6935] = 2, + [7063] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(724), 1, + ACTIONS(732), 1, sym_prompt, - [6942] = 2, + [7070] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(726), 1, + ACTIONS(734), 1, sym_prompt, - [6949] = 2, + [7077] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(728), 1, + ACTIONS(736), 1, sym_prompt, - [6956] = 2, + [7084] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(730), 1, + ACTIONS(738), 1, sym_prompt, - [6963] = 2, + [7091] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(732), 1, + ACTIONS(740), 1, sym_symbol, - [6970] = 2, + [7098] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(734), 1, + ACTIONS(742), 1, sym__help_text, - [6977] = 2, + [7105] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(736), 1, + ACTIONS(744), 1, sym_symbol, }; @@ -8568,23 +8690,23 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(18)] = 210, [SMALL_STATE(19)] = 280, [SMALL_STATE(20)] = 350, - [SMALL_STATE(21)] = 394, - [SMALL_STATE(22)] = 438, - [SMALL_STATE(23)] = 484, - [SMALL_STATE(24)] = 528, - [SMALL_STATE(25)] = 578, - [SMALL_STATE(26)] = 632, - [SMALL_STATE(27)] = 684, - [SMALL_STATE(28)] = 728, - [SMALL_STATE(29)] = 772, + [SMALL_STATE(21)] = 402, + [SMALL_STATE(22)] = 452, + [SMALL_STATE(23)] = 506, + [SMALL_STATE(24)] = 550, + [SMALL_STATE(25)] = 594, + [SMALL_STATE(26)] = 638, + [SMALL_STATE(27)] = 682, + [SMALL_STATE(28)] = 726, + [SMALL_STATE(29)] = 770, [SMALL_STATE(30)] = 816, - [SMALL_STATE(31)] = 866, - [SMALL_STATE(32)] = 908, - [SMALL_STATE(33)] = 950, - [SMALL_STATE(34)] = 992, - [SMALL_STATE(35)] = 1036, - [SMALL_STATE(36)] = 1078, - [SMALL_STATE(37)] = 1126, + [SMALL_STATE(31)] = 858, + [SMALL_STATE(32)] = 906, + [SMALL_STATE(33)] = 956, + [SMALL_STATE(34)] = 1008, + [SMALL_STATE(35)] = 1052, + [SMALL_STATE(36)] = 1094, + [SMALL_STATE(37)] = 1136, [SMALL_STATE(38)] = 1178, [SMALL_STATE(39)] = 1220, [SMALL_STATE(40)] = 1262, @@ -8637,191 +8759,195 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(87)] = 3139, [SMALL_STATE(88)] = 3167, [SMALL_STATE(89)] = 3195, - [SMALL_STATE(90)] = 3225, + [SMALL_STATE(90)] = 3223, [SMALL_STATE(91)] = 3253, - [SMALL_STATE(92)] = 3287, - [SMALL_STATE(93)] = 3323, + [SMALL_STATE(92)] = 3281, + [SMALL_STATE(93)] = 3315, [SMALL_STATE(94)] = 3351, - [SMALL_STATE(95)] = 3394, - [SMALL_STATE(96)] = 3437, - [SMALL_STATE(97)] = 3480, - [SMALL_STATE(98)] = 3523, - [SMALL_STATE(99)] = 3566, - [SMALL_STATE(100)] = 3609, - [SMALL_STATE(101)] = 3652, - [SMALL_STATE(102)] = 3695, - [SMALL_STATE(103)] = 3738, - [SMALL_STATE(104)] = 3781, - [SMALL_STATE(105)] = 3824, - [SMALL_STATE(106)] = 3867, - [SMALL_STATE(107)] = 3910, - [SMALL_STATE(108)] = 3953, - [SMALL_STATE(109)] = 3988, - [SMALL_STATE(110)] = 4013, - [SMALL_STATE(111)] = 4038, - [SMALL_STATE(112)] = 4063, - [SMALL_STATE(113)] = 4090, - [SMALL_STATE(114)] = 4115, - [SMALL_STATE(115)] = 4140, - [SMALL_STATE(116)] = 4171, - [SMALL_STATE(117)] = 4204, - [SMALL_STATE(118)] = 4239, - [SMALL_STATE(119)] = 4264, - [SMALL_STATE(120)] = 4281, - [SMALL_STATE(121)] = 4310, - [SMALL_STATE(122)] = 4327, - [SMALL_STATE(123)] = 4356, - [SMALL_STATE(124)] = 4373, - [SMALL_STATE(125)] = 4390, - [SMALL_STATE(126)] = 4419, - [SMALL_STATE(127)] = 4448, - [SMALL_STATE(128)] = 4465, - [SMALL_STATE(129)] = 4482, - [SMALL_STATE(130)] = 4499, - [SMALL_STATE(131)] = 4516, - [SMALL_STATE(132)] = 4542, - [SMALL_STATE(133)] = 4568, - [SMALL_STATE(134)] = 4594, - [SMALL_STATE(135)] = 4620, - [SMALL_STATE(136)] = 4646, - [SMALL_STATE(137)] = 4672, - [SMALL_STATE(138)] = 4690, - [SMALL_STATE(139)] = 4708, - [SMALL_STATE(140)] = 4734, - [SMALL_STATE(141)] = 4752, - [SMALL_STATE(142)] = 4778, - [SMALL_STATE(143)] = 4796, - [SMALL_STATE(144)] = 4814, - [SMALL_STATE(145)] = 4838, - [SMALL_STATE(146)] = 4860, - [SMALL_STATE(147)] = 4878, - [SMALL_STATE(148)] = 4898, - [SMALL_STATE(149)] = 4924, - [SMALL_STATE(150)] = 4950, - [SMALL_STATE(151)] = 4976, - [SMALL_STATE(152)] = 5002, - [SMALL_STATE(153)] = 5028, - [SMALL_STATE(154)] = 5054, - [SMALL_STATE(155)] = 5080, - [SMALL_STATE(156)] = 5106, - [SMALL_STATE(157)] = 5132, - [SMALL_STATE(158)] = 5158, - [SMALL_STATE(159)] = 5184, - [SMALL_STATE(160)] = 5210, - [SMALL_STATE(161)] = 5236, - [SMALL_STATE(162)] = 5262, - [SMALL_STATE(163)] = 5288, - [SMALL_STATE(164)] = 5314, - [SMALL_STATE(165)] = 5340, - [SMALL_STATE(166)] = 5366, - [SMALL_STATE(167)] = 5392, - [SMALL_STATE(168)] = 5418, - [SMALL_STATE(169)] = 5444, - [SMALL_STATE(170)] = 5470, - [SMALL_STATE(171)] = 5496, - [SMALL_STATE(172)] = 5522, - [SMALL_STATE(173)] = 5548, - [SMALL_STATE(174)] = 5574, - [SMALL_STATE(175)] = 5600, - [SMALL_STATE(176)] = 5626, - [SMALL_STATE(177)] = 5652, - [SMALL_STATE(178)] = 5678, - [SMALL_STATE(179)] = 5704, - [SMALL_STATE(180)] = 5730, - [SMALL_STATE(181)] = 5756, - [SMALL_STATE(182)] = 5782, - [SMALL_STATE(183)] = 5808, - [SMALL_STATE(184)] = 5825, - [SMALL_STATE(185)] = 5850, - [SMALL_STATE(186)] = 5873, - [SMALL_STATE(187)] = 5898, - [SMALL_STATE(188)] = 5923, - [SMALL_STATE(189)] = 5940, - [SMALL_STATE(190)] = 5963, - [SMALL_STATE(191)] = 5988, - [SMALL_STATE(192)] = 6005, - [SMALL_STATE(193)] = 6022, - [SMALL_STATE(194)] = 6047, - [SMALL_STATE(195)] = 6070, - [SMALL_STATE(196)] = 6087, - [SMALL_STATE(197)] = 6104, - [SMALL_STATE(198)] = 6121, - [SMALL_STATE(199)] = 6138, - [SMALL_STATE(200)] = 6155, - [SMALL_STATE(201)] = 6175, - [SMALL_STATE(202)] = 6195, - [SMALL_STATE(203)] = 6215, - [SMALL_STATE(204)] = 6235, - [SMALL_STATE(205)] = 6255, - [SMALL_STATE(206)] = 6275, - [SMALL_STATE(207)] = 6297, - [SMALL_STATE(208)] = 6317, - [SMALL_STATE(209)] = 6337, - [SMALL_STATE(210)] = 6357, - [SMALL_STATE(211)] = 6377, - [SMALL_STATE(212)] = 6397, - [SMALL_STATE(213)] = 6417, - [SMALL_STATE(214)] = 6439, - [SMALL_STATE(215)] = 6459, - [SMALL_STATE(216)] = 6469, - [SMALL_STATE(217)] = 6479, - [SMALL_STATE(218)] = 6489, - [SMALL_STATE(219)] = 6502, - [SMALL_STATE(220)] = 6515, - [SMALL_STATE(221)] = 6528, - [SMALL_STATE(222)] = 6541, - [SMALL_STATE(223)] = 6554, - [SMALL_STATE(224)] = 6567, - [SMALL_STATE(225)] = 6580, - [SMALL_STATE(226)] = 6593, - [SMALL_STATE(227)] = 6606, - [SMALL_STATE(228)] = 6619, - [SMALL_STATE(229)] = 6632, - [SMALL_STATE(230)] = 6645, - [SMALL_STATE(231)] = 6658, - [SMALL_STATE(232)] = 6671, - [SMALL_STATE(233)] = 6684, - [SMALL_STATE(234)] = 6694, - [SMALL_STATE(235)] = 6704, - [SMALL_STATE(236)] = 6711, - [SMALL_STATE(237)] = 6718, - [SMALL_STATE(238)] = 6725, - [SMALL_STATE(239)] = 6732, - [SMALL_STATE(240)] = 6739, - [SMALL_STATE(241)] = 6746, - [SMALL_STATE(242)] = 6753, - [SMALL_STATE(243)] = 6760, - [SMALL_STATE(244)] = 6767, - [SMALL_STATE(245)] = 6774, - [SMALL_STATE(246)] = 6781, - [SMALL_STATE(247)] = 6788, - [SMALL_STATE(248)] = 6795, - [SMALL_STATE(249)] = 6802, - [SMALL_STATE(250)] = 6809, - [SMALL_STATE(251)] = 6816, - [SMALL_STATE(252)] = 6823, - [SMALL_STATE(253)] = 6830, - [SMALL_STATE(254)] = 6837, - [SMALL_STATE(255)] = 6844, - [SMALL_STATE(256)] = 6851, - [SMALL_STATE(257)] = 6858, - [SMALL_STATE(258)] = 6865, - [SMALL_STATE(259)] = 6872, - [SMALL_STATE(260)] = 6879, - [SMALL_STATE(261)] = 6886, - [SMALL_STATE(262)] = 6893, - [SMALL_STATE(263)] = 6900, - [SMALL_STATE(264)] = 6907, - [SMALL_STATE(265)] = 6914, - [SMALL_STATE(266)] = 6921, - [SMALL_STATE(267)] = 6928, - [SMALL_STATE(268)] = 6935, - [SMALL_STATE(269)] = 6942, - [SMALL_STATE(270)] = 6949, - [SMALL_STATE(271)] = 6956, - [SMALL_STATE(272)] = 6963, - [SMALL_STATE(273)] = 6970, - [SMALL_STATE(274)] = 6977, + [SMALL_STATE(95)] = 3386, + [SMALL_STATE(96)] = 3421, + [SMALL_STATE(97)] = 3464, + [SMALL_STATE(98)] = 3507, + [SMALL_STATE(99)] = 3550, + [SMALL_STATE(100)] = 3593, + [SMALL_STATE(101)] = 3636, + [SMALL_STATE(102)] = 3679, + [SMALL_STATE(103)] = 3722, + [SMALL_STATE(104)] = 3765, + [SMALL_STATE(105)] = 3808, + [SMALL_STATE(106)] = 3851, + [SMALL_STATE(107)] = 3894, + [SMALL_STATE(108)] = 3937, + [SMALL_STATE(109)] = 3980, + [SMALL_STATE(110)] = 4023, + [SMALL_STATE(111)] = 4058, + [SMALL_STATE(112)] = 4083, + [SMALL_STATE(113)] = 4114, + [SMALL_STATE(114)] = 4147, + [SMALL_STATE(115)] = 4172, + [SMALL_STATE(116)] = 4197, + [SMALL_STATE(117)] = 4224, + [SMALL_STATE(118)] = 4249, + [SMALL_STATE(119)] = 4284, + [SMALL_STATE(120)] = 4309, + [SMALL_STATE(121)] = 4334, + [SMALL_STATE(122)] = 4351, + [SMALL_STATE(123)] = 4380, + [SMALL_STATE(124)] = 4397, + [SMALL_STATE(125)] = 4426, + [SMALL_STATE(126)] = 4455, + [SMALL_STATE(127)] = 4472, + [SMALL_STATE(128)] = 4501, + [SMALL_STATE(129)] = 4518, + [SMALL_STATE(130)] = 4535, + [SMALL_STATE(131)] = 4564, + [SMALL_STATE(132)] = 4593, + [SMALL_STATE(133)] = 4610, + [SMALL_STATE(134)] = 4627, + [SMALL_STATE(135)] = 4644, + [SMALL_STATE(136)] = 4670, + [SMALL_STATE(137)] = 4696, + [SMALL_STATE(138)] = 4722, + [SMALL_STATE(139)] = 4748, + [SMALL_STATE(140)] = 4774, + [SMALL_STATE(141)] = 4800, + [SMALL_STATE(142)] = 4826, + [SMALL_STATE(143)] = 4844, + [SMALL_STATE(144)] = 4862, + [SMALL_STATE(145)] = 4880, + [SMALL_STATE(146)] = 4898, + [SMALL_STATE(147)] = 4916, + [SMALL_STATE(148)] = 4940, + [SMALL_STATE(149)] = 4962, + [SMALL_STATE(150)] = 4980, + [SMALL_STATE(151)] = 5000, + [SMALL_STATE(152)] = 5026, + [SMALL_STATE(153)] = 5052, + [SMALL_STATE(154)] = 5078, + [SMALL_STATE(155)] = 5104, + [SMALL_STATE(156)] = 5130, + [SMALL_STATE(157)] = 5156, + [SMALL_STATE(158)] = 5182, + [SMALL_STATE(159)] = 5208, + [SMALL_STATE(160)] = 5234, + [SMALL_STATE(161)] = 5260, + [SMALL_STATE(162)] = 5286, + [SMALL_STATE(163)] = 5312, + [SMALL_STATE(164)] = 5338, + [SMALL_STATE(165)] = 5364, + [SMALL_STATE(166)] = 5390, + [SMALL_STATE(167)] = 5416, + [SMALL_STATE(168)] = 5442, + [SMALL_STATE(169)] = 5468, + [SMALL_STATE(170)] = 5494, + [SMALL_STATE(171)] = 5520, + [SMALL_STATE(172)] = 5546, + [SMALL_STATE(173)] = 5572, + [SMALL_STATE(174)] = 5598, + [SMALL_STATE(175)] = 5624, + [SMALL_STATE(176)] = 5650, + [SMALL_STATE(177)] = 5676, + [SMALL_STATE(178)] = 5702, + [SMALL_STATE(179)] = 5728, + [SMALL_STATE(180)] = 5754, + [SMALL_STATE(181)] = 5780, + [SMALL_STATE(182)] = 5806, + [SMALL_STATE(183)] = 5832, + [SMALL_STATE(184)] = 5858, + [SMALL_STATE(185)] = 5884, + [SMALL_STATE(186)] = 5910, + [SMALL_STATE(187)] = 5936, + [SMALL_STATE(188)] = 5953, + [SMALL_STATE(189)] = 5978, + [SMALL_STATE(190)] = 6003, + [SMALL_STATE(191)] = 6026, + [SMALL_STATE(192)] = 6051, + [SMALL_STATE(193)] = 6068, + [SMALL_STATE(194)] = 6091, + [SMALL_STATE(195)] = 6116, + [SMALL_STATE(196)] = 6133, + [SMALL_STATE(197)] = 6150, + [SMALL_STATE(198)] = 6175, + [SMALL_STATE(199)] = 6198, + [SMALL_STATE(200)] = 6215, + [SMALL_STATE(201)] = 6232, + [SMALL_STATE(202)] = 6249, + [SMALL_STATE(203)] = 6266, + [SMALL_STATE(204)] = 6283, + [SMALL_STATE(205)] = 6303, + [SMALL_STATE(206)] = 6323, + [SMALL_STATE(207)] = 6343, + [SMALL_STATE(208)] = 6363, + [SMALL_STATE(209)] = 6383, + [SMALL_STATE(210)] = 6403, + [SMALL_STATE(211)] = 6425, + [SMALL_STATE(212)] = 6445, + [SMALL_STATE(213)] = 6465, + [SMALL_STATE(214)] = 6485, + [SMALL_STATE(215)] = 6505, + [SMALL_STATE(216)] = 6525, + [SMALL_STATE(217)] = 6547, + [SMALL_STATE(218)] = 6567, + [SMALL_STATE(219)] = 6587, + [SMALL_STATE(220)] = 6597, + [SMALL_STATE(221)] = 6607, + [SMALL_STATE(222)] = 6617, + [SMALL_STATE(223)] = 6630, + [SMALL_STATE(224)] = 6643, + [SMALL_STATE(225)] = 6656, + [SMALL_STATE(226)] = 6669, + [SMALL_STATE(227)] = 6682, + [SMALL_STATE(228)] = 6695, + [SMALL_STATE(229)] = 6708, + [SMALL_STATE(230)] = 6721, + [SMALL_STATE(231)] = 6734, + [SMALL_STATE(232)] = 6747, + [SMALL_STATE(233)] = 6760, + [SMALL_STATE(234)] = 6773, + [SMALL_STATE(235)] = 6786, + [SMALL_STATE(236)] = 6799, + [SMALL_STATE(237)] = 6812, + [SMALL_STATE(238)] = 6822, + [SMALL_STATE(239)] = 6832, + [SMALL_STATE(240)] = 6839, + [SMALL_STATE(241)] = 6846, + [SMALL_STATE(242)] = 6853, + [SMALL_STATE(243)] = 6860, + [SMALL_STATE(244)] = 6867, + [SMALL_STATE(245)] = 6874, + [SMALL_STATE(246)] = 6881, + [SMALL_STATE(247)] = 6888, + [SMALL_STATE(248)] = 6895, + [SMALL_STATE(249)] = 6902, + [SMALL_STATE(250)] = 6909, + [SMALL_STATE(251)] = 6916, + [SMALL_STATE(252)] = 6923, + [SMALL_STATE(253)] = 6930, + [SMALL_STATE(254)] = 6937, + [SMALL_STATE(255)] = 6944, + [SMALL_STATE(256)] = 6951, + [SMALL_STATE(257)] = 6958, + [SMALL_STATE(258)] = 6965, + [SMALL_STATE(259)] = 6972, + [SMALL_STATE(260)] = 6979, + [SMALL_STATE(261)] = 6986, + [SMALL_STATE(262)] = 6993, + [SMALL_STATE(263)] = 7000, + [SMALL_STATE(264)] = 7007, + [SMALL_STATE(265)] = 7014, + [SMALL_STATE(266)] = 7021, + [SMALL_STATE(267)] = 7028, + [SMALL_STATE(268)] = 7035, + [SMALL_STATE(269)] = 7042, + [SMALL_STATE(270)] = 7049, + [SMALL_STATE(271)] = 7056, + [SMALL_STATE(272)] = 7063, + [SMALL_STATE(273)] = 7070, + [SMALL_STATE(274)] = 7077, + [SMALL_STATE(275)] = 7084, + [SMALL_STATE(276)] = 7091, + [SMALL_STATE(277)] = 7098, + [SMALL_STATE(278)] = 7105, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -8829,351 +8955,355 @@ static const TSParseActionEntry ts_parse_actions[] = { [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, SHIFT_EXTRA(), [5] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 0), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(249), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), - [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(253), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), + [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(40), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), - [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), - [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(161), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [27] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), + [29] = {.entry = {.count = 1, .reusable = false}}, SHIFT(259), [31] = {.entry = {.count = 1, .reusable = false}}, SHIFT(41), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(256), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(153), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), - [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(161), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), - [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), - [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), - [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), - [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), - [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), - [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(2), - [75] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menuconfig, 3, .production_id = 1), - [77] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config, 3, .production_id = 1), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 2, .production_id = 1), - [81] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [83] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 3, .production_id = 1), - [85] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(213), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(251), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(158), - [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(159), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(161), - [102] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(261), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(235), - [108] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(170), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(222), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(273), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(14), - [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 2, .production_id = 1), - [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(206), - [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(152), - [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), - [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), - [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(16), - [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 3, .production_id = 1), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(19), - [148] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menuconfig, 3, .production_id = 1), - [150] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config, 3, .production_id = 1), - [152] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), - [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(206), - [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(258), - [160] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(152), - [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(151), - [166] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(150), - [169] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(262), - [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(263), - [175] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(166), - [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(227), - [181] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(260), - [184] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(19), - [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 2), - [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 2), - [191] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [193] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [195] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 5), - [197] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 5), - [199] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [201] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [203] = {.entry = {.count = 1, .reusable = false}}, SHIFT(165), - [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_limiting_menu_display, 2), - [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_limiting_menu_display, 2), - [209] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [211] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 3), - [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 3), - [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), - [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [229] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [231] = {.entry = {.count = 1, .reusable = false}}, SHIFT(174), - [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), - [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), - [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(46), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(260), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(195), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [43] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [45] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(162), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(163), + [51] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(265), + [55] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [59] = {.entry = {.count = 1, .reusable = false}}, SHIFT(223), + [61] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [63] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), + [65] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [67] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [69] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [71] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [73] = {.entry = {.count = 1, .reusable = false}}, SHIFT(3), + [75] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 2, .production_id = 1), + [77] = {.entry = {.count = 1, .reusable = false}}, SHIFT(14), + [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), + [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(216), + [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(255), + [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(162), + [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(163), + [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(165), + [96] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(265), + [99] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(239), + [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(175), + [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(223), + [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(277), + [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(11), + [114] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menuconfig, 3, .production_id = 1), + [116] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config, 3, .production_id = 1), + [118] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 3, .production_id = 1), + [120] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config, 3, .production_id = 1), + [122] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), + [124] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), + [126] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [128] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [130] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [132] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [134] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), + [136] = {.entry = {.count = 1, .reusable = true}}, SHIFT(170), + [138] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), + [140] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), + [142] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), + [144] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menuconfig, 3, .production_id = 1), + [146] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), + [148] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(210), + [151] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(262), + [154] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(156), + [157] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(155), + [160] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(154), + [163] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(266), + [166] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(267), + [169] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(170), + [172] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(229), + [175] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(264), + [178] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(17), + [181] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 3, .production_id = 1), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 2, .production_id = 1), + [185] = {.entry = {.count = 1, .reusable = false}}, SHIFT(18), + [187] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 5), + [189] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 5), + [191] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [193] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), + [195] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [197] = {.entry = {.count = 1, .reusable = false}}, SHIFT(169), + [199] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_limiting_menu_display, 2), + [201] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_limiting_menu_display, 2), + [203] = {.entry = {.count = 1, .reusable = true}}, SHIFT(166), + [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 3), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 3), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), + [211] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), + [213] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 2), + [215] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 2), + [217] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), + [219] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), + [221] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), + [223] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), + [225] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [227] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), + [229] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [231] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [233] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [235] = {.entry = {.count = 1, .reusable = false}}, SHIFT(42), + [237] = {.entry = {.count = 1, .reusable = false}}, SHIFT(9), + [239] = {.entry = {.count = 1, .reusable = false}}, SHIFT(43), [241] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(251), - [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), - [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), - [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), - [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), - [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), - [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(273), - [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), - [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), - [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(227), - [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(260), - [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 4), - [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 4), - [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 4), - [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 4), - [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), + [243] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), + [245] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [247] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [249] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), + [251] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), + [253] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [255] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [257] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), + [259] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), + [261] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [263] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), + [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), + [271] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), + [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), + [275] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [277] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [279] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), + [281] = {.entry = {.count = 1, .reusable = true}}, SHIFT(264), + [283] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), + [285] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [287] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), + [289] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), + [291] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 3), + [293] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 3), + [295] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reverse_dependencies, 4), + [297] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reverse_dependencies, 4), + [299] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 4), + [301] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 4), [303] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_weak_reverse_dependencies, 3), [305] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_weak_reverse_dependencies, 3), - [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 5), - [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 5), - [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 4), - [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 4), + [307] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 4), + [309] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 4), + [311] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_help_text, 2), + [313] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_help_text, 2), [315] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reverse_dependencies, 3), [317] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reverse_dependencies, 3), - [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 4), - [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 4), - [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reverse_dependencies, 4), - [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reverse_dependencies, 4), - [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_help_text, 2), - [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_help_text, 2), - [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependencies, 3), - [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 3), - [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 3), - [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 3), - [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 3), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 3), - [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 3), - [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 3), - [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_weak_reverse_dependencies, 4), - [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_weak_reverse_dependencies, 4), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), - [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(167), - [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(127), - [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(266), - [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(254), - [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(255), + [319] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 4), + [321] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 4), + [323] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 5), + [325] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 5), + [327] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 4), + [329] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 4), + [331] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), + [333] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), + [335] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependencies, 3), + [337] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 3), + [339] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 3), + [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 3), + [343] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 3), + [345] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 3), + [347] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_weak_reverse_dependencies, 4), + [349] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_weak_reverse_dependencies, 4), + [351] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), + [353] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), + [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [357] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [359] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), + [361] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [363] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [365] = {.entry = {.count = 1, .reusable = false}}, SHIFT(172), + [367] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), + [369] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(270), + [372] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(258), + [375] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(259), [378] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(41), [381] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), - [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(271), - [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(256), - [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(153), - [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(270), - [395] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [397] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 1), - [399] = {.entry = {.count = 1, .reusable = false}}, SHIFT(191), - [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(183), - [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), - [409] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), - [411] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(249), - [414] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(274), - [417] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(272), - [420] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(40), - [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(267), - [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(264), - [429] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(157), - [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(245), - [435] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 2), - [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [441] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 3, .production_id = 4), - [443] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [445] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [447] = {.entry = {.count = 1, .reusable = false}}, SHIFT(180), - [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [451] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 3, .production_id = 4), - [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [455] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 5, .production_id = 1), - [457] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), - [459] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), - [461] = {.entry = {.count = 1, .reusable = false}}, SHIFT(136), - [463] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [465] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [467] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), - [469] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, .production_id = 3), - [473] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [475] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 5, .production_id = 1), - [477] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 3, .production_id = 1), - [479] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [481] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [483] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3, .production_id = 3), - [485] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 4), - [487] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source, 2), - [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 4, .production_id = 1), + [383] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(275), + [386] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(260), + [389] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(157), + [392] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(273), + [395] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 4, .production_id = 6), + [397] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable, 3, .production_id = 4), + [399] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 2), + [401] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), + [403] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [405] = {.entry = {.count = 1, .reusable = false}}, SHIFT(133), + [407] = {.entry = {.count = 1, .reusable = false}}, SHIFT(187), + [409] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [411] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), + [413] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(253), + [416] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(278), + [419] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(276), + [422] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(40), + [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(271), + [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(268), + [431] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(161), + [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(246), + [437] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [439] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [441] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 1), + [443] = {.entry = {.count = 1, .reusable = false}}, SHIFT(121), + [445] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 3, .production_id = 4), + [447] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), + [449] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), + [451] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [453] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [455] = {.entry = {.count = 1, .reusable = false}}, SHIFT(184), + [457] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable, 4, .production_id = 6), + [459] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 4), + [461] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), + [463] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [465] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [467] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [469] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [471] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source, 2), + [473] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [475] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [477] = {.entry = {.count = 1, .reusable = false}}, SHIFT(140), + [479] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [481] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), + [483] = {.entry = {.count = 1, .reusable = false}}, SHIFT(138), + [485] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), + [487] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), + [489] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 3, .production_id = 1), [491] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), - [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), - [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), - [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [531] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, .production_id = 3), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(109), - [539] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [541] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mainmenu, 2, .production_id = 1), - [543] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mainmenu, 2, .production_id = 1), - [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 4), - [551] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 3, .production_id = 1), - [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [555] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_clause, 2), - [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), - [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 4, .production_id = 1), - [561] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3, .production_id = 3), - [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 5, .production_id = 1), - [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 5, .production_id = 1), - [567] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), - [569] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), - [571] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [573] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [493] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), + [495] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [497] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [499] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [501] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 5, .production_id = 1), + [503] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3, .production_id = 3), + [505] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [509] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 4, .production_id = 1), + [511] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, .production_id = 3), + [513] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 5, .production_id = 1), + [515] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), + [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [519] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), + [523] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), + [525] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [527] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [531] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), + [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [535] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [537] = {.entry = {.count = 1, .reusable = true}}, SHIFT(217), + [539] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, .production_id = 3), + [541] = {.entry = {.count = 1, .reusable = true}}, SHIFT(24), + [543] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [545] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [547] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [549] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mainmenu, 2, .production_id = 1), + [551] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mainmenu, 2, .production_id = 1), + [553] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), + [555] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [557] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 3, .production_id = 1), + [559] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 4), + [561] = {.entry = {.count = 1, .reusable = true}}, SHIFT(88), + [563] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_clause, 2), + [565] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), + [567] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 4, .production_id = 1), + [569] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3, .production_id = 3), + [571] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 5, .production_id = 1), + [573] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 5, .production_id = 1), [575] = {.entry = {.count = 1, .reusable = false}}, SHIFT(84), - [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), - [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(27), - [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(20), - [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(217), - [587] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), - [589] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(208), - [592] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(205), - [595] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(216), - [598] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [600] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [602] = {.entry = {.count = 1, .reusable = false}}, SHIFT(224), - [604] = {.entry = {.count = 1, .reusable = false}}, SHIFT(143), - [606] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), - [608] = {.entry = {.count = 1, .reusable = false}}, SHIFT(204), - [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(137), - [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(32), - [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(33), - [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(225), - [628] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [630] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 1, .production_id = 2), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), - [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), - [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), - [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), - [690] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), - [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [698] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), - [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), - [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(221), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(4), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(129), - [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [577] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), + [579] = {.entry = {.count = 1, .reusable = false}}, SHIFT(205), + [581] = {.entry = {.count = 1, .reusable = false}}, SHIFT(220), + [583] = {.entry = {.count = 1, .reusable = false}}, SHIFT(85), + [585] = {.entry = {.count = 1, .reusable = false}}, SHIFT(209), + [587] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), + [589] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [591] = {.entry = {.count = 1, .reusable = false}}, SHIFT(219), + [593] = {.entry = {.count = 1, .reusable = false}}, SHIFT(208), + [595] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [597] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), + [599] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(207), + [602] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(209), + [605] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(220), + [608] = {.entry = {.count = 1, .reusable = true}}, SHIFT(74), + [610] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [612] = {.entry = {.count = 1, .reusable = false}}, SHIFT(228), + [614] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [616] = {.entry = {.count = 1, .reusable = false}}, SHIFT(117), + [618] = {.entry = {.count = 1, .reusable = false}}, SHIFT(218), + [620] = {.entry = {.count = 1, .reusable = false}}, SHIFT(23), + [622] = {.entry = {.count = 1, .reusable = false}}, SHIFT(142), + [624] = {.entry = {.count = 1, .reusable = false}}, SHIFT(211), + [626] = {.entry = {.count = 1, .reusable = false}}, SHIFT(37), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(48), + [630] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), + [632] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [634] = {.entry = {.count = 1, .reusable = false}}, SHIFT(215), + [636] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), + [638] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 1, .production_id = 2), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(79), + [664] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [666] = {.entry = {.count = 1, .reusable = true}}, SHIFT(238), + [668] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(222), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(50), + [678] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), + [680] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), + [682] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), + [684] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [686] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [688] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [690] = {.entry = {.count = 1, .reusable = true}}, SHIFT(80), + [692] = {.entry = {.count = 1, .reusable = true}}, SHIFT(76), + [694] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), + [696] = {.entry = {.count = 1, .reusable = true}}, SHIFT(122), + [698] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [700] = {.entry = {.count = 1, .reusable = true}}, SHIFT(231), + [702] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [704] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), + [706] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [708] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), + [710] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [712] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), + [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), + [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), + [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [722] = {.entry = {.count = 1, .reusable = true}}, SHIFT(225), + [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(127), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(192), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [742] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), }; enum ts_external_scanner_symbol_identifiers {