From b90d62928832d6e3f53c81288a772dbee5346a0d Mon Sep 17 00:00:00 2001 From: Amaan Qureshi Date: Thu, 25 Jan 2024 13:18:51 -0500 Subject: [PATCH] chore: generate --- src/grammar.json | 55 +- src/node-types.json | 54 +- src/parser.c | 9009 +++++++++++++++++++++++++++----------- src/tree_sitter/parser.h | 10 +- 4 files changed, 6556 insertions(+), 2572 deletions(-) diff --git a/src/grammar.json b/src/grammar.json index d9b5dc2..f8781a2 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -73,6 +73,10 @@ { "type": "SYMBOL", "name": "source" + }, + { + "type": "SYMBOL", + "name": "variable" } ] }, @@ -267,6 +271,31 @@ } ] }, + "variable": { + "type": "SEQ", + "members": [ + { + "type": "FIELD", + "name": "left", + "content": { + "type": "SYMBOL", + "name": "symbol" + } + }, + { + "type": "STRING", + "value": ":=" + }, + { + "type": "FIELD", + "name": "right", + "content": { + "type": "SYMBOL", + "name": "expression" + } + } + ] + }, "_config_option": { "type": "CHOICE", "members": [ @@ -579,12 +608,30 @@ "value": "range" }, { - "type": "SYMBOL", - "name": "symbol" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "symbol" + }, + { + "type": "SYMBOL", + "name": "macro_variable" + } + ] }, { - "type": "SYMBOL", - "name": "symbol" + "type": "CHOICE", + "members": [ + { + "type": "SYMBOL", + "name": "symbol" + }, + { + "type": "SYMBOL", + "name": "macro_variable" + } + ] }, { "type": "CHOICE", diff --git a/src/node-types.json b/src/node-types.json index 13efb78..91df5dc 100644 --- a/src/node-types.json +++ b/src/node-types.json @@ -184,6 +184,10 @@ "type": "type_definition_default", "named": true }, + { + "type": "variable", + "named": true + }, { "type": "weak_reverse_dependencies", "named": true @@ -385,6 +389,10 @@ { "type": "source", "named": true + }, + { + "type": "variable", + "named": true } ] } @@ -484,6 +492,10 @@ { "type": "source", "named": true + }, + { + "type": "variable", + "named": true } ] } @@ -652,6 +664,10 @@ "type": "type_definition_default", "named": true }, + { + "type": "variable", + "named": true + }, { "type": "weak_reverse_dependencies", "named": true @@ -741,6 +757,10 @@ "type": "conditional_clause", "named": true }, + { + "type": "macro_variable", + "named": true + }, { "type": "symbol", "named": true @@ -854,6 +874,32 @@ ] } }, + { + "type": "variable", + "named": true, + "fields": { + "left": { + "multiple": false, + "required": true, + "types": [ + { + "type": "symbol", + "named": true + } + ] + }, + "right": { + "multiple": false, + "required": true, + "types": [ + { + "type": "expression", + "named": true + } + ] + } + } + }, { "type": "weak_reverse_dependencies", "named": true, @@ -897,6 +943,10 @@ "type": ")", "named": false }, + { + "type": ":=", + "named": false + }, { "type": "<", "named": false @@ -927,11 +977,11 @@ }, { "type": "comment", - "named": true + "named": false }, { "type": "comment", - "named": false + "named": true }, { "type": "config", diff --git a/src/parser.c b/src/parser.c index 0b49618..52dffb1 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,15 +6,15 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 136 -#define LARGE_STATE_COUNT 11 -#define SYMBOL_COUNT 77 +#define STATE_COUNT 275 +#define LARGE_STATE_COUNT 15 +#define SYMBOL_COUNT 79 #define ALIAS_COUNT 0 -#define TOKEN_COUNT 47 +#define TOKEN_COUNT 48 #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 5 #define MAX_ALIAS_SEQUENCE_LENGTH 5 -#define PRODUCTION_ID_COUNT 5 +#define PRODUCTION_ID_COUNT 6 enum ts_symbol_identifiers { sym_symbol = 1, @@ -29,70 +29,72 @@ enum ts_symbol_identifiers { anon_sym_if = 10, anon_sym_endif = 11, anon_sym_source = 12, - anon_sym_bool = 13, - anon_sym_tristate = 14, - anon_sym_int = 15, - anon_sym_hex = 16, - anon_sym_string = 17, - aux_sym_type_definition_token1 = 18, - anon_sym_prompt = 19, - anon_sym_default = 20, - anon_sym_def_bool = 21, - anon_sym_def_tristate = 22, - anon_sym_dependson = 23, - anon_sym_select = 24, - anon_sym_imply = 25, - anon_sym_visibleif = 26, - anon_sym_range = 27, - anon_sym_help = 28, - sym_optional = 29, - sym_modules = 30, - anon_sym_BANG = 31, - anon_sym_PIPE_PIPE = 32, - anon_sym_AMP_AMP = 33, - anon_sym_EQ = 34, - anon_sym_BANG_EQ = 35, - anon_sym_LT = 36, - anon_sym_GT = 37, - anon_sym_LT_EQ = 38, - anon_sym_GT_EQ = 39, - anon_sym_LPAREN = 40, - anon_sym_RPAREN = 41, - anon_sym_DOLLAR_LPAREN = 42, - sym_macro_content = 43, - sym_prompt = 44, - sym_comment = 45, - sym__help_text = 46, - sym_configuration = 47, - sym_mainmenu = 48, - sym__entry = 49, - sym_config = 50, - sym_menuconfig = 51, - sym_choice = 52, - sym_comment_entry = 53, - sym_menu = 54, - sym_if = 55, - sym_source = 56, - sym__config_option = 57, - sym_type_definition = 58, - sym_input_prompt = 59, - sym_default_value = 60, - sym_type_definition_default = 61, - sym_dependencies = 62, - sym_reverse_dependencies = 63, - sym_weak_reverse_dependencies = 64, - sym_limiting_menu_display = 65, - sym_numerical_ranges = 66, - sym_help_text = 67, - sym_conditional_clause = 68, - sym_expression = 69, - sym_unary_expression = 70, - sym_binary_expression = 71, - sym_parenthesized_expression = 72, - sym_macro_variable = 73, - aux_sym_configuration_repeat1 = 74, - aux_sym_config_repeat1 = 75, - aux_sym_macro_variable_repeat1 = 76, + 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, }; static const char * const ts_symbol_names[] = { @@ -109,6 +111,7 @@ static const char * const ts_symbol_names[] = { [anon_sym_if] = "if", [anon_sym_endif] = "endif", [anon_sym_source] = "source", + [anon_sym_COLON_EQ] = ":=", [anon_sym_bool] = "bool", [anon_sym_tristate] = "tristate", [anon_sym_int] = "int", @@ -153,6 +156,7 @@ static const char * const ts_symbol_names[] = { [sym_menu] = "menu", [sym_if] = "if", [sym_source] = "source", + [sym_variable] = "variable", [sym__config_option] = "_config_option", [sym_type_definition] = "type_definition", [sym_input_prompt] = "input_prompt", @@ -189,6 +193,7 @@ static const TSSymbol ts_symbol_map[] = { [anon_sym_if] = anon_sym_if, [anon_sym_endif] = anon_sym_endif, [anon_sym_source] = anon_sym_source, + [anon_sym_COLON_EQ] = anon_sym_COLON_EQ, [anon_sym_bool] = anon_sym_bool, [anon_sym_tristate] = anon_sym_tristate, [anon_sym_int] = anon_sym_int, @@ -233,6 +238,7 @@ static const TSSymbol ts_symbol_map[] = { [sym_menu] = sym_menu, [sym_if] = sym_if, [sym_source] = sym_source, + [sym_variable] = sym_variable, [sym__config_option] = sym__config_option, [sym_type_definition] = sym_type_definition, [sym_input_prompt] = sym_input_prompt, @@ -308,6 +314,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = false, }, + [anon_sym_COLON_EQ] = { + .visible = true, + .named = false, + }, [anon_sym_bool] = { .visible = true, .named = false, @@ -484,6 +494,10 @@ static const TSSymbolMetadata ts_symbol_metadata[] = { .visible = true, .named = true, }, + [sym_variable] = { + .visible = true, + .named = true, + }, [sym__config_option] = { .visible = false, .named = true, @@ -587,7 +601,8 @@ static const char * const ts_field_names[] = { static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [1] = {.index = 0, .length = 1}, [3] = {.index = 1, .length = 1}, - [4] = {.index = 2, .length = 3}, + [4] = {.index = 2, .length = 2}, + [5] = {.index = 4, .length = 3}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -596,6 +611,9 @@ static const TSFieldMapEntry ts_field_map_entries[] = { [1] = {field_condition, 1}, [2] = + {field_left, 0}, + {field_right, 2}, + [4] = {field_left, 0}, {field_operator, 1}, {field_right, 2}, @@ -616,23 +634,23 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [0] = 0, [1] = 1, [2] = 2, - [3] = 3, + [3] = 2, [4] = 4, - [5] = 5, + [5] = 4, [6] = 6, [7] = 7, - [8] = 8, - [9] = 9, + [8] = 7, + [9] = 6, [10] = 10, [11] = 11, [12] = 12, [13] = 13, [14] = 14, - [15] = 15, - [16] = 16, - [17] = 17, - [18] = 18, - [19] = 19, + [15] = 12, + [16] = 13, + [17] = 10, + [18] = 11, + [19] = 14, [20] = 20, [21] = 21, [22] = 22, @@ -643,24 +661,24 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [27] = 27, [28] = 28, [29] = 29, - [30] = 30, - [31] = 31, - [32] = 32, - [33] = 33, - [34] = 34, - [35] = 35, - [36] = 36, - [37] = 37, - [38] = 38, - [39] = 39, + [30] = 26, + [31] = 21, + [32] = 27, + [33] = 20, + [34] = 22, + [35] = 23, + [36] = 24, + [37] = 25, + [38] = 28, + [39] = 29, [40] = 40, - [41] = 41, + [41] = 40, [42] = 42, [43] = 43, [44] = 44, - [45] = 45, - [46] = 46, - [47] = 47, + [45] = 42, + [46] = 43, + [47] = 44, [48] = 48, [49] = 49, [50] = 50, @@ -676,108 +694,249 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [60] = 60, [61] = 61, [62] = 62, - [63] = 15, - [64] = 18, + [63] = 63, + [64] = 64, [65] = 65, - [66] = 66, - [67] = 67, - [68] = 68, - [69] = 67, - [70] = 66, - [71] = 71, - [72] = 72, - [73] = 65, - [74] = 68, - [75] = 16, - [76] = 62, - [77] = 77, - [78] = 78, - [79] = 12, - [80] = 17, - [81] = 19, - [82] = 72, - [83] = 83, - [84] = 11, - [85] = 14, + [66] = 65, + [67] = 61, + [68] = 57, + [69] = 62, + [70] = 60, + [71] = 59, + [72] = 51, + [73] = 50, + [74] = 54, + [75] = 63, + [76] = 56, + [77] = 64, + [78] = 53, + [79] = 58, + [80] = 55, + [81] = 48, + [82] = 52, + [83] = 49, + [84] = 27, + [85] = 20, [86] = 86, - [87] = 87, - [88] = 13, - [89] = 89, - [90] = 90, - [91] = 89, - [92] = 92, - [93] = 93, + [87] = 21, + [88] = 29, + [89] = 22, + [90] = 23, + [91] = 24, + [92] = 26, + [93] = 28, [94] = 94, [95] = 95, - [96] = 96, - [97] = 94, - [98] = 94, + [96] = 94, + [97] = 97, + [98] = 98, [99] = 99, - [100] = 99, - [101] = 99, - [102] = 102, - [103] = 12, - [104] = 15, + [100] = 100, + [101] = 101, + [102] = 98, + [103] = 100, + [104] = 86, [105] = 105, - [106] = 106, - [107] = 107, + [106] = 99, + [107] = 95, [108] = 108, - [109] = 109, - [110] = 107, - [111] = 34, - [112] = 29, - [113] = 113, - [114] = 114, - [115] = 115, - [116] = 116, - [117] = 117, - [118] = 118, + [109] = 28, + [110] = 21, + [111] = 20, + [112] = 22, + [113] = 27, + [114] = 23, + [115] = 24, + [116] = 26, + [117] = 108, + [118] = 29, [119] = 119, [120] = 120, [121] = 121, [122] = 122, [123] = 123, [124] = 124, - [125] = 125, - [126] = 126, + [125] = 122, + [126] = 120, [127] = 127, [128] = 128, [129] = 129, [130] = 130, [131] = 131, [132] = 132, - [133] = 131, - [134] = 123, - [135] = 135, + [133] = 133, + [134] = 134, + [135] = 131, + [136] = 136, + [137] = 20, + [138] = 29, + [139] = 139, + [140] = 21, + [141] = 134, + [142] = 28, + [143] = 27, + [144] = 26, + [145] = 24, + [146] = 23, + [147] = 22, + [148] = 134, + [149] = 134, + [150] = 150, + [151] = 151, + [152] = 152, + [153] = 153, + [154] = 132, + [155] = 132, + [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, + [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, + [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, + [222] = 222, + [223] = 223, + [224] = 224, + [225] = 224, + [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, + [241] = 241, + [242] = 242, + [243] = 243, + [244] = 241, + [245] = 245, + [246] = 246, + [247] = 243, + [248] = 248, + [249] = 249, + [250] = 250, + [251] = 251, + [252] = 242, + [253] = 246, + [254] = 254, + [255] = 255, + [256] = 256, + [257] = 243, + [258] = 251, + [259] = 248, + [260] = 260, + [261] = 261, + [262] = 261, + [263] = 235, + [264] = 256, + [265] = 237, + [266] = 249, + [267] = 267, + [268] = 251, + [269] = 269, + [270] = 245, + [271] = 267, + [272] = 255, + [273] = 260, + [274] = 254, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: - if (eof) ADVANCE(36); - if (lookahead == '!') ADVANCE(41); + if (eof) ADVANCE(37); + if (lookahead == '!') ADVANCE(43); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); if (lookahead == '$') ADVANCE(14); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(50); - if (lookahead == ')') ADVANCE(51); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(47); - if (lookahead == '\\') SKIP(29) - if (lookahead == 'd') ADVANCE(73); - if (lookahead == 'v') ADVANCE(76); - if (lookahead == '|') ADVANCE(23); + if (lookahead == '(') ADVANCE(52); + if (lookahead == ')') ADVANCE(53); + if (lookahead == '-') ADVANCE(25); + if (lookahead == ':') ADVANCE(19); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(49); + if (lookahead == '\\') SKIP(30) + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'v') ADVANCE(78); + 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(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 1: if (lookahead == '\n') SKIP(3) @@ -787,35 +946,35 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(1) END_STATE(); case 3: - if (lookahead == '\n') ADVANCE(37); + if (lookahead == '\n') ADVANCE(39); if (lookahead == '!') ADVANCE(18); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); if (lookahead == '&') ADVANCE(12); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(47); + if (lookahead == '-') ADVANCE(25); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(49); if (lookahead == '\\') SKIP(2) - if (lookahead == '|') ADVANCE(23); + if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(3) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 4: - if (lookahead == '\n') ADVANCE(37); + if (lookahead == '\n') ADVANCE(39); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); if (lookahead == '&') ADVANCE(12); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(47); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(49); if (lookahead == '\\') SKIP(8) - if (lookahead == '|') ADVANCE(23); + if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(4) END_STATE(); @@ -834,510 +993,516 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { if (lookahead == '\r') SKIP(7) END_STATE(); case 9: - if (lookahead == '!') ADVANCE(40); + if (lookahead == '!') ADVANCE(42); if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); if (lookahead == '$') ADVANCE(14); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(50); - if (lookahead == '-') ADVANCE(24); + if (lookahead == '(') ADVANCE(52); + if (lookahead == '-') ADVANCE(25); if (lookahead == '\\') SKIP(6) if (('\t' <= lookahead && lookahead <= '\r') || lookahead == ' ') SKIP(9) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 10: if (lookahead == '"') ADVANCE(11); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '#') ADVANCE(60); if (lookahead == '$') ADVANCE(15); if (lookahead == '\'') ADVANCE(13); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(51); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(53); + if (lookahead == '\\') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(61); - if (lookahead != 0) ADVANCE(65); + lookahead == ' ') ADVANCE(63); + if (lookahead != 0) ADVANCE(67); END_STATE(); case 11: - if (lookahead == '"') ADVANCE(68); - if (lookahead == '\\') ADVANCE(25); + if (lookahead == '"') ADVANCE(70); + if (lookahead == '\\') ADVANCE(26); if (lookahead != 0) ADVANCE(11); END_STATE(); case 12: - if (lookahead == '&') ADVANCE(43); + if (lookahead == '&') ADVANCE(45); END_STATE(); case 13: - if (lookahead == '\'') ADVANCE(68); - if (lookahead == '\\') ADVANCE(26); + if (lookahead == '\'') ADVANCE(70); + if (lookahead == '\\') ADVANCE(27); if (lookahead != 0) ADVANCE(13); END_STATE(); case 14: - if (lookahead == '(') ADVANCE(52); + if (lookahead == '(') ADVANCE(54); END_STATE(); case 15: - if (lookahead == '(') ADVANCE(52); - if (lookahead != 0) ADVANCE(65); + if (lookahead == '(') ADVANCE(54); + if (lookahead != 0) ADVANCE(67); END_STATE(); case 16: if (lookahead == '(') ADVANCE(17); - if (lookahead == ')') ADVANCE(65); - if (lookahead != 0) ADVANCE(62); + if (lookahead == ')') ADVANCE(67); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 17: - if (lookahead == ')') ADVANCE(65); + if (lookahead == ')') ADVANCE(67); if (lookahead != 0) ADVANCE(17); END_STATE(); case 18: - if (lookahead == '=') ADVANCE(45); + if (lookahead == '=') ADVANCE(47); END_STATE(); case 19: - if (lookahead == 'f') ADVANCE(39); + if (lookahead == '=') ADVANCE(38); END_STATE(); case 20: - if (lookahead == 'i') ADVANCE(19); + if (lookahead == 'f') ADVANCE(41); END_STATE(); case 21: - if (lookahead == 'n') ADVANCE(38); + if (lookahead == 'i') ADVANCE(20); END_STATE(); case 22: - if (lookahead == 'o') ADVANCE(21); + if (lookahead == 'n') ADVANCE(40); END_STATE(); case 23: - if (lookahead == '|') ADVANCE(42); + if (lookahead == 'o') ADVANCE(22); END_STATE(); case 24: + if (lookahead == '|') ADVANCE(44); + END_STATE(); + case 25: if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); - END_STATE(); - case 25: - if (lookahead != 0 && - lookahead != '\n') ADVANCE(11); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 26: if (lookahead != 0 && - lookahead != '\n') ADVANCE(13); + lookahead != '\n') ADVANCE(11); END_STATE(); case 27: if (lookahead != 0 && - lookahead != '(') ADVANCE(65); + lookahead != '\n') ADVANCE(13); END_STATE(); case 28: - if (eof) ADVANCE(36); - if (lookahead == '\n') SKIP(0) + if (lookahead != 0 && + lookahead != '(') ADVANCE(67); END_STATE(); case 29: - if (eof) ADVANCE(36); + if (eof) ADVANCE(37); if (lookahead == '\n') SKIP(0) - if (lookahead == '\r') SKIP(28) END_STATE(); case 30: - if (eof) ADVANCE(36); - if (lookahead == '\n') SKIP(34) + if (eof) ADVANCE(37); + if (lookahead == '\n') SKIP(0) + if (lookahead == '\r') SKIP(29) END_STATE(); case 31: - if (eof) ADVANCE(36); - if (lookahead == '\n') SKIP(34) - if (lookahead == '\r') SKIP(30) + if (eof) ADVANCE(37); + if (lookahead == '\n') SKIP(35) END_STATE(); case 32: - if (eof) ADVANCE(36); + if (eof) ADVANCE(37); if (lookahead == '\n') SKIP(35) + if (lookahead == '\r') SKIP(31) END_STATE(); case 33: - if (eof) ADVANCE(36); - if (lookahead == '\n') SKIP(35) - if (lookahead == '\r') SKIP(32) + if (eof) ADVANCE(37); + if (lookahead == '\n') SKIP(36) END_STATE(); case 34: - if (eof) ADVANCE(36); + if (eof) ADVANCE(37); + if (lookahead == '\n') SKIP(36) + if (lookahead == '\r') SKIP(33) + END_STATE(); + case 35: + if (eof) ADVANCE(37); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); + if (lookahead == '$') ADVANCE(14); if (lookahead == '&') ADVANCE(12); - if (lookahead == ')') ADVANCE(51); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(47); - if (lookahead == '\\') SKIP(31) - if (lookahead == '|') ADVANCE(23); + if (lookahead == ')') ADVANCE(53); + if (lookahead == '-') ADVANCE(25); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(49); + if (lookahead == '\\') SKIP(32) + if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(34) + lookahead == ' ') SKIP(35) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); - case 35: - if (eof) ADVANCE(36); + case 36: + if (eof) ADVANCE(37); if (lookahead == '!') ADVANCE(18); - if (lookahead == '#') ADVANCE(87); + if (lookahead == '#') ADVANCE(89); if (lookahead == '&') ADVANCE(12); - if (lookahead == ')') ADVANCE(51); - if (lookahead == '-') ADVANCE(24); - if (lookahead == '<') ADVANCE(46); - if (lookahead == '=') ADVANCE(44); - if (lookahead == '>') ADVANCE(47); - if (lookahead == '\\') SKIP(33) - if (lookahead == 'd') ADVANCE(73); - if (lookahead == 'v') ADVANCE(76); - if (lookahead == '|') ADVANCE(23); + if (lookahead == '-') ADVANCE(25); + if (lookahead == '<') ADVANCE(48); + if (lookahead == '=') ADVANCE(46); + if (lookahead == '>') ADVANCE(49); + if (lookahead == '\\') SKIP(34) + if (lookahead == 'd') ADVANCE(75); + if (lookahead == 'v') ADVANCE(78); + if (lookahead == '|') ADVANCE(24); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') SKIP(35) + lookahead == ' ') SKIP(36) if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); - case 36: + case 37: ACCEPT_TOKEN(ts_builtin_sym_end); END_STATE(); - case 37: + case 38: + ACCEPT_TOKEN(anon_sym_COLON_EQ); + END_STATE(); + case 39: ACCEPT_TOKEN(aux_sym_type_definition_token1); - if (lookahead == '\n') ADVANCE(37); + if (lookahead == '\n') ADVANCE(39); END_STATE(); - case 38: + case 40: ACCEPT_TOKEN(anon_sym_dependson); END_STATE(); - case 39: + case 41: ACCEPT_TOKEN(anon_sym_visibleif); END_STATE(); - case 40: + case 42: ACCEPT_TOKEN(anon_sym_BANG); END_STATE(); - case 41: + case 43: ACCEPT_TOKEN(anon_sym_BANG); - if (lookahead == '=') ADVANCE(45); + if (lookahead == '=') ADVANCE(47); END_STATE(); - case 42: + case 44: ACCEPT_TOKEN(anon_sym_PIPE_PIPE); END_STATE(); - case 43: + case 45: ACCEPT_TOKEN(anon_sym_AMP_AMP); END_STATE(); - case 44: + case 46: ACCEPT_TOKEN(anon_sym_EQ); END_STATE(); - case 45: + case 47: ACCEPT_TOKEN(anon_sym_BANG_EQ); END_STATE(); - case 46: + case 48: ACCEPT_TOKEN(anon_sym_LT); - if (lookahead == '=') ADVANCE(48); + if (lookahead == '=') ADVANCE(50); END_STATE(); - case 47: + case 49: ACCEPT_TOKEN(anon_sym_GT); - if (lookahead == '=') ADVANCE(49); + if (lookahead == '=') ADVANCE(51); END_STATE(); - case 48: + case 50: ACCEPT_TOKEN(anon_sym_LT_EQ); END_STATE(); - case 49: + case 51: ACCEPT_TOKEN(anon_sym_GT_EQ); END_STATE(); - case 50: + case 52: ACCEPT_TOKEN(anon_sym_LPAREN); END_STATE(); - case 51: + case 53: ACCEPT_TOKEN(anon_sym_RPAREN); END_STATE(); - case 52: + case 54: ACCEPT_TOKEN(anon_sym_DOLLAR_LPAREN); END_STATE(); - case 53: + case 55: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '$') ADVANCE(84); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(58); - if (lookahead == '\\') ADVANCE(54); + 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(86); - if (lookahead != 0) ADVANCE(53); + lookahead == '\'') ADVANCE(88); + if (lookahead != 0) ADVANCE(55); END_STATE(); - case 54: + case 56: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '$') ADVANCE(55); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(58); - if (lookahead == '\\') ADVANCE(54); + if (lookahead == '\n') ADVANCE(64); + if (lookahead == '$') ADVANCE(57); + if (lookahead == '(') ADVANCE(55); + if (lookahead == ')') ADVANCE(60); + if (lookahead == '\\') ADVANCE(56); if (lookahead == '"' || - lookahead == '\'') ADVANCE(86); - if (lookahead != 0) ADVANCE(53); + lookahead == '\'') ADVANCE(88); + if (lookahead != 0) ADVANCE(55); END_STATE(); - case 55: + case 57: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '$') ADVANCE(55); - if (lookahead == '(') ADVANCE(53); - if (lookahead == ')') ADVANCE(58); - if (lookahead == '\\') ADVANCE(54); - if (lookahead != 0) ADVANCE(53); + 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); END_STATE(); - case 56: + case 58: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(61); - if (lookahead == '\r') ADVANCE(57); - if (lookahead == '$') ADVANCE(64); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(63); + 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(65); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); END_STATE(); - case 57: + case 59: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(61); - if (lookahead == '$') ADVANCE(27); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '\n') ADVANCE(63); + if (lookahead == '$') ADVANCE(28); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(65); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); END_STATE(); - case 58: + case 60: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(65); - if (lookahead == '$') ADVANCE(85); - if (lookahead == '(') ADVANCE(53); - if (lookahead == '\\') ADVANCE(59); + if (lookahead == '\n') ADVANCE(67); + if (lookahead == '$') ADVANCE(87); + if (lookahead == '(') ADVANCE(55); + if (lookahead == '\\') ADVANCE(61); if (lookahead == '"' || - ('\'' <= lookahead && lookahead <= ')')) ADVANCE(87); - if (lookahead != 0) ADVANCE(58); + ('\'' <= lookahead && lookahead <= ')')) ADVANCE(89); + if (lookahead != 0) ADVANCE(60); END_STATE(); - case 59: + case 61: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(65); - if (lookahead == '$') ADVANCE(60); - if (lookahead == '(') ADVANCE(53); - if (lookahead == '\\') ADVANCE(59); + if (lookahead == '\n') ADVANCE(67); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '(') ADVANCE(55); + if (lookahead == '\\') ADVANCE(61); if (lookahead == '"' || - ('\'' <= lookahead && lookahead <= ')')) ADVANCE(87); - if (lookahead != 0) ADVANCE(58); + ('\'' <= lookahead && lookahead <= ')')) ADVANCE(89); + if (lookahead != 0) ADVANCE(60); END_STATE(); - case 60: + case 62: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '\n') ADVANCE(65); - if (lookahead == '$') ADVANCE(60); - if (lookahead == '(') ADVANCE(53); - if (lookahead == '\\') ADVANCE(59); - if (lookahead != 0) ADVANCE(58); + if (lookahead == '\n') ADVANCE(67); + if (lookahead == '$') ADVANCE(62); + if (lookahead == '(') ADVANCE(55); + if (lookahead == '\\') ADVANCE(61); + if (lookahead != 0) ADVANCE(60); END_STATE(); - case 61: + case 63: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '#') ADVANCE(58); + if (lookahead == '#') ADVANCE(60); if (lookahead == '$') ADVANCE(15); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(56); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '\\') ADVANCE(58); if (('\t' <= lookahead && lookahead <= '\r') || - lookahead == ' ') ADVANCE(61); + lookahead == ' ') ADVANCE(63); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(65); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); END_STATE(); - case 62: + case 64: ACCEPT_TOKEN(sym_macro_content); if (lookahead == '$') ADVANCE(16); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(65); - if (lookahead == '\\') ADVANCE(66); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(67); + if (lookahead == '\\') ADVANCE(68); if (lookahead == '"' || lookahead == '\'') ADVANCE(17); - if (lookahead != 0) ADVANCE(62); + if (lookahead != 0) ADVANCE(64); END_STATE(); - case 63: + case 65: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(64); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '$') ADVANCE(66); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(65); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); END_STATE(); - case 64: + case 66: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(64); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(63); - if (lookahead != 0) ADVANCE(65); + if (lookahead == '$') ADVANCE(66); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '\\') ADVANCE(65); + if (lookahead != 0) ADVANCE(67); END_STATE(); - case 65: + case 67: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(27); - if (lookahead == '(') ADVANCE(62); - if (lookahead == '\\') ADVANCE(63); + if (lookahead == '$') ADVANCE(28); + if (lookahead == '(') ADVANCE(64); + if (lookahead == '\\') ADVANCE(65); if (lookahead != 0 && lookahead != '"' && - (lookahead < '\'' || ')' < lookahead)) ADVANCE(65); + (lookahead < '\'' || ')' < lookahead)) ADVANCE(67); END_STATE(); - case 66: + case 68: ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(65); - if (lookahead == '\\') ADVANCE(66); + if (lookahead == '$') ADVANCE(69); + if (lookahead == '(') ADVANCE(64); + if (lookahead == ')') ADVANCE(67); + if (lookahead == '\\') ADVANCE(68); if (lookahead == '"' || lookahead == '\'') ADVANCE(17); - if (lookahead != 0) ADVANCE(62); - END_STATE(); - case 67: - ACCEPT_TOKEN(sym_macro_content); - if (lookahead == '$') ADVANCE(67); - if (lookahead == '(') ADVANCE(62); - if (lookahead == ')') ADVANCE(65); - if (lookahead == '\\') ADVANCE(66); - if (lookahead != 0) ADVANCE(62); - END_STATE(); - case 68: - ACCEPT_TOKEN(sym_prompt); + if (lookahead != 0) ADVANCE(64); END_STATE(); case 69: - ACCEPT_TOKEN(sym_symbol); - if (lookahead == ' ') ADVANCE(22); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + 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); END_STATE(); case 70: - ACCEPT_TOKEN(sym_symbol); - if (lookahead == ' ') ADVANCE(20); - if (('0' <= lookahead && lookahead <= '9') || - ('A' <= lookahead && lookahead <= 'Z') || - lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ACCEPT_TOKEN(sym_prompt); END_STATE(); case 71: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'b') ADVANCE(78); + if (lookahead == ' ') ADVANCE(23); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 72: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'd') ADVANCE(81); + if (lookahead == ' ') ADVANCE(21); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 73: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(80); + if (lookahead == 'b') ADVANCE(80); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 74: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(79); + if (lookahead == 'd') ADVANCE(83); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 75: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'e') ADVANCE(70); + if (lookahead == 'e') ADVANCE(82); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 76: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'i') ADVANCE(82); + if (lookahead == 'e') ADVANCE(81); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 77: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'i') ADVANCE(71); + if (lookahead == 'e') ADVANCE(72); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 78: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'l') ADVANCE(75); + if (lookahead == 'i') ADVANCE(84); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 79: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'n') ADVANCE(72); + if (lookahead == 'i') ADVANCE(73); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 80: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 'p') ADVANCE(74); + if (lookahead == 'l') ADVANCE(77); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 81: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 's') ADVANCE(69); + if (lookahead == 'n') ADVANCE(74); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 82: ACCEPT_TOKEN(sym_symbol); - if (lookahead == 's') ADVANCE(77); + if (lookahead == 'p') ADVANCE(76); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 83: ACCEPT_TOKEN(sym_symbol); + if (lookahead == 's') ADVANCE(71); if (('0' <= lookahead && lookahead <= '9') || ('A' <= lookahead && lookahead <= 'Z') || lookahead == '_' || - ('a' <= lookahead && lookahead <= 'z')) ADVANCE(83); + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 84: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(62); - if (lookahead == '(') ADVANCE(86); - if (lookahead == ')') ADVANCE(58); - if (lookahead != 0) ADVANCE(53); + ACCEPT_TOKEN(sym_symbol); + if (lookahead == 's') ADVANCE(79); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 85: - ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(65); - if (lookahead == '(') ADVANCE(87); - if (lookahead != 0) ADVANCE(58); + ACCEPT_TOKEN(sym_symbol); + if (('0' <= lookahead && lookahead <= '9') || + ('A' <= lookahead && lookahead <= 'Z') || + lookahead == '_' || + ('a' <= lookahead && lookahead <= 'z')) ADVANCE(85); END_STATE(); case 86: ACCEPT_TOKEN(sym_comment); - if (lookahead == '\n') ADVANCE(17); - if (lookahead == ')') ADVANCE(58); - if (lookahead != 0) ADVANCE(86); + if (lookahead == '\n') ADVANCE(64); + if (lookahead == '(') ADVANCE(88); + if (lookahead == ')') ADVANCE(60); + if (lookahead != 0) ADVANCE(55); END_STATE(); case 87: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(67); + if (lookahead == '(') ADVANCE(89); + if (lookahead != 0) ADVANCE(60); + END_STATE(); + case 88: + ACCEPT_TOKEN(sym_comment); + if (lookahead == '\n') ADVANCE(17); + if (lookahead == ')') ADVANCE(60); + if (lookahead != 0) ADVANCE(88); + END_STATE(); + case 89: ACCEPT_TOKEN(sym_comment); if (lookahead != 0 && - lookahead != '\n') ADVANCE(87); + lookahead != '\n') ADVANCE(89); END_STATE(); default: return false; @@ -1346,6 +1511,7 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { START_LEXER(); + eof = lexer->eof(lexer); switch (state) { case 0: if (lookahead == '\\') SKIP(1) @@ -1794,7 +1960,7 @@ static bool ts_lex_keywords(TSLexer *lexer, TSStateId state) { static const TSLexMode ts_lex_modes[STATE_COUNT] = { [0] = {.lex_state = 0, .external_lex_state = 1}, - [1] = {.lex_state = 34}, + [1] = {.lex_state = 35}, [2] = {.lex_state = 0}, [3] = {.lex_state = 0}, [4] = {.lex_state = 0}, @@ -1804,131 +1970,270 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [8] = {.lex_state = 0}, [9] = {.lex_state = 0}, [10] = {.lex_state = 0}, - [11] = {.lex_state = 35}, - [12] = {.lex_state = 35}, - [13] = {.lex_state = 35}, - [14] = {.lex_state = 35}, - [15] = {.lex_state = 35}, - [16] = {.lex_state = 35}, - [17] = {.lex_state = 35}, - [18] = {.lex_state = 35}, - [19] = {.lex_state = 35}, - [20] = {.lex_state = 35}, - [21] = {.lex_state = 0}, - [22] = {.lex_state = 0}, - [23] = {.lex_state = 0}, - [24] = {.lex_state = 0}, - [25] = {.lex_state = 0}, - [26] = {.lex_state = 0}, - [27] = {.lex_state = 0}, - [28] = {.lex_state = 0}, - [29] = {.lex_state = 0}, - [30] = {.lex_state = 0}, - [31] = {.lex_state = 0}, - [32] = {.lex_state = 0}, - [33] = {.lex_state = 0}, - [34] = {.lex_state = 0}, - [35] = {.lex_state = 0}, - [36] = {.lex_state = 0}, - [37] = {.lex_state = 0}, - [38] = {.lex_state = 0}, - [39] = {.lex_state = 0}, + [11] = {.lex_state = 0}, + [12] = {.lex_state = 0}, + [13] = {.lex_state = 0}, + [14] = {.lex_state = 0}, + [15] = {.lex_state = 0}, + [16] = {.lex_state = 0}, + [17] = {.lex_state = 0}, + [18] = {.lex_state = 0}, + [19] = {.lex_state = 0}, + [20] = {.lex_state = 36}, + [21] = {.lex_state = 36}, + [22] = {.lex_state = 36}, + [23] = {.lex_state = 36}, + [24] = {.lex_state = 36}, + [25] = {.lex_state = 36}, + [26] = {.lex_state = 36}, + [27] = {.lex_state = 36}, + [28] = {.lex_state = 36}, + [29] = {.lex_state = 36}, + [30] = {.lex_state = 36}, + [31] = {.lex_state = 36}, + [32] = {.lex_state = 36}, + [33] = {.lex_state = 36}, + [34] = {.lex_state = 36}, + [35] = {.lex_state = 36}, + [36] = {.lex_state = 36}, + [37] = {.lex_state = 36}, + [38] = {.lex_state = 36}, + [39] = {.lex_state = 36}, [40] = {.lex_state = 0}, [41] = {.lex_state = 0}, - [42] = {.lex_state = 34}, - [43] = {.lex_state = 34}, - [44] = {.lex_state = 34}, - [45] = {.lex_state = 34}, - [46] = {.lex_state = 34}, - [47] = {.lex_state = 34}, - [48] = {.lex_state = 34}, - [49] = {.lex_state = 34}, - [50] = {.lex_state = 34}, - [51] = {.lex_state = 34}, - [52] = {.lex_state = 34}, - [53] = {.lex_state = 34}, - [54] = {.lex_state = 34}, - [55] = {.lex_state = 34}, - [56] = {.lex_state = 3}, - [57] = {.lex_state = 3}, - [58] = {.lex_state = 34}, - [59] = {.lex_state = 34}, - [60] = {.lex_state = 34}, - [61] = {.lex_state = 34}, - [62] = {.lex_state = 9}, - [63] = {.lex_state = 3}, - [64] = {.lex_state = 3}, - [65] = {.lex_state = 9}, - [66] = {.lex_state = 9}, - [67] = {.lex_state = 9}, - [68] = {.lex_state = 9}, - [69] = {.lex_state = 9}, - [70] = {.lex_state = 9}, - [71] = {.lex_state = 9}, - [72] = {.lex_state = 9}, - [73] = {.lex_state = 9}, - [74] = {.lex_state = 9}, - [75] = {.lex_state = 3}, - [76] = {.lex_state = 9}, - [77] = {.lex_state = 9}, - [78] = {.lex_state = 9}, - [79] = {.lex_state = 3}, - [80] = {.lex_state = 3}, - [81] = {.lex_state = 3}, - [82] = {.lex_state = 9}, - [83] = {.lex_state = 9}, - [84] = {.lex_state = 3}, - [85] = {.lex_state = 3}, - [86] = {.lex_state = 9}, - [87] = {.lex_state = 9}, - [88] = {.lex_state = 3}, - [89] = {.lex_state = 34}, - [90] = {.lex_state = 4}, - [91] = {.lex_state = 34}, - [92] = {.lex_state = 4}, - [93] = {.lex_state = 34}, - [94] = {.lex_state = 10}, - [95] = {.lex_state = 10}, - [96] = {.lex_state = 3}, - [97] = {.lex_state = 10}, - [98] = {.lex_state = 10}, - [99] = {.lex_state = 10}, - [100] = {.lex_state = 10}, - [101] = {.lex_state = 10}, - [102] = {.lex_state = 10}, - [103] = {.lex_state = 10}, - [104] = {.lex_state = 10}, - [105] = {.lex_state = 3}, - [106] = {.lex_state = 3}, - [107] = {.lex_state = 3}, - [108] = {.lex_state = 3}, - [109] = {.lex_state = 3}, - [110] = {.lex_state = 3}, - [111] = {.lex_state = 3}, - [112] = {.lex_state = 3}, - [113] = {.lex_state = 34}, - [114] = {.lex_state = 4}, - [115] = {.lex_state = 34}, - [116] = {.lex_state = 34}, - [117] = {.lex_state = 4}, - [118] = {.lex_state = 4}, - [119] = {.lex_state = 0}, - [120] = {.lex_state = 0}, - [121] = {.lex_state = 0}, - [122] = {.lex_state = 0}, - [123] = {.lex_state = 0}, - [124] = {.lex_state = 34}, - [125] = {.lex_state = 0}, - [126] = {.lex_state = 4}, - [127] = {.lex_state = 4}, - [128] = {.lex_state = 34}, - [129] = {.lex_state = 4}, - [130] = {.lex_state = 4}, - [131] = {.lex_state = 4}, - [132] = {.lex_state = 34}, - [133] = {.lex_state = 4}, - [134] = {.lex_state = 0}, - [135] = {.lex_state = 0, .external_lex_state = 1}, + [42] = {.lex_state = 0}, + [43] = {.lex_state = 0}, + [44] = {.lex_state = 0}, + [45] = {.lex_state = 0}, + [46] = {.lex_state = 0}, + [47] = {.lex_state = 0}, + [48] = {.lex_state = 0}, + [49] = {.lex_state = 0}, + [50] = {.lex_state = 0}, + [51] = {.lex_state = 0}, + [52] = {.lex_state = 0}, + [53] = {.lex_state = 0}, + [54] = {.lex_state = 0}, + [55] = {.lex_state = 0}, + [56] = {.lex_state = 0}, + [57] = {.lex_state = 0}, + [58] = {.lex_state = 0}, + [59] = {.lex_state = 0}, + [60] = {.lex_state = 0}, + [61] = {.lex_state = 0}, + [62] = {.lex_state = 0}, + [63] = {.lex_state = 0}, + [64] = {.lex_state = 0}, + [65] = {.lex_state = 35}, + [66] = {.lex_state = 35}, + [67] = {.lex_state = 0}, + [68] = {.lex_state = 0}, + [69] = {.lex_state = 0}, + [70] = {.lex_state = 0}, + [71] = {.lex_state = 0}, + [72] = {.lex_state = 0}, + [73] = {.lex_state = 0}, + [74] = {.lex_state = 0}, + [75] = {.lex_state = 0}, + [76] = {.lex_state = 0}, + [77] = {.lex_state = 0}, + [78] = {.lex_state = 0}, + [79] = {.lex_state = 0}, + [80] = {.lex_state = 0}, + [81] = {.lex_state = 0}, + [82] = {.lex_state = 0}, + [83] = {.lex_state = 0}, + [84] = {.lex_state = 35}, + [85] = {.lex_state = 35}, + [86] = {.lex_state = 35}, + [87] = {.lex_state = 35}, + [88] = {.lex_state = 35}, + [89] = {.lex_state = 35}, + [90] = {.lex_state = 35}, + [91] = {.lex_state = 35}, + [92] = {.lex_state = 35}, + [93] = {.lex_state = 35}, + [94] = {.lex_state = 35}, + [95] = {.lex_state = 35}, + [96] = {.lex_state = 35}, + [97] = {.lex_state = 35}, + [98] = {.lex_state = 35}, + [99] = {.lex_state = 35}, + [100] = {.lex_state = 35}, + [101] = {.lex_state = 35}, + [102] = {.lex_state = 35}, + [103] = {.lex_state = 35}, + [104] = {.lex_state = 35}, + [105] = {.lex_state = 35}, + [106] = {.lex_state = 35}, + [107] = {.lex_state = 35}, + [108] = {.lex_state = 35}, + [109] = {.lex_state = 35}, + [110] = {.lex_state = 35}, + [111] = {.lex_state = 35}, + [112] = {.lex_state = 35}, + [113] = {.lex_state = 35}, + [114] = {.lex_state = 35}, + [115] = {.lex_state = 35}, + [116] = {.lex_state = 35}, + [117] = {.lex_state = 35}, + [118] = {.lex_state = 35}, + [119] = {.lex_state = 35}, + [120] = {.lex_state = 3}, + [121] = {.lex_state = 35}, + [122] = {.lex_state = 3}, + [123] = {.lex_state = 35}, + [124] = {.lex_state = 35}, + [125] = {.lex_state = 3}, + [126] = {.lex_state = 3}, + [127] = {.lex_state = 35}, + [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}, + [135] = {.lex_state = 9}, + [136] = {.lex_state = 9}, + [137] = {.lex_state = 3}, + [138] = {.lex_state = 3}, + [139] = {.lex_state = 9}, + [140] = {.lex_state = 3}, + [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}, + [151] = {.lex_state = 9}, + [152] = {.lex_state = 9}, + [153] = {.lex_state = 9}, + [154] = {.lex_state = 9}, + [155] = {.lex_state = 9}, + [156] = {.lex_state = 9}, + [157] = {.lex_state = 9}, + [158] = {.lex_state = 9}, + [159] = {.lex_state = 9}, + [160] = {.lex_state = 9}, + [161] = {.lex_state = 9}, + [162] = {.lex_state = 9}, + [163] = {.lex_state = 9}, + [164] = {.lex_state = 9}, + [165] = {.lex_state = 9}, + [166] = {.lex_state = 9}, + [167] = {.lex_state = 9}, + [168] = {.lex_state = 9}, + [169] = {.lex_state = 9}, + [170] = {.lex_state = 9}, + [171] = {.lex_state = 9}, + [172] = {.lex_state = 9}, + [173] = {.lex_state = 9}, + [174] = {.lex_state = 9}, + [175] = {.lex_state = 9}, + [176] = {.lex_state = 9}, + [177] = {.lex_state = 9}, + [178] = {.lex_state = 9}, + [179] = {.lex_state = 9}, + [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}, + [187] = {.lex_state = 35}, + [188] = {.lex_state = 35}, + [189] = {.lex_state = 4}, + [190] = {.lex_state = 35}, + [191] = {.lex_state = 35}, + [192] = {.lex_state = 35}, + [193] = {.lex_state = 35}, + [194] = {.lex_state = 4}, + [195] = {.lex_state = 35}, + [196] = {.lex_state = 35}, + [197] = {.lex_state = 35}, + [198] = {.lex_state = 35}, + [199] = {.lex_state = 35}, + [200] = {.lex_state = 10}, + [201] = {.lex_state = 10}, + [202] = {.lex_state = 10}, + [203] = {.lex_state = 10}, + [204] = {.lex_state = 10}, + [205] = {.lex_state = 10}, + [206] = {.lex_state = 3}, + [207] = {.lex_state = 10}, + [208] = {.lex_state = 10}, + [209] = {.lex_state = 10}, + [210] = {.lex_state = 10}, + [211] = {.lex_state = 10}, + [212] = {.lex_state = 10}, + [213] = {.lex_state = 3}, + [214] = {.lex_state = 10}, + [215] = {.lex_state = 10}, + [216] = {.lex_state = 10}, + [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}, + [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}, + [268] = {.lex_state = 0}, + [269] = {.lex_state = 0}, + [270] = {.lex_state = 0}, + [271] = {.lex_state = 0}, + [272] = {.lex_state = 35}, + [273] = {.lex_state = 0, .external_lex_state = 1}, + [274] = {.lex_state = 35}, }; static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { @@ -1946,6 +2251,7 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [anon_sym_if] = ACTIONS(1), [anon_sym_endif] = ACTIONS(1), [anon_sym_source] = ACTIONS(1), + [anon_sym_COLON_EQ] = ACTIONS(1), [anon_sym_bool] = ACTIONS(1), [anon_sym_tristate] = ACTIONS(1), [anon_sym_int] = ACTIONS(1), @@ -1980,86 +2286,193 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym__help_text] = ACTIONS(1), }, [1] = { - [sym_configuration] = STATE(122), - [sym_mainmenu] = STATE(44), - [sym__entry] = STATE(45), - [sym_config] = STATE(45), - [sym_menuconfig] = STATE(45), - [sym_choice] = STATE(45), - [sym_comment_entry] = STATE(45), - [sym_menu] = STATE(45), - [sym_if] = STATE(45), - [sym_source] = STATE(45), - [aux_sym_configuration_repeat1] = STATE(45), + [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), [ts_builtin_sym_end] = ACTIONS(5), - [anon_sym_mainmenu] = ACTIONS(7), - [anon_sym_config] = ACTIONS(9), - [anon_sym_menuconfig] = ACTIONS(11), - [anon_sym_choice] = ACTIONS(13), - [anon_sym_comment] = ACTIONS(15), - [anon_sym_menu] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_source] = ACTIONS(21), + [sym_symbol] = ACTIONS(7), + [anon_sym_mainmenu] = ACTIONS(9), + [anon_sym_config] = ACTIONS(11), + [anon_sym_menuconfig] = ACTIONS(13), + [anon_sym_choice] = ACTIONS(15), + [anon_sym_comment] = ACTIONS(17), + [anon_sym_menu] = ACTIONS(19), + [anon_sym_if] = ACTIONS(21), + [anon_sym_source] = ACTIONS(23), [sym_comment] = ACTIONS(3), }, [2] = { - [sym__entry] = STATE(46), - [sym_config] = STATE(46), - [sym_menuconfig] = STATE(46), - [sym_choice] = STATE(46), - [sym_comment_entry] = STATE(46), - [sym_menu] = STATE(46), - [sym_if] = STATE(46), - [sym_source] = STATE(46), - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_configuration_repeat1] = STATE(46), - [aux_sym_config_repeat1] = STATE(9), - [anon_sym_config] = ACTIONS(9), - [anon_sym_menuconfig] = ACTIONS(11), - [anon_sym_choice] = ACTIONS(13), - [anon_sym_comment] = ACTIONS(15), - [anon_sym_menu] = ACTIONS(17), - [anon_sym_endmenu] = ACTIONS(23), - [anon_sym_if] = ACTIONS(19), - [anon_sym_source] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), + [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_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(37), + [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_comment] = ACTIONS(3), }, [3] = { - [sym__entry] = STATE(50), - [sym_config] = STATE(50), - [sym_menuconfig] = STATE(50), - [sym_choice] = STATE(50), - [sym_comment_entry] = STATE(50), - [sym_menu] = STATE(50), - [sym_if] = STATE(50), - [sym_source] = STATE(50), + [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_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(65), + [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_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__config_option] = STATE(3), + [sym_type_definition] = STATE(3), + [sym_input_prompt] = STATE(3), + [sym_default_value] = STATE(3), + [sym_type_definition_default] = STATE(3), + [sym_dependencies] = STATE(3), + [sym_reverse_dependencies] = STATE(3), + [sym_weak_reverse_dependencies] = STATE(3), + [sym_limiting_menu_display] = STATE(3), + [sym_numerical_ranges] = STATE(3), + [sym_help_text] = STATE(3), + [aux_sym_configuration_repeat1] = STATE(96), + [aux_sym_config_repeat1] = STATE(3), + [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(67), + [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(69), + [sym_modules] = ACTIONS(69), + [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), @@ -2071,501 +2484,748 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_limiting_menu_display] = STATE(2), [sym_numerical_ranges] = STATE(2), [sym_help_text] = STATE(2), - [aux_sym_configuration_repeat1] = STATE(50), + [aux_sym_configuration_repeat1] = STATE(94), [aux_sym_config_repeat1] = STATE(2), - [anon_sym_config] = ACTIONS(9), - [anon_sym_menuconfig] = ACTIONS(11), - [anon_sym_choice] = ACTIONS(13), - [anon_sym_comment] = ACTIONS(15), - [anon_sym_menu] = ACTIONS(17), - [anon_sym_endmenu] = ACTIONS(47), - [anon_sym_if] = ACTIONS(19), - [anon_sym_source] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(49), - [sym_modules] = ACTIONS(49), - [sym_comment] = ACTIONS(3), - }, - [4] = { - [sym__entry] = STATE(47), - [sym_config] = STATE(47), - [sym_menuconfig] = STATE(47), - [sym_choice] = STATE(47), - [sym_comment_entry] = STATE(47), - [sym_menu] = STATE(47), - [sym_if] = STATE(47), - [sym_source] = STATE(47), - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_configuration_repeat1] = STATE(47), - [aux_sym_config_repeat1] = STATE(9), - [anon_sym_config] = ACTIONS(9), - [anon_sym_menuconfig] = ACTIONS(11), - [anon_sym_choice] = ACTIONS(13), - [anon_sym_comment] = ACTIONS(15), - [anon_sym_menu] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_source] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), - [sym_comment] = ACTIONS(3), - }, - [5] = { - [sym__entry] = STATE(48), - [sym_config] = STATE(48), - [sym_menuconfig] = STATE(48), - [sym_choice] = STATE(48), - [sym_comment_entry] = STATE(48), - [sym_menu] = STATE(48), - [sym_if] = STATE(48), - [sym_source] = STATE(48), - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_configuration_repeat1] = STATE(48), - [aux_sym_config_repeat1] = STATE(9), - [anon_sym_config] = ACTIONS(9), - [anon_sym_menuconfig] = ACTIONS(11), - [anon_sym_choice] = ACTIONS(13), - [anon_sym_comment] = ACTIONS(15), - [anon_sym_menu] = ACTIONS(17), - [anon_sym_if] = ACTIONS(19), - [anon_sym_source] = ACTIONS(21), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), + [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), + [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(73), + [sym_modules] = ACTIONS(73), [sym_comment] = ACTIONS(3), }, [6] = { - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_config_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(51), - [anon_sym_config] = ACTIONS(51), - [anon_sym_menuconfig] = ACTIONS(51), - [anon_sym_choice] = ACTIONS(51), - [anon_sym_endchoice] = ACTIONS(51), - [anon_sym_comment] = ACTIONS(51), - [anon_sym_menu] = ACTIONS(53), - [anon_sym_endmenu] = ACTIONS(51), - [anon_sym_if] = ACTIONS(51), - [anon_sym_endif] = ACTIONS(51), - [anon_sym_source] = ACTIONS(51), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), + [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), + [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_comment] = ACTIONS(3), }, [7] = { - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_config_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(55), - [anon_sym_config] = ACTIONS(55), - [anon_sym_menuconfig] = ACTIONS(55), - [anon_sym_choice] = ACTIONS(55), - [anon_sym_endchoice] = ACTIONS(55), - [anon_sym_comment] = ACTIONS(55), - [anon_sym_menu] = ACTIONS(57), - [anon_sym_endmenu] = ACTIONS(55), - [anon_sym_if] = ACTIONS(55), - [anon_sym_endif] = ACTIONS(55), - [anon_sym_source] = ACTIONS(55), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), + [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_comment] = ACTIONS(3), }, [8] = { - [sym__config_option] = STATE(10), - [sym_type_definition] = STATE(10), - [sym_input_prompt] = STATE(10), - [sym_default_value] = STATE(10), - [sym_type_definition_default] = STATE(10), - [sym_dependencies] = STATE(10), - [sym_reverse_dependencies] = STATE(10), - [sym_weak_reverse_dependencies] = STATE(10), - [sym_limiting_menu_display] = STATE(10), - [sym_numerical_ranges] = STATE(10), - [sym_help_text] = STATE(10), - [aux_sym_config_repeat1] = STATE(10), - [ts_builtin_sym_end] = ACTIONS(59), - [anon_sym_config] = ACTIONS(59), - [anon_sym_menuconfig] = ACTIONS(59), - [anon_sym_choice] = ACTIONS(59), - [anon_sym_endchoice] = ACTIONS(59), - [anon_sym_comment] = ACTIONS(59), - [anon_sym_menu] = ACTIONS(61), - [anon_sym_endmenu] = ACTIONS(59), - [anon_sym_if] = ACTIONS(59), - [anon_sym_endif] = ACTIONS(59), - [anon_sym_source] = ACTIONS(59), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), + [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_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_comment] = ACTIONS(3), }, [9] = { - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_config_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(65), - [anon_sym_config] = ACTIONS(65), - [anon_sym_menuconfig] = ACTIONS(65), - [anon_sym_choice] = ACTIONS(65), - [anon_sym_endchoice] = ACTIONS(65), - [anon_sym_comment] = ACTIONS(65), - [anon_sym_menu] = ACTIONS(67), - [anon_sym_endmenu] = ACTIONS(65), - [anon_sym_if] = ACTIONS(65), - [anon_sym_endif] = ACTIONS(65), - [anon_sym_source] = ACTIONS(65), - [anon_sym_bool] = ACTIONS(69), - [anon_sym_tristate] = ACTIONS(69), - [anon_sym_int] = ACTIONS(69), - [anon_sym_hex] = ACTIONS(69), - [anon_sym_string] = ACTIONS(69), - [anon_sym_prompt] = ACTIONS(72), - [anon_sym_default] = ACTIONS(75), - [anon_sym_def_bool] = ACTIONS(78), - [anon_sym_def_tristate] = ACTIONS(78), - [anon_sym_dependson] = ACTIONS(81), - [anon_sym_select] = ACTIONS(84), - [anon_sym_imply] = ACTIONS(87), - [anon_sym_visibleif] = ACTIONS(90), - [anon_sym_range] = ACTIONS(93), - [anon_sym_help] = ACTIONS(96), - [sym_optional] = ACTIONS(99), - [sym_modules] = ACTIONS(99), + [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_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_comment] = ACTIONS(3), }, [10] = { - [sym__config_option] = STATE(9), - [sym_type_definition] = STATE(9), - [sym_input_prompt] = STATE(9), - [sym_default_value] = STATE(9), - [sym_type_definition_default] = STATE(9), - [sym_dependencies] = STATE(9), - [sym_reverse_dependencies] = STATE(9), - [sym_weak_reverse_dependencies] = STATE(9), - [sym_limiting_menu_display] = STATE(9), - [sym_numerical_ranges] = STATE(9), - [sym_help_text] = STATE(9), - [aux_sym_config_repeat1] = STATE(9), - [ts_builtin_sym_end] = ACTIONS(102), - [anon_sym_config] = ACTIONS(102), - [anon_sym_menuconfig] = ACTIONS(102), - [anon_sym_choice] = ACTIONS(102), - [anon_sym_endchoice] = ACTIONS(102), - [anon_sym_comment] = ACTIONS(102), - [anon_sym_menu] = ACTIONS(104), - [anon_sym_endmenu] = ACTIONS(102), - [anon_sym_if] = ACTIONS(102), - [anon_sym_endif] = ACTIONS(102), - [anon_sym_source] = ACTIONS(102), - [anon_sym_bool] = ACTIONS(25), - [anon_sym_tristate] = ACTIONS(25), - [anon_sym_int] = ACTIONS(25), - [anon_sym_hex] = ACTIONS(25), - [anon_sym_string] = ACTIONS(25), - [anon_sym_prompt] = ACTIONS(27), - [anon_sym_default] = ACTIONS(29), - [anon_sym_def_bool] = ACTIONS(31), - [anon_sym_def_tristate] = ACTIONS(31), - [anon_sym_dependson] = ACTIONS(33), - [anon_sym_select] = ACTIONS(35), - [anon_sym_imply] = ACTIONS(37), - [anon_sym_visibleif] = ACTIONS(39), - [anon_sym_range] = ACTIONS(41), - [anon_sym_help] = ACTIONS(43), - [sym_optional] = ACTIONS(45), - [sym_modules] = ACTIONS(45), + [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(75), + [anon_sym_config] = ACTIONS(75), + [anon_sym_menuconfig] = ACTIONS(75), + [anon_sym_choice] = ACTIONS(75), + [anon_sym_endchoice] = ACTIONS(75), + [anon_sym_comment] = ACTIONS(75), + [anon_sym_menu] = ACTIONS(75), + [anon_sym_endmenu] = ACTIONS(75), + [anon_sym_if] = ACTIONS(75), + [anon_sym_endif] = ACTIONS(75), + [anon_sym_source] = ACTIONS(75), + [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_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), + [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_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), + [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(81), + [sym_modules] = ACTIONS(81), + [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), + [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_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_comment] = ACTIONS(3), }, }; static const uint16_t ts_small_parse_table[] = { - [0] = 3, + [0] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(108), 3, - anon_sym_menu, - anon_sym_LT, - anon_sym_GT, - ACTIONS(106), 34, + ACTIONS(120), 1, ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, + ACTIONS(124), 1, anon_sym_prompt, + ACTIONS(126), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, + ACTIONS(130), 1, anon_sym_dependson, + ACTIONS(132), 1, anon_sym_select, + ACTIONS(134), 1, anon_sym_imply, + ACTIONS(136), 1, anon_sym_visibleif, + ACTIONS(138), 1, anon_sym_range, + ACTIONS(140), 1, anon_sym_help, + ACTIONS(128), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(142), 2, sym_optional, sym_modules, - 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, - [45] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(112), 3, - anon_sym_menu, - anon_sym_LT, - anon_sym_GT, - ACTIONS(110), 34, - ts_builtin_sym_end, + ACTIONS(122), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + ACTIONS(79), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, + sym_symbol, + STATE(16), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [70] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, anon_sym_prompt, + ACTIONS(126), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, + ACTIONS(130), 1, anon_sym_dependson, + ACTIONS(132), 1, anon_sym_select, + ACTIONS(134), 1, anon_sym_imply, + ACTIONS(136), 1, anon_sym_visibleif, + ACTIONS(138), 1, anon_sym_range, + ACTIONS(140), 1, anon_sym_help, + ACTIONS(144), 1, + ts_builtin_sym_end, + ACTIONS(128), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(146), 2, sym_optional, sym_modules, - 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, - [90] = 6, + ACTIONS(122), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + ACTIONS(83), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + STATE(19), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [140] = 15, ACTIONS(3), 1, sym_comment, - ACTIONS(108), 1, - anon_sym_menu, - ACTIONS(114), 1, - anon_sym_EQ, - ACTIONS(118), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(116), 3, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - ACTIONS(106), 30, + ACTIONS(124), 1, + anon_sym_prompt, + ACTIONS(126), 1, + anon_sym_default, + ACTIONS(130), 1, + anon_sym_dependson, + ACTIONS(132), 1, + anon_sym_select, + ACTIONS(134), 1, + anon_sym_imply, + ACTIONS(136), 1, + anon_sym_visibleif, + ACTIONS(138), 1, + anon_sym_range, + ACTIONS(140), 1, + anon_sym_help, + ACTIONS(148), 1, ts_builtin_sym_end, + ACTIONS(128), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(146), 2, + sym_optional, + sym_modules, + ACTIONS(122), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + ACTIONS(75), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, + sym_symbol, + STATE(19), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [210] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(124), 1, + anon_sym_prompt, + ACTIONS(126), 1, + anon_sym_default, + ACTIONS(130), 1, + anon_sym_dependson, + ACTIONS(132), 1, + anon_sym_select, + ACTIONS(134), 1, + anon_sym_imply, + ACTIONS(136), 1, + anon_sym_visibleif, + ACTIONS(138), 1, + anon_sym_range, + ACTIONS(140), 1, + anon_sym_help, + ACTIONS(150), 1, + ts_builtin_sym_end, + ACTIONS(128), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(146), 2, + sym_optional, + sym_modules, + ACTIONS(122), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, + ACTIONS(77), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + STATE(19), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [280] = 15, + ACTIONS(3), 1, + sym_comment, + ACTIONS(152), 1, + ts_builtin_sym_end, + ACTIONS(157), 1, anon_sym_prompt, + ACTIONS(160), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, + ACTIONS(166), 1, anon_sym_dependson, + ACTIONS(169), 1, anon_sym_select, + ACTIONS(172), 1, anon_sym_imply, + ACTIONS(175), 1, anon_sym_visibleif, + ACTIONS(178), 1, anon_sym_range, + ACTIONS(181), 1, anon_sym_help, + ACTIONS(163), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(184), 2, sym_optional, sym_modules, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_RPAREN, - [141] = 7, + ACTIONS(154), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + ACTIONS(85), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + STATE(19), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [350] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(108), 1, - anon_sym_menu, - ACTIONS(114), 1, - anon_sym_EQ, - ACTIONS(120), 1, + ACTIONS(189), 8, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, anon_sym_AMP_AMP, - ACTIONS(118), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(116), 3, + anon_sym_EQ, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(106), 29, - ts_builtin_sym_end, + ACTIONS(187), 28, 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, @@ -2579,30 +3239,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - anon_sym_PIPE_PIPE, - anon_sym_RPAREN, - [194] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(124), 3, - anon_sym_menu, anon_sym_LT, anon_sym_GT, - ACTIONS(122), 34, - ts_builtin_sym_end, + sym_symbol, + [394] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(193), 8, + 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), 28, 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, @@ -2616,35 +3280,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [438] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(199), 1, + anon_sym_EQ, + ACTIONS(197), 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, - anon_sym_RPAREN, - [239] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(128), 3, - anon_sym_menu, - anon_sym_LT, - anon_sym_GT, - ACTIONS(126), 34, - ts_builtin_sym_end, + ACTIONS(195), 28, 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, @@ -2658,35 +3322,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [484] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(197), 8, + 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, - anon_sym_RPAREN, - [284] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(132), 3, - anon_sym_menu, - anon_sym_LT, - anon_sym_GT, - ACTIONS(130), 34, - ts_builtin_sym_end, + ACTIONS(195), 28, 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, @@ -2700,37 +3363,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - 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, - [329] = 4, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [528] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(114), 1, + ACTIONS(199), 1, anon_sym_EQ, - ACTIONS(108), 3, - anon_sym_menu, + ACTIONS(203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(106), 33, - ts_builtin_sym_end, + ACTIONS(201), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(197), 4, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(195), 26, 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, @@ -2744,34 +3409,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, + sym_symbol, + [578] = 8, + 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, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(201), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - anon_sym_RPAREN, - [376] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(136), 3, - anon_sym_menu, - anon_sym_LT, - anon_sym_GT, - ACTIONS(134), 34, - ts_builtin_sym_end, + ACTIONS(205), 26, 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, @@ -2785,46 +3455,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - 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, - [421] = 8, + sym_symbol, + [632] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(114), 1, + ACTIONS(199), 1, anon_sym_EQ, - ACTIONS(120), 1, + ACTIONS(211), 1, anon_sym_AMP_AMP, - ACTIONS(140), 1, - anon_sym_menu, - ACTIONS(142), 1, - anon_sym_PIPE_PIPE, - ACTIONS(118), 2, + ACTIONS(203), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(116), 3, + ACTIONS(197), 3, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + ACTIONS(201), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - ACTIONS(138), 27, - ts_builtin_sym_end, + ACTIONS(195), 26, 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, @@ -2838,204 +3500,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [475] = 14, + sym_symbol, + [684] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(33), 1, + ACTIONS(215), 8, anon_sym_dependson, - ACTIONS(39), 1, anon_sym_visibleif, - ACTIONS(144), 1, - sym_symbol, - ACTIONS(148), 1, - anon_sym_prompt, - ACTIONS(150), 1, - anon_sym_default, - ACTIONS(154), 1, - anon_sym_select, - ACTIONS(156), 1, - anon_sym_imply, - ACTIONS(158), 1, - anon_sym_range, - ACTIONS(160), 1, - anon_sym_help, - ACTIONS(152), 2, - anon_sym_def_bool, - anon_sym_def_tristate, - ACTIONS(162), 2, - sym_optional, - sym_modules, - ACTIONS(146), 5, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(213), 28, + 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_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - STATE(4), 12, - sym__config_option, - sym_type_definition, - sym_input_prompt, - sym_default_value, - sym_type_definition_default, - sym_dependencies, - sym_reverse_dependencies, - sym_weak_reverse_dependencies, - sym_limiting_menu_display, - sym_numerical_ranges, - sym_help_text, - aux_sym_config_repeat1, - [535] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, anon_sym_prompt, - ACTIONS(29), 1, anon_sym_default, - ACTIONS(33), 1, - anon_sym_dependson, - ACTIONS(35), 1, - anon_sym_select, - ACTIONS(37), 1, - anon_sym_imply, - ACTIONS(39), 1, - anon_sym_visibleif, - ACTIONS(41), 1, - anon_sym_range, - ACTIONS(43), 1, - anon_sym_help, - ACTIONS(31), 2, anon_sym_def_bool, anon_sym_def_tristate, - ACTIONS(164), 2, - sym_optional, - sym_modules, - ACTIONS(25), 5, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, - STATE(7), 12, - sym__config_option, - sym_type_definition, - sym_input_prompt, - sym_default_value, - sym_type_definition_default, - sym_dependencies, - sym_reverse_dependencies, - sym_weak_reverse_dependencies, - sym_limiting_menu_display, - sym_numerical_ranges, - sym_help_text, - aux_sym_config_repeat1, - [592] = 13, - ACTIONS(3), 1, - sym_comment, - ACTIONS(27), 1, - anon_sym_prompt, - ACTIONS(29), 1, - anon_sym_default, - ACTIONS(33), 1, - anon_sym_dependson, - ACTIONS(35), 1, anon_sym_select, - ACTIONS(37), 1, anon_sym_imply, - ACTIONS(39), 1, - anon_sym_visibleif, - ACTIONS(41), 1, anon_sym_range, - ACTIONS(43), 1, anon_sym_help, - ACTIONS(31), 2, - anon_sym_def_bool, - anon_sym_def_tristate, - ACTIONS(166), 2, sym_optional, sym_modules, - ACTIONS(25), 5, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, - STATE(6), 12, - sym__config_option, - sym_type_definition, - sym_input_prompt, - sym_default_value, - sym_type_definition_default, - sym_dependencies, - sym_reverse_dependencies, - sym_weak_reverse_dependencies, - sym_limiting_menu_display, - sym_numerical_ranges, - sym_help_text, - aux_sym_config_repeat1, - [649] = 13, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [728] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(27), 1, - anon_sym_prompt, - ACTIONS(29), 1, - anon_sym_default, - ACTIONS(33), 1, + ACTIONS(219), 8, anon_sym_dependson, - ACTIONS(35), 1, - anon_sym_select, - ACTIONS(37), 1, - anon_sym_imply, - ACTIONS(39), 1, anon_sym_visibleif, - ACTIONS(41), 1, - anon_sym_range, - ACTIONS(43), 1, - anon_sym_help, - ACTIONS(31), 2, - anon_sym_def_bool, - anon_sym_def_tristate, - ACTIONS(168), 2, - sym_optional, - sym_modules, - ACTIONS(25), 5, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, - STATE(5), 12, - sym__config_option, - sym_type_definition, - sym_input_prompt, - sym_default_value, - sym_type_definition_default, - sym_dependencies, - sym_reverse_dependencies, - sym_weak_reverse_dependencies, - sym_limiting_menu_display, - sym_numerical_ranges, - sym_help_text, - aux_sym_config_repeat1, - [706] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(172), 1, - anon_sym_menu, - ACTIONS(170), 27, - 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(217), 28, 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, @@ -3049,26 +3580,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [742] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [772] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(176), 1, - anon_sym_menu, - ACTIONS(174), 27, - ts_builtin_sym_end, + ACTIONS(223), 8, + 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, 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, @@ -3082,29 +3621,41 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [778] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [816] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(180), 1, - anon_sym_menu, - ACTIONS(178), 27, + ACTIONS(225), 1, + 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, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3115,29 +3666,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [814] = 3, + sym_symbol, + [866] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(184), 1, - anon_sym_menu, - ACTIONS(182), 27, + ACTIONS(193), 9, 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, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3148,29 +3703,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [850] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [908] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(188), 1, - anon_sym_menu, - ACTIONS(186), 27, + ACTIONS(215), 9, 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(213), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3181,29 +3742,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [886] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [950] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(192), 1, - anon_sym_menu, - ACTIONS(190), 27, + ACTIONS(189), 9, 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(187), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3214,29 +3781,36 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [922] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [992] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(196), 1, - anon_sym_menu, - ACTIONS(194), 27, + ACTIONS(227), 1, + anon_sym_EQ, + ACTIONS(197), 8, ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(195), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3247,29 +3821,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [958] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [1036] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(200), 1, - anon_sym_menu, - ACTIONS(198), 27, + ACTIONS(197), 9, 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(195), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3280,29 +3860,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [994] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [1078] = 6, ACTIONS(3), 1, sym_comment, - ACTIONS(204), 1, - anon_sym_menu, - ACTIONS(202), 27, + 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, ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(195), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3313,29 +3904,40 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [1030] = 3, + sym_symbol, + [1126] = 8, ACTIONS(3), 1, sym_comment, - ACTIONS(208), 1, - anon_sym_menu, - ACTIONS(206), 27, + 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, ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(229), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(205), 23, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3346,29 +3948,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [1066] = 3, + sym_symbol, + [1178] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(212), 1, - anon_sym_menu, - ACTIONS(210), 27, + ACTIONS(219), 9, 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(217), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3379,29 +3985,35 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [1102] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [1220] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(216), 1, - anon_sym_menu, - ACTIONS(214), 27, + ACTIONS(223), 9, 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(221), 25, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, - anon_sym_endchoice, anon_sym_comment, - anon_sym_endmenu, + anon_sym_menu, anon_sym_if, - anon_sym_endif, anon_sym_source, anon_sym_bool, anon_sym_tristate, @@ -3412,158 +4024,384 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [1138] = 3, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [1262] = 14, ACTIONS(3), 1, sym_comment, - ACTIONS(220), 1, - anon_sym_menu, - ACTIONS(218), 27, - ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, - anon_sym_bool, - anon_sym_tristate, - anon_sym_int, - anon_sym_hex, - anon_sym_string, + ACTIONS(45), 1, anon_sym_prompt, + ACTIONS(47), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, + ACTIONS(51), 1, anon_sym_dependson, + ACTIONS(53), 1, anon_sym_select, + ACTIONS(55), 1, anon_sym_imply, + ACTIONS(57), 1, anon_sym_visibleif, + ACTIONS(59), 1, anon_sym_range, + ACTIONS(61), 1, anon_sym_help, + ACTIONS(235), 1, + sym_symbol, + ACTIONS(49), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(237), 2, sym_optional, sym_modules, - [1174] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(224), 1, - anon_sym_menu, - ACTIONS(222), 27, - ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, + ACTIONS(43), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, + STATE(7), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1322] = 14, + ACTIONS(3), 1, + sym_comment, + ACTIONS(45), 1, anon_sym_prompt, + ACTIONS(47), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, + ACTIONS(51), 1, anon_sym_dependson, + ACTIONS(53), 1, anon_sym_select, + ACTIONS(55), 1, anon_sym_imply, + ACTIONS(57), 1, anon_sym_visibleif, + ACTIONS(59), 1, anon_sym_range, + ACTIONS(61), 1, anon_sym_help, + ACTIONS(239), 1, + sym_symbol, + ACTIONS(49), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(241), 2, sym_optional, sym_modules, - [1210] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(228), 1, - anon_sym_menu, - ACTIONS(226), 27, - ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, + ACTIONS(43), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, + STATE(8), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1382] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_dependson, + ACTIONS(57), 1, + anon_sym_visibleif, + ACTIONS(245), 1, anon_sym_prompt, + ACTIONS(247), 1, anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, - anon_sym_dependson, + ACTIONS(251), 1, anon_sym_select, + ACTIONS(253), 1, anon_sym_imply, - anon_sym_visibleif, + ACTIONS(255), 1, anon_sym_range, + ACTIONS(257), 1, anon_sym_help, + ACTIONS(249), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(259), 2, sym_optional, sym_modules, - [1246] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(232), 1, - anon_sym_menu, - ACTIONS(230), 27, - ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, + ACTIONS(243), 5, anon_sym_bool, anon_sym_tristate, anon_sym_int, anon_sym_hex, anon_sym_string, - anon_sym_prompt, - anon_sym_default, - anon_sym_def_bool, - anon_sym_def_tristate, - anon_sym_dependson, - anon_sym_select, - anon_sym_imply, - anon_sym_visibleif, - anon_sym_range, - anon_sym_help, - sym_optional, - sym_modules, - [1282] = 3, - ACTIONS(3), 1, - sym_comment, - ACTIONS(236), 1, - anon_sym_menu, - ACTIONS(234), 27, - ts_builtin_sym_end, + STATE(11), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1439] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_dependson, + ACTIONS(57), 1, + anon_sym_visibleif, + ACTIONS(245), 1, + anon_sym_prompt, + ACTIONS(247), 1, + anon_sym_default, + ACTIONS(251), 1, + anon_sym_select, + ACTIONS(253), 1, + anon_sym_imply, + ACTIONS(255), 1, + anon_sym_range, + ACTIONS(257), 1, + anon_sym_help, + ACTIONS(249), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(261), 2, + sym_optional, + sym_modules, + ACTIONS(243), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + STATE(6), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1496] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_dependson, + ACTIONS(136), 1, + anon_sym_visibleif, + ACTIONS(265), 1, + anon_sym_prompt, + ACTIONS(267), 1, + anon_sym_default, + ACTIONS(271), 1, + anon_sym_select, + ACTIONS(273), 1, + anon_sym_imply, + ACTIONS(275), 1, + anon_sym_range, + ACTIONS(277), 1, + anon_sym_help, + ACTIONS(269), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(279), 2, + sym_optional, + sym_modules, + ACTIONS(263), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + STATE(17), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1553] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(130), 1, + anon_sym_dependson, + ACTIONS(136), 1, + anon_sym_visibleif, + ACTIONS(265), 1, + anon_sym_prompt, + ACTIONS(267), 1, + anon_sym_default, + ACTIONS(271), 1, + anon_sym_select, + ACTIONS(273), 1, + anon_sym_imply, + ACTIONS(275), 1, + anon_sym_range, + ACTIONS(277), 1, + anon_sym_help, + ACTIONS(269), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(281), 2, + sym_optional, + sym_modules, + ACTIONS(263), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + STATE(18), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1610] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_dependson, + ACTIONS(57), 1, + anon_sym_visibleif, + ACTIONS(245), 1, + anon_sym_prompt, + ACTIONS(247), 1, + anon_sym_default, + ACTIONS(251), 1, + anon_sym_select, + ACTIONS(253), 1, + anon_sym_imply, + ACTIONS(255), 1, + anon_sym_range, + ACTIONS(257), 1, + anon_sym_help, + ACTIONS(249), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(283), 2, + sym_optional, + sym_modules, + ACTIONS(243), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + STATE(9), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1667] = 13, + ACTIONS(3), 1, + sym_comment, + ACTIONS(51), 1, + anon_sym_dependson, + ACTIONS(57), 1, + anon_sym_visibleif, + ACTIONS(245), 1, + anon_sym_prompt, + ACTIONS(247), 1, + anon_sym_default, + ACTIONS(251), 1, + anon_sym_select, + ACTIONS(253), 1, + anon_sym_imply, + ACTIONS(255), 1, + anon_sym_range, + ACTIONS(257), 1, + anon_sym_help, + ACTIONS(249), 2, + anon_sym_def_bool, + anon_sym_def_tristate, + ACTIONS(285), 2, + sym_optional, + sym_modules, + ACTIONS(243), 5, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + STATE(10), 12, + sym__config_option, + sym_type_definition, + sym_input_prompt, + sym_default_value, + sym_type_definition_default, + sym_dependencies, + sym_reverse_dependencies, + sym_weak_reverse_dependencies, + sym_limiting_menu_display, + sym_numerical_ranges, + sym_help_text, + aux_sym_config_repeat1, + [1724] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(287), 26, 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, @@ -3577,1504 +4415,4413 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_default, anon_sym_def_bool, anon_sym_def_tristate, - anon_sym_dependson, anon_sym_select, anon_sym_imply, - anon_sym_visibleif, anon_sym_range, anon_sym_help, sym_optional, sym_modules, - [1318] = 15, + sym_symbol, + [1760] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(293), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(291), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, - anon_sym_source, - ACTIONS(114), 1, - anon_sym_EQ, - ACTIONS(120), 1, - anon_sym_AMP_AMP, - ACTIONS(142), 1, - anon_sym_PIPE_PIPE, - ACTIONS(238), 1, anon_sym_endif, - ACTIONS(118), 2, - anon_sym_LT, - anon_sym_GT, - ACTIONS(116), 3, - anon_sym_BANG_EQ, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - STATE(51), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1375] = 10, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1796] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(242), 1, + ACTIONS(297), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(295), 26, anon_sym_config, - ACTIONS(245), 1, anon_sym_menuconfig, - ACTIONS(248), 1, anon_sym_choice, - ACTIONS(251), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(254), 1, anon_sym_menu, - ACTIONS(257), 1, - anon_sym_if, - ACTIONS(260), 1, - anon_sym_source, - ACTIONS(240), 4, - ts_builtin_sym_end, - anon_sym_endchoice, anon_sym_endmenu, + anon_sym_if, anon_sym_endif, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1417] = 10, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1832] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(301), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(299), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(263), 1, - ts_builtin_sym_end, - STATE(49), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1456] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1868] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(305), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(303), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(263), 1, - ts_builtin_sym_end, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1495] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1904] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(309), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(307), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(265), 1, - anon_sym_endmenu, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1534] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1940] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(313), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(311), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(267), 1, - anon_sym_endchoice, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1573] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [1976] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(317), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(315), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(269), 1, - anon_sym_endchoice, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1612] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2012] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(321), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(319), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(271), 1, - ts_builtin_sym_end, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1651] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2048] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(325), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(323), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, + anon_sym_endif, anon_sym_source, - ACTIONS(23), 1, - anon_sym_endmenu, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1690] = 10, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2084] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(9), 1, + ACTIONS(329), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(327), 26, anon_sym_config, - ACTIONS(11), 1, anon_sym_menuconfig, - ACTIONS(13), 1, anon_sym_choice, - ACTIONS(15), 1, + anon_sym_endchoice, anon_sym_comment, - ACTIONS(17), 1, anon_sym_menu, - ACTIONS(19), 1, + anon_sym_endmenu, anon_sym_if, - ACTIONS(21), 1, - anon_sym_source, - ACTIONS(273), 1, anon_sym_endif, - STATE(43), 9, - sym__entry, - sym_config, - sym_menuconfig, - sym_choice, - sym_comment_entry, - sym_menu, - sym_if, - sym_source, - aux_sym_configuration_repeat1, - [1729] = 3, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2120] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(277), 1, - anon_sym_menu, - ACTIONS(275), 10, - ts_builtin_sym_end, + ACTIONS(333), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(331), 26, 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, - [1748] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2156] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(281), 1, - anon_sym_menu, - ACTIONS(279), 10, - ts_builtin_sym_end, + ACTIONS(337), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(335), 26, 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, - [1767] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2192] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(285), 1, - anon_sym_menu, - ACTIONS(283), 10, - ts_builtin_sym_end, + ACTIONS(341), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(339), 26, 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, - [1786] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2228] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(289), 1, - anon_sym_menu, - ACTIONS(287), 10, - ts_builtin_sym_end, + ACTIONS(345), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(343), 26, 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, - [1805] = 8, - ACTIONS(291), 1, - anon_sym_if, - ACTIONS(293), 1, - aux_sym_type_definition_token1, - ACTIONS(295), 1, - anon_sym_PIPE_PIPE, - ACTIONS(297), 1, - anon_sym_AMP_AMP, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(303), 1, - sym_comment, - STATE(130), 1, - sym_conditional_clause, - ACTIONS(301), 5, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [1834] = 8, - ACTIONS(291), 1, - anon_sym_if, - ACTIONS(295), 1, - anon_sym_PIPE_PIPE, - ACTIONS(297), 1, - anon_sym_AMP_AMP, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(303), 1, - sym_comment, - ACTIONS(305), 1, - aux_sym_type_definition_token1, - STATE(129), 1, - sym_conditional_clause, - ACTIONS(301), 5, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [1863] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2264] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(309), 1, - anon_sym_menu, - ACTIONS(307), 10, - ts_builtin_sym_end, + ACTIONS(349), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(347), 26, 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, - [1882] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2300] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(313), 1, - anon_sym_menu, - ACTIONS(311), 10, - ts_builtin_sym_end, + ACTIONS(353), 2, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(351), 26, 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, - [1901] = 3, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2336] = 16, ACTIONS(3), 1, sym_comment, - ACTIONS(317), 1, - anon_sym_menu, - ACTIONS(315), 10, - ts_builtin_sym_end, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, anon_sym_config, + ACTIONS(29), 1, anon_sym_menuconfig, + ACTIONS(31), 1, anon_sym_choice, - anon_sym_endchoice, + ACTIONS(33), 1, anon_sym_comment, - anon_sym_endmenu, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, anon_sym_if, - anon_sym_endif, + ACTIONS(41), 1, anon_sym_source, - [1920] = 3, + ACTIONS(355), 1, + anon_sym_endif, + 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, + STATE(100), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [2397] = 16, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(357), 1, + anon_sym_PIPE_PIPE, + ACTIONS(359), 1, + anon_sym_AMP_AMP, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(367), 1, + anon_sym_endif, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(363), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + STATE(103), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [2458] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(341), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(339), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2492] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(325), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(323), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2526] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(345), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(343), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2560] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(337), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(335), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2594] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(333), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(331), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2628] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(301), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(299), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2662] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(297), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(295), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2696] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(313), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(311), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2730] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(349), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(347), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2764] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(321), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(319), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2798] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(353), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(351), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2832] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(309), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(307), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2866] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(329), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(327), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2900] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(317), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(315), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2934] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(289), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(287), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [2968] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(305), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(303), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [3002] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(293), 3, + ts_builtin_sym_end, + anon_sym_dependson, + anon_sym_visibleif, + ACTIONS(291), 23, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_bool, + anon_sym_tristate, + anon_sym_int, + anon_sym_hex, + anon_sym_string, + anon_sym_prompt, + anon_sym_default, + anon_sym_def_bool, + anon_sym_def_tristate, + anon_sym_select, + anon_sym_imply, + anon_sym_range, + anon_sym_help, + sym_optional, + sym_modules, + sym_symbol, + [3036] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 8, + 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, + anon_sym_DOLLAR_LPAREN, + ACTIONS(213), 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, + [3065] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(189), 8, + 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, + anon_sym_DOLLAR_LPAREN, + ACTIONS(187), 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, + [3094] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(369), 1, + sym_symbol, + ACTIONS(372), 1, + anon_sym_config, + ACTIONS(375), 1, + anon_sym_menuconfig, + ACTIONS(378), 1, + anon_sym_choice, + ACTIONS(383), 1, + anon_sym_comment, + ACTIONS(386), 1, + anon_sym_menu, + ACTIONS(389), 1, + anon_sym_if, + ACTIONS(392), 1, + anon_sym_source, + ACTIONS(381), 3, + anon_sym_endchoice, + anon_sym_endmenu, + anon_sym_endif, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3139] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(193), 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(191), 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, + [3167] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 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(221), 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] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(197), 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, + 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, + [3225] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(197), 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(195), 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, + [3253] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(197), 3, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_RPAREN, + ACTIONS(363), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(195), 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, + [3287] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(359), 1, + anon_sym_AMP_AMP, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(197), 2, + anon_sym_PIPE_PIPE, + anon_sym_RPAREN, + 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(195), 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, + [3323] = 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, + 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, + [3351] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(37), 1, + anon_sym_endmenu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3394] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(395), 1, + anon_sym_endmenu, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3437] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(65), 1, + anon_sym_endmenu, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(399), 1, + anon_sym_endchoice, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3566] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(401), 1, + anon_sym_endchoice, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3609] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(403), 1, + anon_sym_endif, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3652] = 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(104), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3695] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(405), 1, + anon_sym_endchoice, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3738] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(407), 1, + anon_sym_endif, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3781] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(409), 1, + ts_builtin_sym_end, + ACTIONS(411), 1, + sym_symbol, + ACTIONS(414), 1, + anon_sym_config, + ACTIONS(417), 1, + anon_sym_menuconfig, + ACTIONS(420), 1, + anon_sym_choice, + ACTIONS(423), 1, + anon_sym_comment, + ACTIONS(426), 1, + anon_sym_menu, + ACTIONS(429), 1, + anon_sym_if, + ACTIONS(432), 1, + anon_sym_source, + STATE(104), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3824] = 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(435), 1, + ts_builtin_sym_end, + STATE(104), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3867] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(437), 1, + anon_sym_endchoice, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3910] = 11, + ACTIONS(3), 1, + sym_comment, + ACTIONS(25), 1, + sym_symbol, + ACTIONS(27), 1, + anon_sym_config, + ACTIONS(29), 1, + anon_sym_menuconfig, + ACTIONS(31), 1, + anon_sym_choice, + ACTIONS(33), 1, + anon_sym_comment, + ACTIONS(35), 1, + anon_sym_menu, + ACTIONS(39), 1, + anon_sym_if, + ACTIONS(41), 1, + anon_sym_source, + ACTIONS(439), 1, + anon_sym_endmenu, + STATE(86), 10, + sym__entry, + sym_config, + sym_menuconfig, + sym_choice, + sym_comment_entry, + sym_menu, + sym_if, + sym_source, + sym_variable, + aux_sym_configuration_repeat1, + [3953] = 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(441), 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, + [3988] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(219), 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(217), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4013] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(193), 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(191), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4038] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(189), 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(187), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4063] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 1, + anon_sym_EQ, + ACTIONS(197), 6, + ts_builtin_sym_end, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(195), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4090] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(215), 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(213), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4115] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(197), 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, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4140] = 6, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 1, + anon_sym_EQ, + ACTIONS(447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(197), 3, + ts_builtin_sym_end, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(445), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(195), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [4171] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 1, + anon_sym_EQ, + ACTIONS(449), 1, + anon_sym_AMP_AMP, + ACTIONS(197), 2, + ts_builtin_sym_end, + anon_sym_PIPE_PIPE, + ACTIONS(447), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(445), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(195), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [4204] = 8, + ACTIONS(3), 1, + sym_comment, + ACTIONS(443), 1, + anon_sym_EQ, + ACTIONS(449), 1, + anon_sym_AMP_AMP, + ACTIONS(451), 1, + 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_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + ACTIONS(441), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [4239] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(223), 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(221), 10, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + anon_sym_LT, + anon_sym_GT, + sym_symbol, + [4264] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(455), 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, + [4281] = 8, + ACTIONS(457), 1, + anon_sym_if, + ACTIONS(459), 1, + aux_sym_type_definition_token1, + 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, + 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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(471), 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, + [4327] = 8, + ACTIONS(457), 1, + anon_sym_if, + 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(473), 1, + aux_sym_type_definition_token1, + STATE(239), 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, + [4356] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(475), 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, + [4373] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(477), 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, + [4390] = 8, + ACTIONS(457), 1, + anon_sym_if, + 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(479), 1, + aux_sym_type_definition_token1, + STATE(236), 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, + [4419] = 8, + ACTIONS(457), 1, + anon_sym_if, + 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(481), 1, + aux_sym_type_definition_token1, + STATE(252), 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, + [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, + ACTIONS(3), 1, + sym_comment, + ACTIONS(485), 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, + [4482] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(487), 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, + [4499] = 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, + [4516] = 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(91), 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, + [4542] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(501), 1, + anon_sym_BANG, + ACTIONS(503), 1, + anon_sym_LPAREN, + ACTIONS(505), 1, + anon_sym_DOLLAR_LPAREN, + STATE(29), 1, + sym_expression, + ACTIONS(499), 2, + sym_prompt, + sym_symbol, + STATE(21), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4568] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(147), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4594] = 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(190), 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, + [4620] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(145), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4646] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(144), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4672] = 3, + ACTIONS(189), 1, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(187), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4690] = 3, + ACTIONS(223), 1, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(221), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + 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, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(191), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + 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, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(217), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4796] = 3, + ACTIONS(215), 1, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(213), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4814] = 6, + ACTIONS(197), 1, + aux_sym_type_definition_token1, + ACTIONS(463), 1, + anon_sym_AMP_AMP, + ACTIONS(465), 1, + anon_sym_EQ, + ACTIONS(469), 1, + sym_comment, + ACTIONS(195), 2, + anon_sym_if, + anon_sym_PIPE_PIPE, + ACTIONS(467), 5, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4838] = 5, + ACTIONS(197), 1, + aux_sym_type_definition_token1, + ACTIONS(465), 1, + anon_sym_EQ, + ACTIONS(469), 1, + sym_comment, + ACTIONS(195), 3, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + ACTIONS(467), 5, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4860] = 3, + ACTIONS(197), 1, + aux_sym_type_definition_token1, + ACTIONS(469), 1, + sym_comment, + ACTIONS(195), 9, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4878] = 4, + ACTIONS(197), 1, + aux_sym_type_definition_token1, + ACTIONS(465), 1, + anon_sym_EQ, + ACTIONS(469), 1, + sym_comment, + ACTIONS(195), 8, + anon_sym_if, + anon_sym_PIPE_PIPE, + anon_sym_AMP_AMP, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_GT, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [4898] = 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(184), 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, + [4924] = 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(187), 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, + [4950] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(189), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [4976] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(122), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5002] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(120), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5028] = 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(66), 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, + [5054] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(517), 1, + anon_sym_BANG, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_DOLLAR_LPAREN, + STATE(39), 1, + sym_expression, + ACTIONS(515), 2, + sym_prompt, + sym_symbol, + STATE(31), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5080] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(525), 1, + anon_sym_BANG, + ACTIONS(527), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + STATE(118), 1, + sym_expression, + ACTIONS(523), 2, + sym_prompt, + sym_symbol, + STATE(110), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5106] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(146), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5132] = 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(65), 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, + [5158] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(321), 1, - anon_sym_menu, - ACTIONS(319), 10, - ts_builtin_sym_end, - anon_sym_config, - anon_sym_menuconfig, - anon_sym_choice, - anon_sym_endchoice, - anon_sym_comment, - anon_sym_endmenu, - anon_sym_if, - anon_sym_endif, - anon_sym_source, - [1939] = 7, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(126), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5184] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(509), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(511), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN, - STATE(14), 1, + STATE(125), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(507), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(140), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [1965] = 3, - ACTIONS(122), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, + [5210] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(124), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [1983] = 4, - ACTIONS(106), 1, - aux_sym_type_definition_token1, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(303), 1, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(138), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5236] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(108), 8, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2003] = 7, + ACTIONS(509), 1, + anon_sym_BANG, + ACTIONS(511), 1, + anon_sym_LPAREN, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + STATE(185), 1, + sym_expression, + ACTIONS(507), 2, + sym_prompt, + sym_symbol, + STATE(140), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5262] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - STATE(91), 1, + STATE(26), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(499), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(21), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2029] = 7, + [5288] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - STATE(64), 1, + STATE(24), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(499), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(21), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2055] = 7, + [5314] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - STATE(84), 1, + STATE(23), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(499), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(21), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2081] = 7, + [5340] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - STATE(13), 1, + STATE(22), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(499), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(21), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2107] = 7, + [5366] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(11), 1, + STATE(37), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(31), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2133] = 7, + [5392] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(493), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(497), 1, anon_sym_DOLLAR_LPAREN, - STATE(18), 1, + STATE(89), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2159] = 7, + [5418] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(493), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(497), 1, anon_sym_DOLLAR_LPAREN, - STATE(56), 1, + STATE(90), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2185] = 7, + [5444] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(493), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(497), 1, anon_sym_DOLLAR_LPAREN, - STATE(17), 1, + STATE(92), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2211] = 7, + [5470] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(501), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(503), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(505), 1, anon_sym_DOLLAR_LPAREN, - STATE(89), 1, + STATE(25), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(499), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(21), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2237] = 7, + [5496] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(493), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(497), 1, anon_sym_DOLLAR_LPAREN, STATE(88), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2263] = 3, - ACTIONS(126), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, - sym_comment, - ACTIONS(128), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2281] = 7, + [5522] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(493), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(495), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(497), 1, anon_sym_DOLLAR_LPAREN, - STATE(85), 1, + STATE(193), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(491), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(87), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2307] = 7, + [5548] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(57), 1, + STATE(117), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(110), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2333] = 7, + [5574] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(20), 1, + STATE(34), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(31), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2359] = 3, - ACTIONS(110), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, - sym_comment, - ACTIONS(112), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2377] = 3, - ACTIONS(130), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, + [5600] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(132), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2395] = 3, - ACTIONS(134), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, + ACTIONS(517), 1, + anon_sym_BANG, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_DOLLAR_LPAREN, + STATE(35), 1, + sym_expression, + ACTIONS(515), 2, + sym_prompt, + sym_symbol, + STATE(31), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5626] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(136), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2413] = 7, + ACTIONS(517), 1, + anon_sym_BANG, + ACTIONS(519), 1, + anon_sym_LPAREN, + ACTIONS(521), 1, + anon_sym_DOLLAR_LPAREN, + STATE(36), 1, + sym_expression, + ACTIONS(515), 2, + sym_prompt, + sym_symbol, + STATE(31), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5652] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(80), 1, + STATE(116), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(110), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2439] = 7, + [5678] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(525), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(527), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(529), 1, anon_sym_DOLLAR_LPAREN, - STATE(92), 1, + STATE(115), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(523), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(110), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2465] = 3, - ACTIONS(106), 1, - aux_sym_type_definition_token1, - ACTIONS(303), 1, + [5704] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(108), 9, - anon_sym_if, - anon_sym_PIPE_PIPE, - anon_sym_AMP_AMP, - anon_sym_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2483] = 6, - ACTIONS(106), 1, - aux_sym_type_definition_token1, - ACTIONS(297), 1, - anon_sym_AMP_AMP, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(303), 1, + ACTIONS(525), 1, + anon_sym_BANG, + ACTIONS(527), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + STATE(114), 1, + sym_expression, + ACTIONS(523), 2, + sym_prompt, + sym_symbol, + STATE(110), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5730] = 7, + ACTIONS(3), 1, sym_comment, - ACTIONS(108), 2, - anon_sym_if, - anon_sym_PIPE_PIPE, - ACTIONS(301), 5, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_GT, - anon_sym_LT_EQ, - anon_sym_GT_EQ, - [2507] = 7, + ACTIONS(525), 1, + anon_sym_BANG, + ACTIONS(527), 1, + anon_sym_LPAREN, + ACTIONS(529), 1, + anon_sym_DOLLAR_LPAREN, + STATE(112), 1, + sym_expression, + ACTIONS(523), 2, + sym_prompt, + sym_symbol, + STATE(110), 4, + sym_unary_expression, + sym_binary_expression, + sym_parenthesized_expression, + sym_macro_variable, + [5756] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(333), 1, + ACTIONS(517), 1, anon_sym_BANG, - ACTIONS(335), 1, + ACTIONS(519), 1, anon_sym_LPAREN, - ACTIONS(337), 1, + ACTIONS(521), 1, anon_sym_DOLLAR_LPAREN, - STATE(90), 1, + STATE(30), 1, sym_expression, - ACTIONS(331), 2, + ACTIONS(515), 2, sym_prompt, sym_symbol, - STATE(81), 4, + STATE(31), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2533] = 7, + [5782] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(325), 1, + ACTIONS(509), 1, anon_sym_BANG, - ACTIONS(327), 1, + ACTIONS(511), 1, anon_sym_LPAREN, - ACTIONS(329), 1, + ACTIONS(513), 1, anon_sym_DOLLAR_LPAREN, - STATE(42), 1, + STATE(194), 1, sym_expression, - ACTIONS(323), 2, + ACTIONS(507), 2, sym_prompt, sym_symbol, - STATE(19), 4, + STATE(140), 4, sym_unary_expression, sym_binary_expression, sym_parenthesized_expression, sym_macro_variable, - [2559] = 5, - ACTIONS(106), 1, - aux_sym_type_definition_token1, - ACTIONS(299), 1, - anon_sym_EQ, - ACTIONS(303), 1, + [5808] = 3, + ACTIONS(3), 1, sym_comment, - ACTIONS(108), 3, + ACTIONS(531), 1, + ts_builtin_sym_end, + ACTIONS(471), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, anon_sym_if, + anon_sym_source, + sym_symbol, + [5825] = 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(533), 1, + anon_sym_RPAREN, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(363), 3, + 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(301), 5, + 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, - [2581] = 7, + [5873] = 7, ACTIONS(3), 1, sym_comment, - ACTIONS(114), 1, - anon_sym_EQ, - ACTIONS(120), 1, + ACTIONS(357), 1, + anon_sym_PIPE_PIPE, + ACTIONS(359), 1, anon_sym_AMP_AMP, - ACTIONS(142), 1, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(537), 1, + anon_sym_RPAREN, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(363), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [5898] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(357), 1, anon_sym_PIPE_PIPE, - ACTIONS(339), 1, + ACTIONS(359), 1, + anon_sym_AMP_AMP, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(539), 1, anon_sym_RPAREN, - ACTIONS(118), 2, + ACTIONS(365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(116), 3, + ACTIONS(363), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2606] = 6, - ACTIONS(295), 1, + [5923] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(541), 1, + ts_builtin_sym_end, + ACTIONS(543), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [5940] = 6, + ACTIONS(461), 1, anon_sym_PIPE_PIPE, - ACTIONS(297), 1, + ACTIONS(463), 1, anon_sym_AMP_AMP, - ACTIONS(299), 1, + ACTIONS(465), 1, anon_sym_EQ, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(341), 1, + ACTIONS(545), 1, aux_sym_type_definition_token1, - ACTIONS(301), 5, + ACTIONS(467), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2629] = 7, + [5963] = 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(547), 1, + anon_sym_RPAREN, + ACTIONS(365), 2, + anon_sym_LT, + anon_sym_GT, + ACTIONS(363), 3, + anon_sym_BANG_EQ, + anon_sym_LT_EQ, + anon_sym_GT_EQ, + [5988] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(114), 1, - anon_sym_EQ, - ACTIONS(120), 1, - anon_sym_AMP_AMP, - ACTIONS(142), 1, + ACTIONS(549), 1, + ts_builtin_sym_end, + ACTIONS(485), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6005] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(551), 1, + ts_builtin_sym_end, + ACTIONS(477), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6022] = 7, + ACTIONS(3), 1, + sym_comment, + ACTIONS(357), 1, anon_sym_PIPE_PIPE, - ACTIONS(343), 1, + ACTIONS(359), 1, + anon_sym_AMP_AMP, + ACTIONS(361), 1, + anon_sym_EQ, + ACTIONS(553), 1, anon_sym_RPAREN, - ACTIONS(118), 2, + ACTIONS(365), 2, anon_sym_LT, anon_sym_GT, - ACTIONS(116), 3, + ACTIONS(363), 3, anon_sym_BANG_EQ, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2654] = 6, - ACTIONS(295), 1, + [6047] = 6, + ACTIONS(461), 1, anon_sym_PIPE_PIPE, - ACTIONS(297), 1, + ACTIONS(463), 1, anon_sym_AMP_AMP, - ACTIONS(299), 1, + ACTIONS(465), 1, anon_sym_EQ, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(345), 1, + ACTIONS(555), 1, aux_sym_type_definition_token1, - ACTIONS(301), 5, + ACTIONS(467), 5, anon_sym_BANG_EQ, anon_sym_LT, anon_sym_GT, anon_sym_LT_EQ, anon_sym_GT_EQ, - [2677] = 3, + [6070] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(557), 1, + ts_builtin_sym_end, + ACTIONS(487), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6087] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(559), 1, + ts_builtin_sym_end, + ACTIONS(489), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6104] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(561), 1, + ts_builtin_sym_end, + ACTIONS(483), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, + anon_sym_menu, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6121] = 3, ACTIONS(3), 1, sym_comment, - ACTIONS(349), 1, + ACTIONS(563), 1, + ts_builtin_sym_end, + ACTIONS(475), 8, + anon_sym_config, + anon_sym_menuconfig, + anon_sym_choice, + anon_sym_comment, anon_sym_menu, - ACTIONS(347), 7, + anon_sym_if, + anon_sym_source, + sym_symbol, + [6138] = 3, + ACTIONS(3), 1, + sym_comment, + ACTIONS(565), 1, ts_builtin_sym_end, + ACTIONS(455), 8, anon_sym_config, anon_sym_menuconfig, anon_sym_choice, anon_sym_comment, + anon_sym_menu, anon_sym_if, anon_sym_source, - [2693] = 6, - ACTIONS(303), 1, + sym_symbol, + [6155] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(351), 1, + ACTIONS(567), 1, anon_sym_RPAREN, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(355), 1, + ACTIONS(571), 1, sym_macro_content, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - STATE(100), 2, + STATE(201), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2713] = 6, - ACTIONS(303), 1, + [6175] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(359), 1, + ACTIONS(569), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(575), 1, anon_sym_RPAREN, - ACTIONS(361), 1, + ACTIONS(577), 1, + sym_macro_content, + STATE(205), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6195] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(364), 1, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(577), 1, sym_macro_content, - ACTIONS(367), 1, + ACTIONS(579), 1, + anon_sym_RPAREN, + STATE(205), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6215] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(581), 1, + anon_sym_RPAREN, + ACTIONS(583), 1, + sym_macro_content, + STATE(202), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6235] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(577), 1, + sym_macro_content, + ACTIONS(585), 1, + anon_sym_RPAREN, + STATE(205), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6255] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(587), 1, + anon_sym_RPAREN, + ACTIONS(589), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(592), 1, + sym_macro_content, + ACTIONS(595), 1, sym_prompt, - STATE(95), 2, + STATE(205), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2733] = 7, - ACTIONS(291), 1, + [6275] = 7, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(370), 1, + ACTIONS(598), 1, aux_sym_type_definition_token1, - ACTIONS(372), 1, + ACTIONS(600), 1, anon_sym_prompt, - ACTIONS(374), 1, + ACTIONS(602), 1, sym_prompt, - STATE(109), 1, + STATE(224), 1, sym_input_prompt, - STATE(114), 1, + STATE(253), 1, sym_conditional_clause, - [2755] = 6, - ACTIONS(303), 1, + [6297] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - ACTIONS(376), 1, + ACTIONS(577), 1, + sym_macro_content, + ACTIONS(604), 1, anon_sym_RPAREN, - ACTIONS(378), 1, + STATE(205), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6317] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(606), 1, + anon_sym_RPAREN, + ACTIONS(608), 1, sym_macro_content, - STATE(101), 2, + STATE(204), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2775] = 6, - ACTIONS(303), 1, + [6337] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - ACTIONS(380), 1, + ACTIONS(610), 1, anon_sym_RPAREN, - ACTIONS(382), 1, + ACTIONS(612), 1, sym_macro_content, - STATE(99), 2, + STATE(214), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2795] = 6, - ACTIONS(303), 1, + [6357] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - ACTIONS(384), 1, + ACTIONS(614), 1, anon_sym_RPAREN, - ACTIONS(386), 1, + ACTIONS(616), 1, sym_macro_content, - STATE(95), 2, + STATE(207), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2815] = 6, - ACTIONS(303), 1, + [6377] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - ACTIONS(386), 1, + ACTIONS(577), 1, sym_macro_content, - ACTIONS(388), 1, + ACTIONS(618), 1, anon_sym_RPAREN, - STATE(95), 2, + STATE(205), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2835] = 6, - ACTIONS(303), 1, + [6397] = 6, + ACTIONS(469), 1, sym_comment, - ACTIONS(353), 1, + ACTIONS(569), 1, anon_sym_DOLLAR_LPAREN, - ACTIONS(357), 1, + ACTIONS(573), 1, sym_prompt, - ACTIONS(386), 1, + ACTIONS(620), 1, + anon_sym_RPAREN, + ACTIONS(622), 1, + sym_macro_content, + STATE(211), 2, + sym_macro_variable, + aux_sym_macro_variable_repeat1, + [6417] = 7, + ACTIONS(457), 1, + anon_sym_if, + ACTIONS(469), 1, + sym_comment, + ACTIONS(600), 1, + anon_sym_prompt, + ACTIONS(624), 1, + aux_sym_type_definition_token1, + ACTIONS(626), 1, + sym_prompt, + STATE(225), 1, + sym_input_prompt, + STATE(246), 1, + sym_conditional_clause, + [6439] = 6, + ACTIONS(469), 1, + sym_comment, + ACTIONS(569), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(573), 1, + sym_prompt, + ACTIONS(577), 1, sym_macro_content, - ACTIONS(390), 1, + ACTIONS(628), 1, anon_sym_RPAREN, - STATE(95), 2, + STATE(205), 2, sym_macro_variable, aux_sym_macro_variable_repeat1, - [2855] = 2, - ACTIONS(303), 1, + [6459] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(392), 4, + ACTIONS(187), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [2865] = 2, - ACTIONS(303), 1, + [6469] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(112), 4, + ACTIONS(630), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [2875] = 2, - ACTIONS(303), 1, + [6479] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(124), 4, + ACTIONS(213), 4, anon_sym_RPAREN, anon_sym_DOLLAR_LPAREN, sym_macro_content, sym_prompt, - [2885] = 4, - ACTIONS(291), 1, + [6489] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(394), 1, + ACTIONS(632), 1, aux_sym_type_definition_token1, - STATE(127), 1, + STATE(238), 1, sym_conditional_clause, - [2898] = 4, - ACTIONS(291), 1, + [6502] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(634), 1, + sym_symbol, + STATE(226), 1, + sym_macro_variable, + [6515] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(396), 1, + ACTIONS(636), 1, aux_sym_type_definition_token1, - STATE(126), 1, + STATE(240), 1, sym_conditional_clause, - [2911] = 4, - ACTIONS(291), 1, + [6528] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(398), 1, + ACTIONS(638), 1, aux_sym_type_definition_token1, - STATE(133), 1, + STATE(241), 1, sym_conditional_clause, - [2924] = 4, - ACTIONS(291), 1, + [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, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(400), 1, + ACTIONS(642), 1, aux_sym_type_definition_token1, - STATE(117), 1, + STATE(247), 1, sym_conditional_clause, - [2937] = 4, - ACTIONS(291), 1, + [6567] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(402), 1, + ACTIONS(644), 1, aux_sym_type_definition_token1, - STATE(118), 1, + STATE(248), 1, + sym_conditional_clause, + [6580] = 4, + ACTIONS(457), 1, + anon_sym_if, + ACTIONS(469), 1, + sym_comment, + ACTIONS(646), 1, + aux_sym_type_definition_token1, + STATE(259), 1, + sym_conditional_clause, + [6593] = 4, + ACTIONS(457), 1, + anon_sym_if, + ACTIONS(469), 1, + sym_comment, + ACTIONS(648), 1, + aux_sym_type_definition_token1, + STATE(265), 1, sym_conditional_clause, - [2950] = 4, - ACTIONS(291), 1, + [6606] = 4, + ACTIONS(3), 1, + sym_comment, + ACTIONS(497), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(650), 1, + sym_symbol, + STATE(232), 1, + sym_macro_variable, + [6619] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(404), 1, + ACTIONS(652), 1, aux_sym_type_definition_token1, - STATE(131), 1, + STATE(237), 1, sym_conditional_clause, - [2963] = 3, - ACTIONS(206), 1, + [6632] = 4, + ACTIONS(457), 1, + anon_sym_if, + ACTIONS(469), 1, + sym_comment, + ACTIONS(654), 1, aux_sym_type_definition_token1, - ACTIONS(208), 1, + STATE(244), 1, + sym_conditional_clause, + [6645] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - [2973] = 3, - ACTIONS(186), 1, + ACTIONS(656), 1, aux_sym_type_definition_token1, - ACTIONS(188), 1, + STATE(243), 1, + sym_conditional_clause, + [6658] = 4, + ACTIONS(457), 1, anon_sym_if, - ACTIONS(303), 1, + ACTIONS(469), 1, sym_comment, - [2983] = 2, + ACTIONS(658), 1, + aux_sym_type_definition_token1, + STATE(257), 1, + sym_conditional_clause, + [6671] = 4, ACTIONS(3), 1, sym_comment, - ACTIONS(406), 1, + ACTIONS(513), 1, + anon_sym_DOLLAR_LPAREN, + ACTIONS(660), 1, sym_symbol, - [2990] = 2, - ACTIONS(303), 1, + STATE(228), 1, + sym_macro_variable, + [6684] = 3, + ACTIONS(295), 1, + anon_sym_if, + ACTIONS(297), 1, + aux_sym_type_definition_token1, + ACTIONS(469), 1, sym_comment, - ACTIONS(402), 1, + [6694] = 3, + ACTIONS(343), 1, + anon_sym_if, + ACTIONS(345), 1, aux_sym_type_definition_token1, - [2997] = 2, - ACTIONS(3), 1, + ACTIONS(469), 1, sym_comment, - ACTIONS(408), 1, - sym_symbol, - [3004] = 2, + [6704] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(410), 1, + ACTIONS(662), 1, sym_symbol, - [3011] = 2, - ACTIONS(303), 1, + [6711] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(412), 1, + ACTIONS(664), 1, aux_sym_type_definition_token1, - [3018] = 2, - ACTIONS(303), 1, + [6718] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(414), 1, + ACTIONS(666), 1, aux_sym_type_definition_token1, - [3025] = 2, - ACTIONS(3), 1, + [6725] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(416), 1, - sym_prompt, - [3032] = 2, + ACTIONS(668), 1, + aux_sym_type_definition_token1, + [6732] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(670), 1, + aux_sym_type_definition_token1, + [6739] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(672), 1, + aux_sym_type_definition_token1, + [6746] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(674), 1, + aux_sym_type_definition_token1, + [6753] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(676), 1, + aux_sym_type_definition_token1, + [6760] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(678), 1, + aux_sym_type_definition_token1, + [6767] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(680), 1, + aux_sym_type_definition_token1, + [6774] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(418), 1, + ACTIONS(682), 1, sym_prompt, - [3039] = 2, + [6781] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(646), 1, + aux_sym_type_definition_token1, + [6788] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(684), 1, + aux_sym_type_definition_token1, + [6795] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(686), 1, + aux_sym_type_definition_token1, + [6802] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(420), 1, - sym_prompt, - [3046] = 2, + ACTIONS(688), 1, + anon_sym_COLON_EQ, + [6809] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(422), 1, + ACTIONS(690), 1, ts_builtin_sym_end, - [3053] = 2, + [6816] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(424), 1, + ACTIONS(692), 1, sym_prompt, - [3060] = 2, + [6823] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(694), 1, + aux_sym_type_definition_token1, + [6830] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(644), 1, + aux_sym_type_definition_token1, + [6837] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(426), 1, + ACTIONS(696), 1, + sym_symbol, + [6844] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(698), 1, sym_symbol, - [3067] = 2, + [6851] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(428), 1, + ACTIONS(700), 1, sym_prompt, - [3074] = 2, - ACTIONS(303), 1, + [6858] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(430), 1, + ACTIONS(702), 1, aux_sym_type_definition_token1, - [3081] = 2, - ACTIONS(303), 1, + [6865] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(432), 1, + ACTIONS(704), 1, + sym_prompt, + [6872] = 2, + ACTIONS(469), 1, + sym_comment, + ACTIONS(706), 1, aux_sym_type_definition_token1, - [3088] = 2, + [6879] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(708), 1, + sym__help_text, + [6886] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(434), 1, + ACTIONS(710), 1, sym_symbol, - [3095] = 2, - ACTIONS(303), 1, + [6893] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(436), 1, - aux_sym_type_definition_token1, - [3102] = 2, - ACTIONS(303), 1, + ACTIONS(712), 1, + sym_symbol, + [6900] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(438), 1, - aux_sym_type_definition_token1, - [3109] = 2, - ACTIONS(303), 1, + ACTIONS(714), 1, + sym_symbol, + [6907] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(716), 1, + sym_prompt, + [6914] = 2, + ACTIONS(469), 1, sym_comment, - ACTIONS(440), 1, + ACTIONS(718), 1, aux_sym_type_definition_token1, - [3116] = 2, + [6921] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(442), 1, - sym_symbol, - [3123] = 2, - ACTIONS(303), 1, + ACTIONS(720), 1, + anon_sym_COLON_EQ, + [6928] = 2, + ACTIONS(3), 1, sym_comment, - ACTIONS(444), 1, - aux_sym_type_definition_token1, - [3130] = 2, + ACTIONS(722), 1, + sym_prompt, + [6935] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(724), 1, + sym_prompt, + [6942] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(726), 1, + sym_prompt, + [6949] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(728), 1, + sym_prompt, + [6956] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(446), 1, + ACTIONS(730), 1, sym_prompt, - [3137] = 2, + [6963] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(732), 1, + sym_symbol, + [6970] = 2, ACTIONS(3), 1, sym_comment, - ACTIONS(448), 1, + ACTIONS(734), 1, sym__help_text, + [6977] = 2, + ACTIONS(3), 1, + sym_comment, + ACTIONS(736), 1, + sym_symbol, }; static const uint32_t ts_small_parse_table_map[] = { - [SMALL_STATE(11)] = 0, - [SMALL_STATE(12)] = 45, - [SMALL_STATE(13)] = 90, - [SMALL_STATE(14)] = 141, - [SMALL_STATE(15)] = 194, - [SMALL_STATE(16)] = 239, - [SMALL_STATE(17)] = 284, - [SMALL_STATE(18)] = 329, - [SMALL_STATE(19)] = 376, - [SMALL_STATE(20)] = 421, - [SMALL_STATE(21)] = 475, - [SMALL_STATE(22)] = 535, - [SMALL_STATE(23)] = 592, - [SMALL_STATE(24)] = 649, - [SMALL_STATE(25)] = 706, - [SMALL_STATE(26)] = 742, - [SMALL_STATE(27)] = 778, - [SMALL_STATE(28)] = 814, - [SMALL_STATE(29)] = 850, - [SMALL_STATE(30)] = 886, - [SMALL_STATE(31)] = 922, - [SMALL_STATE(32)] = 958, - [SMALL_STATE(33)] = 994, - [SMALL_STATE(34)] = 1030, - [SMALL_STATE(35)] = 1066, - [SMALL_STATE(36)] = 1102, - [SMALL_STATE(37)] = 1138, - [SMALL_STATE(38)] = 1174, - [SMALL_STATE(39)] = 1210, - [SMALL_STATE(40)] = 1246, - [SMALL_STATE(41)] = 1282, - [SMALL_STATE(42)] = 1318, - [SMALL_STATE(43)] = 1375, - [SMALL_STATE(44)] = 1417, - [SMALL_STATE(45)] = 1456, - [SMALL_STATE(46)] = 1495, - [SMALL_STATE(47)] = 1534, - [SMALL_STATE(48)] = 1573, - [SMALL_STATE(49)] = 1612, - [SMALL_STATE(50)] = 1651, - [SMALL_STATE(51)] = 1690, - [SMALL_STATE(52)] = 1729, - [SMALL_STATE(53)] = 1748, - [SMALL_STATE(54)] = 1767, - [SMALL_STATE(55)] = 1786, - [SMALL_STATE(56)] = 1805, - [SMALL_STATE(57)] = 1834, - [SMALL_STATE(58)] = 1863, - [SMALL_STATE(59)] = 1882, - [SMALL_STATE(60)] = 1901, - [SMALL_STATE(61)] = 1920, - [SMALL_STATE(62)] = 1939, - [SMALL_STATE(63)] = 1965, - [SMALL_STATE(64)] = 1983, - [SMALL_STATE(65)] = 2003, - [SMALL_STATE(66)] = 2029, - [SMALL_STATE(67)] = 2055, - [SMALL_STATE(68)] = 2081, - [SMALL_STATE(69)] = 2107, - [SMALL_STATE(70)] = 2133, - [SMALL_STATE(71)] = 2159, - [SMALL_STATE(72)] = 2185, - [SMALL_STATE(73)] = 2211, - [SMALL_STATE(74)] = 2237, - [SMALL_STATE(75)] = 2263, - [SMALL_STATE(76)] = 2281, - [SMALL_STATE(77)] = 2307, - [SMALL_STATE(78)] = 2333, - [SMALL_STATE(79)] = 2359, - [SMALL_STATE(80)] = 2377, - [SMALL_STATE(81)] = 2395, - [SMALL_STATE(82)] = 2413, - [SMALL_STATE(83)] = 2439, - [SMALL_STATE(84)] = 2465, - [SMALL_STATE(85)] = 2483, - [SMALL_STATE(86)] = 2507, - [SMALL_STATE(87)] = 2533, - [SMALL_STATE(88)] = 2559, - [SMALL_STATE(89)] = 2581, - [SMALL_STATE(90)] = 2606, - [SMALL_STATE(91)] = 2629, - [SMALL_STATE(92)] = 2654, - [SMALL_STATE(93)] = 2677, - [SMALL_STATE(94)] = 2693, - [SMALL_STATE(95)] = 2713, - [SMALL_STATE(96)] = 2733, - [SMALL_STATE(97)] = 2755, - [SMALL_STATE(98)] = 2775, - [SMALL_STATE(99)] = 2795, - [SMALL_STATE(100)] = 2815, - [SMALL_STATE(101)] = 2835, - [SMALL_STATE(102)] = 2855, - [SMALL_STATE(103)] = 2865, - [SMALL_STATE(104)] = 2875, - [SMALL_STATE(105)] = 2885, - [SMALL_STATE(106)] = 2898, - [SMALL_STATE(107)] = 2911, - [SMALL_STATE(108)] = 2924, - [SMALL_STATE(109)] = 2937, - [SMALL_STATE(110)] = 2950, - [SMALL_STATE(111)] = 2963, - [SMALL_STATE(112)] = 2973, - [SMALL_STATE(113)] = 2983, - [SMALL_STATE(114)] = 2990, - [SMALL_STATE(115)] = 2997, - [SMALL_STATE(116)] = 3004, - [SMALL_STATE(117)] = 3011, - [SMALL_STATE(118)] = 3018, - [SMALL_STATE(119)] = 3025, - [SMALL_STATE(120)] = 3032, - [SMALL_STATE(121)] = 3039, - [SMALL_STATE(122)] = 3046, - [SMALL_STATE(123)] = 3053, - [SMALL_STATE(124)] = 3060, - [SMALL_STATE(125)] = 3067, - [SMALL_STATE(126)] = 3074, - [SMALL_STATE(127)] = 3081, - [SMALL_STATE(128)] = 3088, - [SMALL_STATE(129)] = 3095, - [SMALL_STATE(130)] = 3102, - [SMALL_STATE(131)] = 3109, - [SMALL_STATE(132)] = 3116, - [SMALL_STATE(133)] = 3123, - [SMALL_STATE(134)] = 3130, - [SMALL_STATE(135)] = 3137, + [SMALL_STATE(15)] = 0, + [SMALL_STATE(16)] = 70, + [SMALL_STATE(17)] = 140, + [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(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(38)] = 1178, + [SMALL_STATE(39)] = 1220, + [SMALL_STATE(40)] = 1262, + [SMALL_STATE(41)] = 1322, + [SMALL_STATE(42)] = 1382, + [SMALL_STATE(43)] = 1439, + [SMALL_STATE(44)] = 1496, + [SMALL_STATE(45)] = 1553, + [SMALL_STATE(46)] = 1610, + [SMALL_STATE(47)] = 1667, + [SMALL_STATE(48)] = 1724, + [SMALL_STATE(49)] = 1760, + [SMALL_STATE(50)] = 1796, + [SMALL_STATE(51)] = 1832, + [SMALL_STATE(52)] = 1868, + [SMALL_STATE(53)] = 1904, + [SMALL_STATE(54)] = 1940, + [SMALL_STATE(55)] = 1976, + [SMALL_STATE(56)] = 2012, + [SMALL_STATE(57)] = 2048, + [SMALL_STATE(58)] = 2084, + [SMALL_STATE(59)] = 2120, + [SMALL_STATE(60)] = 2156, + [SMALL_STATE(61)] = 2192, + [SMALL_STATE(62)] = 2228, + [SMALL_STATE(63)] = 2264, + [SMALL_STATE(64)] = 2300, + [SMALL_STATE(65)] = 2336, + [SMALL_STATE(66)] = 2397, + [SMALL_STATE(67)] = 2458, + [SMALL_STATE(68)] = 2492, + [SMALL_STATE(69)] = 2526, + [SMALL_STATE(70)] = 2560, + [SMALL_STATE(71)] = 2594, + [SMALL_STATE(72)] = 2628, + [SMALL_STATE(73)] = 2662, + [SMALL_STATE(74)] = 2696, + [SMALL_STATE(75)] = 2730, + [SMALL_STATE(76)] = 2764, + [SMALL_STATE(77)] = 2798, + [SMALL_STATE(78)] = 2832, + [SMALL_STATE(79)] = 2866, + [SMALL_STATE(80)] = 2900, + [SMALL_STATE(81)] = 2934, + [SMALL_STATE(82)] = 2968, + [SMALL_STATE(83)] = 3002, + [SMALL_STATE(84)] = 3036, + [SMALL_STATE(85)] = 3065, + [SMALL_STATE(86)] = 3094, + [SMALL_STATE(87)] = 3139, + [SMALL_STATE(88)] = 3167, + [SMALL_STATE(89)] = 3195, + [SMALL_STATE(90)] = 3225, + [SMALL_STATE(91)] = 3253, + [SMALL_STATE(92)] = 3287, + [SMALL_STATE(93)] = 3323, + [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, }; static const TSParseActionEntry ts_parse_actions[] = { @@ -5082,217 +8829,351 @@ 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 = true}}, SHIFT(125), - [9] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [11] = {.entry = {.count = 1, .reusable = true}}, SHIFT(115), - [13] = {.entry = {.count = 1, .reusable = true}}, SHIFT(21), - [15] = {.entry = {.count = 1, .reusable = true}}, SHIFT(119), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(120), - [19] = {.entry = {.count = 1, .reusable = true}}, SHIFT(87), - [21] = {.entry = {.count = 1, .reusable = true}}, SHIFT(121), - [23] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [25] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(77), - [33] = {.entry = {.count = 1, .reusable = true}}, SHIFT(83), - [35] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), - [37] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), - [39] = {.entry = {.count = 1, .reusable = true}}, SHIFT(78), - [41] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), - [43] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [45] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), - [47] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [49] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [51] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menuconfig, 3, .production_id = 1), - [53] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menuconfig, 3, .production_id = 1), - [55] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_config, 3, .production_id = 1), - [57] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_config, 3, .production_id = 1), - [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 2, .production_id = 1), - [61] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 2, .production_id = 1), - [63] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [65] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), - [67] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_config_repeat1, 2), - [69] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(96), - [72] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(123), - [75] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(71), - [78] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(77), - [81] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(83), - [84] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(113), - [87] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(128), - [90] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(78), - [93] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(132), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(135), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_config_repeat1, 2), SHIFT_REPEAT(9), - [102] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment_entry, 3, .production_id = 1), - [104] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment_entry, 3, .production_id = 1), - [106] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_binary_expression, 3, .production_id = 4), - [108] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_binary_expression, 3, .production_id = 4), - [110] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 2), - [112] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 2), - [114] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [116] = {.entry = {.count = 1, .reusable = true}}, SHIFT(70), - [118] = {.entry = {.count = 1, .reusable = false}}, SHIFT(70), - [120] = {.entry = {.count = 1, .reusable = true}}, SHIFT(68), - [122] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_variable, 3), - [124] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_variable, 3), - [126] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parenthesized_expression, 3), - [128] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parenthesized_expression, 3), - [130] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_unary_expression, 2), - [132] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_unary_expression, 2), - [134] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_expression, 1), - [136] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_expression, 1), - [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_limiting_menu_display, 2), - [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_limiting_menu_display, 2), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [144] = {.entry = {.count = 1, .reusable = false}}, SHIFT(24), - [146] = {.entry = {.count = 1, .reusable = false}}, SHIFT(96), - [148] = {.entry = {.count = 1, .reusable = false}}, SHIFT(123), - [150] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [152] = {.entry = {.count = 1, .reusable = false}}, SHIFT(77), - [154] = {.entry = {.count = 1, .reusable = false}}, SHIFT(113), - [156] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), - [158] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), - [160] = {.entry = {.count = 1, .reusable = false}}, SHIFT(135), - [162] = {.entry = {.count = 1, .reusable = false}}, SHIFT(4), - [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), - [166] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [168] = {.entry = {.count = 1, .reusable = true}}, SHIFT(5), - [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 4), - [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 4), - [174] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_dependencies, 3), - [176] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_dependencies, 3), - [178] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 3), - [180] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 3), - [182] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 3), - [184] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 3), - [186] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 3), - [188] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 3), - [190] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 3), - [192] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 3), - [194] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 5), - [196] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 5), - [198] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reverse_dependencies, 3), - [200] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reverse_dependencies, 3), - [202] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_weak_reverse_dependencies, 3), - [204] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_weak_reverse_dependencies, 3), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_input_prompt, 4), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_input_prompt, 4), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_default_value, 4), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_default_value, 4), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition_default, 4), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition_default, 4), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_help_text, 2), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_help_text, 2), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_reverse_dependencies, 4), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_reverse_dependencies, 4), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_weak_reverse_dependencies, 4), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_weak_reverse_dependencies, 4), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_numerical_ranges, 4), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_numerical_ranges, 4), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_type_definition, 2), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_type_definition, 2), - [238] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [240] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), - [242] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(116), - [245] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(115), - [248] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(21), - [251] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(119), - [254] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(120), - [257] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(87), - [260] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_configuration_repeat1, 2), SHIFT_REPEAT(121), - [263] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 1), - [265] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), - [267] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [269] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [271] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_configuration, 2), - [273] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [275] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 3, .production_id = 3), - [277] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 3, .production_id = 3), - [279] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 5, .production_id = 1), - [281] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 5, .production_id = 1), - [283] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 5, .production_id = 1), - [285] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 5, .production_id = 1), - [287] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_if, 4, .production_id = 3), - [289] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_if, 4, .production_id = 3), - [291] = {.entry = {.count = 1, .reusable = false}}, SHIFT(86), - [293] = {.entry = {.count = 1, .reusable = true}}, SHIFT(28), - [295] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [297] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [299] = {.entry = {.count = 1, .reusable = false}}, SHIFT(67), - [301] = {.entry = {.count = 1, .reusable = false}}, SHIFT(66), - [303] = {.entry = {.count = 1, .reusable = false}}, SHIFT_EXTRA(), - [305] = {.entry = {.count = 1, .reusable = true}}, SHIFT(27), - [307] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 4, .production_id = 1), - [309] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 4, .production_id = 1), - [311] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_choice, 4), - [313] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_choice, 4), - [315] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu, 3, .production_id = 1), - [317] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu, 3, .production_id = 1), - [319] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source, 2), - [321] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_source, 2), - [323] = {.entry = {.count = 1, .reusable = true}}, SHIFT(19), - [325] = {.entry = {.count = 1, .reusable = true}}, SHIFT(72), - [327] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [329] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [331] = {.entry = {.count = 1, .reusable = true}}, SHIFT(81), - [333] = {.entry = {.count = 1, .reusable = true}}, SHIFT(82), - [335] = {.entry = {.count = 1, .reusable = true}}, SHIFT(73), - [337] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [339] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [341] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_clause, 2), - [343] = {.entry = {.count = 1, .reusable = true}}, SHIFT(16), - [345] = {.entry = {.count = 1, .reusable = true}}, SHIFT(26), - [347] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_mainmenu, 2, .production_id = 1), - [349] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_mainmenu, 2, .production_id = 1), - [351] = {.entry = {.count = 1, .reusable = false}}, SHIFT(103), - [353] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), - [355] = {.entry = {.count = 1, .reusable = false}}, SHIFT(100), - [357] = {.entry = {.count = 1, .reusable = false}}, SHIFT(102), - [359] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), - [361] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(94), - [364] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(95), - [367] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 2), SHIFT_REPEAT(102), - [370] = {.entry = {.count = 1, .reusable = true}}, SHIFT(41), - [372] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [374] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [376] = {.entry = {.count = 1, .reusable = false}}, SHIFT(12), - [378] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), - [380] = {.entry = {.count = 1, .reusable = false}}, SHIFT(79), - [382] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), - [384] = {.entry = {.count = 1, .reusable = false}}, SHIFT(63), - [386] = {.entry = {.count = 1, .reusable = false}}, SHIFT(95), - [388] = {.entry = {.count = 1, .reusable = false}}, SHIFT(104), - [390] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), - [392] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_macro_variable_repeat1, 1, .production_id = 2), - [394] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), - [396] = {.entry = {.count = 1, .reusable = true}}, SHIFT(33), - [398] = {.entry = {.count = 1, .reusable = true}}, SHIFT(29), - [400] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), - [402] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), - [404] = {.entry = {.count = 1, .reusable = true}}, SHIFT(112), - [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), - [408] = {.entry = {.count = 1, .reusable = true}}, SHIFT(23), - [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(22), - [412] = {.entry = {.count = 1, .reusable = true}}, SHIFT(31), - [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [418] = {.entry = {.count = 1, .reusable = true}}, SHIFT(3), - [420] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [422] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [424] = {.entry = {.count = 1, .reusable = true}}, SHIFT(107), - [426] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [428] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [430] = {.entry = {.count = 1, .reusable = true}}, SHIFT(39), - [432] = {.entry = {.count = 1, .reusable = true}}, SHIFT(38), - [434] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [436] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(111), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(124), - [444] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), - [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(110), - [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(37), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), + [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), }; enum ts_external_scanner_symbol_identifiers { diff --git a/src/tree_sitter/parser.h b/src/tree_sitter/parser.h index d210325..17b4fde 100644 --- a/src/tree_sitter/parser.h +++ b/src/tree_sitter/parser.h @@ -129,9 +129,16 @@ struct TSLanguage { * Lexer Macros */ +#ifdef _MSC_VER +#define UNUSED __pragma(warning(suppress : 4101)) +#else +#define UNUSED __attribute__((unused)) +#endif + #define START_LEXER() \ bool result = false; \ bool skip = false; \ + UNUSED \ bool eof = false; \ int32_t lookahead; \ goto start; \ @@ -139,8 +146,7 @@ struct TSLanguage { lexer->advance(lexer, skip); \ start: \ skip = false; \ - lookahead = lexer->lookahead; \ - eof = lexer->eof(lexer); + lookahead = lexer->lookahead; #define ADVANCE(state_value) \ { \