diff --git a/example-file.jelly b/example-file.jelly index 5f31c7f..ea99175 100644 --- a/example-file.jelly +++ b/example-file.jelly @@ -1,3 +1 @@ - repeat 1 { - var x = RepeatIndex - } +wait(seconds:3) diff --git a/grammar.js b/grammar.js index 7ea531d..93894cb 100644 --- a/grammar.js +++ b/grammar.js @@ -161,7 +161,7 @@ module.exports = grammar({ seq( field('parameter_name', $.identifier), ':', - /\s+/ + optional(/\s+/) ) ), field('item', $._primitive), diff --git a/src/grammar.json b/src/grammar.json index 03582c0..fd6485c 100644 --- a/src/grammar.json +++ b/src/grammar.json @@ -736,8 +736,16 @@ "value": ":" }, { - "type": "PATTERN", - "value": "\\s+" + "type": "CHOICE", + "members": [ + { + "type": "PATTERN", + "value": "\\s+" + }, + { + "type": "BLANK" + } + ] } ] }, diff --git a/src/parser.c b/src/parser.c index 8bde76b..9dac593 100644 --- a/src/parser.c +++ b/src/parser.c @@ -6,7 +6,7 @@ #endif #define LANGUAGE_VERSION 14 -#define STATE_COUNT 343 +#define STATE_COUNT 347 #define LARGE_STATE_COUNT 2 #define SYMBOL_COUNT 92 #define ALIAS_COUNT 0 @@ -14,7 +14,7 @@ #define EXTERNAL_TOKEN_COUNT 1 #define FIELD_COUNT 22 #define MAX_ALIAS_SEQUENCE_LENGTH 10 -#define PRODUCTION_ID_COUNT 50 +#define PRODUCTION_ID_COUNT 51 enum { anon_sym_COLON = 1, @@ -745,33 +745,34 @@ static const TSFieldMapSlice ts_field_map_slices[PRODUCTION_ID_COUNT] = { [20] = {.index = 34, .length = 2}, [21] = {.index = 36, .length = 1}, [22] = {.index = 37, .length = 2}, - [23] = {.index = 39, .length = 1}, - [24] = {.index = 40, .length = 3}, - [25] = {.index = 43, .length = 3}, - [26] = {.index = 46, .length = 3}, - [27] = {.index = 49, .length = 3}, - [28] = {.index = 52, .length = 3}, - [29] = {.index = 55, .length = 2}, + [23] = {.index = 39, .length = 2}, + [24] = {.index = 41, .length = 1}, + [25] = {.index = 42, .length = 3}, + [26] = {.index = 45, .length = 3}, + [27] = {.index = 48, .length = 3}, + [28] = {.index = 51, .length = 3}, + [29] = {.index = 54, .length = 3}, [30] = {.index = 57, .length = 2}, [31] = {.index = 59, .length = 2}, - [32] = {.index = 61, .length = 1}, - [33] = {.index = 62, .length = 2}, - [34] = {.index = 64, .length = 3}, - [35] = {.index = 67, .length = 3}, - [36] = {.index = 70, .length = 3}, - [37] = {.index = 73, .length = 3}, - [38] = {.index = 76, .length = 2}, + [32] = {.index = 61, .length = 2}, + [33] = {.index = 63, .length = 1}, + [34] = {.index = 64, .length = 2}, + [35] = {.index = 66, .length = 3}, + [36] = {.index = 69, .length = 3}, + [37] = {.index = 72, .length = 3}, + [38] = {.index = 75, .length = 3}, [39] = {.index = 78, .length = 2}, - [40] = {.index = 80, .length = 4}, - [41] = {.index = 84, .length = 4}, - [42] = {.index = 88, .length = 4}, - [43] = {.index = 92, .length = 4}, - [44] = {.index = 96, .length = 4}, - [45] = {.index = 100, .length = 2}, + [40] = {.index = 80, .length = 2}, + [41] = {.index = 82, .length = 4}, + [42] = {.index = 86, .length = 4}, + [43] = {.index = 90, .length = 4}, + [44] = {.index = 94, .length = 4}, + [45] = {.index = 98, .length = 4}, [46] = {.index = 102, .length = 2}, - [47] = {.index = 104, .length = 5}, - [48] = {.index = 109, .length = 5}, - [49] = {.index = 114, .length = 2}, + [47] = {.index = 104, .length = 2}, + [48] = {.index = 106, .length = 5}, + [49] = {.index = 111, .length = 5}, + [50] = {.index = 116, .length = 2}, }; static const TSFieldMapEntry ts_field_map_entries[] = { @@ -837,107 +838,110 @@ static const TSFieldMapEntry ts_field_map_entries[] = { {field_name, 0}, {field_value, 4}, [39] = + {field_item, 2}, + {field_parameter_name, 0}, + [41] = {field_name, 2}, - [40] = + [42] = {field_amount, 2}, {field_body, 4}, {field_magic_variable, 5}, - [43] = + [45] = {field_body, 4}, {field_magic_variable, 5}, {field_variable, 2}, - [46] = + [48] = {field_body, 4}, {field_else, 5}, {field_primary, 2}, - [49] = + [51] = {field_body, 4}, {field_magic_variable, 5}, {field_primary, 2}, - [52] = + [54] = {field_body, 4}, {field_magic_variable, 5}, {field_prompt, 2}, - [55] = + [57] = {field_type, 1}, {field_value, 3}, - [57] = + [59] = {field_item, 3}, {field_parameter_name, 0}, - [59] = + [61] = {field_body, 6}, {field_primary, 2}, - [61] = + [63] = {field_body, 1}, - [62] = + [64] = {field_name, 2}, {field_value, 6}, - [64] = + [66] = {field_body, 6}, {field_else, 7}, {field_primary, 2}, - [67] = + [69] = {field_body, 6}, {field_magic_variable, 7}, {field_primary, 2}, - [70] = + [72] = {field_body, 7}, {field_primary, 2}, {field_secondary, 5}, - [73] = + [75] = {field_body, 7}, {field_operator, 4}, {field_primary, 2}, - [76] = + [78] = {field_body, 1}, {field_magic_variable, 2}, - [78] = + [80] = {field_body, 2}, {field_case, 1}, - [80] = + [82] = {field_body, 7}, {field_else, 8}, {field_primary, 2}, {field_secondary, 5}, - [84] = + [86] = {field_body, 7}, {field_magic_variable, 8}, {field_primary, 2}, {field_secondary, 5}, - [88] = + [90] = {field_body, 7}, {field_else, 8}, {field_operator, 4}, {field_primary, 2}, - [92] = + [94] = {field_body, 7}, {field_magic_variable, 8}, {field_operator, 4}, {field_primary, 2}, - [96] = + [98] = {field_body, 8}, {field_operator, 4}, {field_primary, 2}, {field_secondary, 6}, - [100] = + [102] = {field_body, 3}, {field_case, 2}, - [102] = + [104] = {field_body, 3}, {field_case, 1}, - [104] = + [106] = {field_body, 8}, {field_else, 9}, {field_operator, 4}, {field_primary, 2}, {field_secondary, 6}, - [109] = + [111] = {field_body, 8}, {field_magic_variable, 9}, {field_operator, 4}, {field_primary, 2}, {field_secondary, 6}, - [114] = + [116] = {field_body, 4}, {field_case, 2}, }; @@ -955,8 +959,8 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [1] = 1, [2] = 2, [3] = 3, - [4] = 3, - [5] = 5, + [4] = 4, + [5] = 4, [6] = 6, [7] = 7, [8] = 6, @@ -964,231 +968,231 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [10] = 6, [11] = 7, [12] = 7, - [13] = 6, - [14] = 14, + [13] = 13, + [14] = 6, [15] = 15, [16] = 16, [17] = 17, [18] = 18, - [19] = 15, + [19] = 16, [20] = 20, [21] = 21, [22] = 22, - [23] = 20, - [24] = 21, - [25] = 17, - [26] = 16, - [27] = 27, - [28] = 22, - [29] = 29, - [30] = 29, - [31] = 27, + [23] = 21, + [24] = 22, + [25] = 25, + [26] = 26, + [27] = 25, + [28] = 17, + [29] = 20, + [30] = 15, + [31] = 26, [32] = 32, [33] = 33, [34] = 34, - [35] = 35, + [35] = 33, [36] = 36, - [37] = 33, - [38] = 38, - [39] = 34, + [37] = 37, + [38] = 37, + [39] = 39, [40] = 40, - [41] = 40, - [42] = 42, - [43] = 35, - [44] = 36, + [41] = 41, + [42] = 32, + [43] = 43, + [44] = 39, [45] = 18, [46] = 46, - [47] = 47, - [48] = 32, - [49] = 49, - [50] = 38, - [51] = 36, - [52] = 52, + [47] = 43, + [48] = 48, + [49] = 48, + [50] = 41, + [51] = 43, + [52] = 32, [53] = 53, - [54] = 35, - [55] = 49, - [56] = 52, - [57] = 42, - [58] = 58, - [59] = 36, - [60] = 60, - [61] = 60, - [62] = 58, + [54] = 54, + [55] = 55, + [56] = 36, + [57] = 57, + [58] = 57, + [59] = 34, + [60] = 54, + [61] = 43, + [62] = 55, [63] = 53, - [64] = 35, + [64] = 32, [65] = 65, [66] = 66, - [67] = 67, + [67] = 46, [68] = 68, [69] = 69, - [70] = 70, + [70] = 68, [71] = 71, - [72] = 71, + [72] = 69, [73] = 73, [74] = 74, - [75] = 75, + [75] = 66, [76] = 76, [77] = 77, - [78] = 70, + [78] = 73, [79] = 79, [80] = 80, - [81] = 81, - [82] = 68, - [83] = 67, - [84] = 66, - [85] = 77, + [81] = 74, + [82] = 77, + [83] = 83, + [84] = 79, + [85] = 85, [86] = 86, - [87] = 79, + [87] = 80, [88] = 88, [89] = 89, [90] = 90, - [91] = 80, - [92] = 81, - [93] = 93, - [94] = 88, - [95] = 69, - [96] = 90, - [97] = 47, - [98] = 65, - [99] = 99, - [100] = 93, + [91] = 85, + [92] = 92, + [93] = 86, + [94] = 94, + [95] = 95, + [96] = 96, + [97] = 71, + [98] = 98, + [99] = 90, + [100] = 100, [101] = 101, - [102] = 102, + [102] = 96, [103] = 103, - [104] = 103, - [105] = 105, - [106] = 86, - [107] = 74, - [108] = 75, - [109] = 105, + [104] = 104, + [105] = 40, + [106] = 106, + [107] = 98, + [108] = 108, + [109] = 109, [110] = 110, - [111] = 110, - [112] = 112, - [113] = 73, - [114] = 112, - [115] = 115, - [116] = 46, - [117] = 115, - [118] = 118, - [119] = 76, - [120] = 118, - [121] = 121, - [122] = 121, - [123] = 89, - [124] = 99, - [125] = 102, - [126] = 101, + [111] = 94, + [112] = 110, + [113] = 92, + [114] = 104, + [115] = 109, + [116] = 108, + [117] = 106, + [118] = 65, + [119] = 103, + [120] = 100, + [121] = 89, + [122] = 88, + [123] = 95, + [124] = 101, + [125] = 83, + [126] = 76, [127] = 16, - [128] = 15, - [129] = 129, - [130] = 130, - [131] = 17, - [132] = 129, + [128] = 128, + [129] = 128, + [130] = 17, + [131] = 131, + [132] = 15, [133] = 133, - [134] = 130, + [134] = 133, [135] = 135, [136] = 136, - [137] = 137, + [137] = 135, [138] = 138, [139] = 135, [140] = 138, - [141] = 138, - [142] = 137, - [143] = 143, - [144] = 136, - [145] = 137, - [146] = 137, - [147] = 138, + [141] = 136, + [142] = 142, + [143] = 136, + [144] = 144, + [145] = 142, + [146] = 136, + [147] = 135, [148] = 18, [149] = 149, - [150] = 150, + [150] = 17, [151] = 151, [152] = 152, - [153] = 149, - [154] = 16, - [155] = 152, - [156] = 150, - [157] = 151, - [158] = 15, - [159] = 17, - [160] = 160, - [161] = 161, - [162] = 47, - [163] = 46, - [164] = 18, - [165] = 93, + [153] = 153, + [154] = 154, + [155] = 155, + [156] = 155, + [157] = 152, + [158] = 151, + [159] = 154, + [160] = 15, + [161] = 16, + [162] = 46, + [163] = 163, + [164] = 40, + [165] = 92, [166] = 166, - [167] = 89, - [168] = 69, - [169] = 86, + [167] = 18, + [168] = 168, + [169] = 96, [170] = 170, - [171] = 171, - [172] = 89, - [173] = 173, - [174] = 46, - [175] = 86, - [176] = 176, - [177] = 69, - [178] = 47, - [179] = 93, - [180] = 180, + [171] = 71, + [172] = 66, + [173] = 92, + [174] = 71, + [175] = 40, + [176] = 96, + [177] = 66, + [178] = 178, + [179] = 179, + [180] = 46, [181] = 181, [182] = 182, [183] = 183, [184] = 184, [185] = 185, - [186] = 185, + [186] = 186, [187] = 187, [188] = 188, - [189] = 187, - [190] = 187, - [191] = 191, - [192] = 192, - [193] = 188, - [194] = 187, - [195] = 188, - [196] = 188, - [197] = 191, - [198] = 191, - [199] = 192, - [200] = 191, - [201] = 192, - [202] = 192, - [203] = 203, - [204] = 204, - [205] = 203, - [206] = 206, - [207] = 206, + [189] = 189, + [190] = 190, + [191] = 190, + [192] = 190, + [193] = 193, + [194] = 194, + [195] = 195, + [196] = 196, + [197] = 196, + [198] = 194, + [199] = 195, + [200] = 196, + [201] = 194, + [202] = 196, + [203] = 195, + [204] = 195, + [205] = 193, + [206] = 194, + [207] = 190, [208] = 208, - [209] = 206, - [210] = 206, - [211] = 204, + [209] = 209, + [210] = 210, + [211] = 208, [212] = 212, - [213] = 213, - [214] = 214, - [215] = 215, - [216] = 216, + [213] = 210, + [214] = 210, + [215] = 212, + [216] = 210, [217] = 217, [218] = 218, - [219] = 217, - [220] = 213, + [219] = 219, + [220] = 220, [221] = 221, - [222] = 214, - [223] = 212, - [224] = 221, - [225] = 225, - [226] = 218, + [222] = 222, + [223] = 223, + [224] = 218, + [225] = 217, + [226] = 221, [227] = 227, - [228] = 228, - [229] = 229, - [230] = 229, + [228] = 223, + [229] = 227, + [230] = 220, [231] = 231, [232] = 232, [233] = 233, [234] = 234, [235] = 235, [236] = 236, - [237] = 237, + [237] = 236, [238] = 238, [239] = 239, [240] = 240, @@ -1199,101 +1203,105 @@ static const TSStateId ts_primary_state_ids[STATE_COUNT] = { [245] = 245, [246] = 246, [247] = 247, - [248] = 228, + [248] = 248, [249] = 249, [250] = 250, [251] = 251, [252] = 252, [253] = 253, - [254] = 254, + [254] = 239, [255] = 255, [256] = 256, - [257] = 257, - [258] = 232, - [259] = 242, - [260] = 237, - [261] = 236, - [262] = 233, - [263] = 263, - [264] = 257, - [265] = 252, - [266] = 252, + [257] = 235, + [258] = 258, + [259] = 259, + [260] = 260, + [261] = 261, + [262] = 262, + [263] = 245, + [264] = 260, + [265] = 262, + [266] = 266, [267] = 267, - [268] = 267, - [269] = 253, - [270] = 245, - [271] = 246, + [268] = 268, + [269] = 269, + [270] = 270, + [271] = 271, [272] = 272, - [273] = 231, - [274] = 256, + [273] = 269, + [274] = 274, [275] = 275, - [276] = 250, - [277] = 263, - [278] = 275, - [279] = 279, - [280] = 280, - [281] = 279, - [282] = 244, - [283] = 272, + [276] = 276, + [277] = 276, + [278] = 278, + [279] = 244, + [280] = 238, + [281] = 281, + [282] = 281, + [283] = 234, [284] = 284, - [285] = 280, - [286] = 286, - [287] = 287, - [288] = 235, + [285] = 284, + [286] = 270, + [287] = 233, + [288] = 261, [289] = 289, - [290] = 290, - [291] = 243, - [292] = 292, - [293] = 293, - [294] = 255, - [295] = 251, - [296] = 254, - [297] = 249, - [298] = 241, - [299] = 240, - [300] = 239, - [301] = 238, - [302] = 234, - [303] = 252, - [304] = 247, - [305] = 305, - [306] = 306, - [307] = 307, - [308] = 308, - [309] = 309, + [290] = 266, + [291] = 268, + [292] = 271, + [293] = 289, + [294] = 272, + [295] = 241, + [296] = 246, + [297] = 281, + [298] = 278, + [299] = 281, + [300] = 243, + [301] = 256, + [302] = 275, + [303] = 274, + [304] = 252, + [305] = 251, + [306] = 248, + [307] = 247, + [308] = 242, + [309] = 240, [310] = 310, [311] = 311, - [312] = 309, - [313] = 305, - [314] = 314, + [312] = 312, + [313] = 313, + [314] = 312, [315] = 315, [316] = 316, - [317] = 309, - [318] = 309, - [319] = 319, - [320] = 316, + [317] = 317, + [318] = 315, + [319] = 313, + [320] = 320, [321] = 321, [322] = 322, - [323] = 306, - [324] = 307, - [325] = 321, - [326] = 326, - [327] = 315, + [323] = 313, + [324] = 313, + [325] = 322, + [326] = 311, + [327] = 316, [328] = 328, - [329] = 326, + [329] = 329, [330] = 330, - [331] = 331, - [332] = 330, + [331] = 317, + [332] = 332, [333] = 330, - [334] = 330, - [335] = 322, - [336] = 314, - [337] = 319, + [334] = 334, + [335] = 321, + [336] = 334, + [337] = 334, [338] = 338, - [339] = 339, - [340] = 331, - [341] = 311, - [342] = 308, + [339] = 332, + [340] = 340, + [341] = 310, + [342] = 329, + [343] = 328, + [344] = 334, + [345] = 345, + [346] = 338, }; static bool ts_lex(TSLexer *lexer, TSStateId state) { @@ -1420,25 +1428,25 @@ static bool ts_lex(TSLexer *lexer, TSStateId state) { case 8: if (lookahead == '"') ADVANCE(114); if (lookahead == '$') ADVANCE(25); - if (lookahead == '.') ADVANCE(28); - if (lookahead == 'a') ADVANCE(22); - if (lookahead == 'g') ADVANCE(20); - if (lookahead == 'k') ADVANCE(21); - if (lookahead == '+' || - lookahead == '-') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(8) - if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 9: if (lookahead == '"') ADVANCE(6); if (lookahead == '$') ADVANCE(25); + if (lookahead == '.') ADVANCE(28); + if (lookahead == 'a') ADVANCE(22); + if (lookahead == 'g') ADVANCE(20); + if (lookahead == 'k') ADVANCE(21); + if (lookahead == '+' || + lookahead == '-') ADVANCE(14); if (lookahead == '\t' || lookahead == '\n' || lookahead == '\r' || lookahead == ' ') SKIP(9) + if (('0' <= lookahead && lookahead <= '9')) ADVANCE(110); END_STATE(); case 10: if (lookahead == '#') ADVANCE(35); @@ -2355,55 +2363,55 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [17] = {.lex_state = 29}, [18] = {.lex_state = 29}, [19] = {.lex_state = 10}, - [20] = {.lex_state = 11}, - [21] = {.lex_state = 30}, + [20] = {.lex_state = 30}, + [21] = {.lex_state = 11}, [22] = {.lex_state = 30}, [23] = {.lex_state = 30}, [24] = {.lex_state = 11}, - [25] = {.lex_state = 10}, - [26] = {.lex_state = 10}, - [27] = {.lex_state = 30}, - [28] = {.lex_state = 11}, + [25] = {.lex_state = 30}, + [26] = {.lex_state = 30}, + [27] = {.lex_state = 11}, + [28] = {.lex_state = 10}, [29] = {.lex_state = 11}, - [30] = {.lex_state = 30}, + [30] = {.lex_state = 10}, [31] = {.lex_state = 11}, - [32] = {.lex_state = 10}, + [32] = {.lex_state = 30}, [33] = {.lex_state = 10}, [34] = {.lex_state = 29}, - [35] = {.lex_state = 30}, - [36] = {.lex_state = 30}, - [37] = {.lex_state = 29}, + [35] = {.lex_state = 29}, + [36] = {.lex_state = 29}, + [37] = {.lex_state = 10}, [38] = {.lex_state = 29}, - [39] = {.lex_state = 10}, + [39] = {.lex_state = 29}, [40] = {.lex_state = 29}, [41] = {.lex_state = 10}, - [42] = {.lex_state = 29}, + [42] = {.lex_state = 11}, [43] = {.lex_state = 11}, - [44] = {.lex_state = 11}, + [44] = {.lex_state = 10}, [45] = {.lex_state = 10}, [46] = {.lex_state = 29}, - [47] = {.lex_state = 29}, + [47] = {.lex_state = 30}, [48] = {.lex_state = 29}, - [49] = {.lex_state = 29}, - [50] = {.lex_state = 10}, + [49] = {.lex_state = 10}, + [50] = {.lex_state = 29}, [51] = {.lex_state = 10}, - [52] = {.lex_state = 2}, - [53] = {.lex_state = 10}, - [54] = {.lex_state = 10}, - [55] = {.lex_state = 10}, - [56] = {.lex_state = 2}, - [57] = {.lex_state = 10}, - [58] = {.lex_state = 29}, - [59] = {.lex_state = 29}, - [60] = {.lex_state = 10}, + [52] = {.lex_state = 29}, + [53] = {.lex_state = 29}, + [54] = {.lex_state = 2}, + [55] = {.lex_state = 29}, + [56] = {.lex_state = 10}, + [57] = {.lex_state = 29}, + [58] = {.lex_state = 10}, + [59] = {.lex_state = 10}, + [60] = {.lex_state = 2}, [61] = {.lex_state = 29}, [62] = {.lex_state = 10}, - [63] = {.lex_state = 29}, - [64] = {.lex_state = 29}, + [63] = {.lex_state = 10}, + [64] = {.lex_state = 10}, [65] = {.lex_state = 10}, [66] = {.lex_state = 29}, [67] = {.lex_state = 10}, - [68] = {.lex_state = 10}, + [68] = {.lex_state = 29}, [69] = {.lex_state = 29}, [70] = {.lex_state = 10}, [71] = {.lex_state = 29}, @@ -2411,80 +2419,80 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [73] = {.lex_state = 10}, [74] = {.lex_state = 10}, [75] = {.lex_state = 10}, - [76] = {.lex_state = 10}, + [76] = {.lex_state = 29}, [77] = {.lex_state = 10}, [78] = {.lex_state = 29}, [79] = {.lex_state = 10}, [80] = {.lex_state = 10}, - [81] = {.lex_state = 10}, + [81] = {.lex_state = 29}, [82] = {.lex_state = 29}, [83] = {.lex_state = 29}, - [84] = {.lex_state = 10}, - [85] = {.lex_state = 29}, - [86] = {.lex_state = 29}, + [84] = {.lex_state = 29}, + [85] = {.lex_state = 10}, + [86] = {.lex_state = 10}, [87] = {.lex_state = 29}, - [88] = {.lex_state = 10}, + [88] = {.lex_state = 29}, [89] = {.lex_state = 29}, [90] = {.lex_state = 10}, [91] = {.lex_state = 29}, [92] = {.lex_state = 29}, [93] = {.lex_state = 29}, - [94] = {.lex_state = 29}, + [94] = {.lex_state = 10}, [95] = {.lex_state = 10}, - [96] = {.lex_state = 29}, + [96] = {.lex_state = 10}, [97] = {.lex_state = 10}, [98] = {.lex_state = 29}, [99] = {.lex_state = 29}, [100] = {.lex_state = 10}, - [101] = {.lex_state = 29}, - [102] = {.lex_state = 10}, + [101] = {.lex_state = 10}, + [102] = {.lex_state = 29}, [103] = {.lex_state = 10}, [104] = {.lex_state = 29}, [105] = {.lex_state = 10}, [106] = {.lex_state = 10}, - [107] = {.lex_state = 29}, - [108] = {.lex_state = 29}, - [109] = {.lex_state = 29}, - [110] = {.lex_state = 29}, - [111] = {.lex_state = 10}, - [112] = {.lex_state = 10}, - [113] = {.lex_state = 29}, - [114] = {.lex_state = 29}, + [107] = {.lex_state = 10}, + [108] = {.lex_state = 10}, + [109] = {.lex_state = 10}, + [110] = {.lex_state = 10}, + [111] = {.lex_state = 29}, + [112] = {.lex_state = 29}, + [113] = {.lex_state = 10}, + [114] = {.lex_state = 10}, [115] = {.lex_state = 29}, - [116] = {.lex_state = 10}, - [117] = {.lex_state = 10}, - [118] = {.lex_state = 10}, + [116] = {.lex_state = 29}, + [117] = {.lex_state = 29}, + [118] = {.lex_state = 29}, [119] = {.lex_state = 29}, [120] = {.lex_state = 29}, - [121] = {.lex_state = 29}, + [121] = {.lex_state = 10}, [122] = {.lex_state = 10}, - [123] = {.lex_state = 10}, - [124] = {.lex_state = 10}, - [125] = {.lex_state = 29}, + [123] = {.lex_state = 29}, + [124] = {.lex_state = 29}, + [125] = {.lex_state = 10}, [126] = {.lex_state = 10}, [127] = {.lex_state = 4}, - [128] = {.lex_state = 4}, + [128] = {.lex_state = 5}, [129] = {.lex_state = 5}, - [130] = {.lex_state = 5}, - [131] = {.lex_state = 4}, - [132] = {.lex_state = 5}, + [130] = {.lex_state = 4}, + [131] = {.lex_state = 5}, + [132] = {.lex_state = 4}, [133] = {.lex_state = 5}, [134] = {.lex_state = 5}, - [135] = {.lex_state = 4}, - [136] = {.lex_state = 4}, + [135] = {.lex_state = 5}, + [136] = {.lex_state = 5}, [137] = {.lex_state = 5}, - [138] = {.lex_state = 5}, - [139] = {.lex_state = 4}, - [140] = {.lex_state = 5}, + [138] = {.lex_state = 4}, + [139] = {.lex_state = 5}, + [140] = {.lex_state = 4}, [141] = {.lex_state = 5}, - [142] = {.lex_state = 5}, + [142] = {.lex_state = 4}, [143] = {.lex_state = 5}, - [144] = {.lex_state = 4}, - [145] = {.lex_state = 5}, + [144] = {.lex_state = 5}, + [145] = {.lex_state = 4}, [146] = {.lex_state = 5}, [147] = {.lex_state = 5}, [148] = {.lex_state = 4}, - [149] = {.lex_state = 5}, + [149] = {.lex_state = 4}, [150] = {.lex_state = 5}, [151] = {.lex_state = 5}, [152] = {.lex_state = 5}, @@ -2496,188 +2504,192 @@ static const TSLexMode ts_lex_modes[STATE_COUNT] = { [158] = {.lex_state = 5}, [159] = {.lex_state = 5}, [160] = {.lex_state = 5}, - [161] = {.lex_state = 4}, + [161] = {.lex_state = 5}, [162] = {.lex_state = 4}, [163] = {.lex_state = 4}, - [164] = {.lex_state = 5}, + [164] = {.lex_state = 4}, [165] = {.lex_state = 4}, [166] = {.lex_state = 4}, - [167] = {.lex_state = 4}, + [167] = {.lex_state = 5}, [168] = {.lex_state = 4}, [169] = {.lex_state = 4}, [170] = {.lex_state = 4}, [171] = {.lex_state = 4}, - [172] = {.lex_state = 5}, - [173] = {.lex_state = 4}, + [172] = {.lex_state = 4}, + [173] = {.lex_state = 5}, [174] = {.lex_state = 5}, [175] = {.lex_state = 5}, [176] = {.lex_state = 5}, [177] = {.lex_state = 5}, - [178] = {.lex_state = 5}, - [179] = {.lex_state = 5}, + [178] = {.lex_state = 4}, + [179] = {.lex_state = 4}, [180] = {.lex_state = 5}, [181] = {.lex_state = 5}, - [182] = {.lex_state = 5}, + [182] = {.lex_state = 4}, [183] = {.lex_state = 5}, [184] = {.lex_state = 5}, - [185] = {.lex_state = 8, .external_lex_state = 1}, - [186] = {.lex_state = 9, .external_lex_state = 1}, - [187] = {.lex_state = 8, .external_lex_state = 1}, - [188] = {.lex_state = 9, .external_lex_state = 1}, - [189] = {.lex_state = 8, .external_lex_state = 1}, - [190] = {.lex_state = 8, .external_lex_state = 1}, + [185] = {.lex_state = 5}, + [186] = {.lex_state = 5}, + [187] = {.lex_state = 5}, + [188] = {.lex_state = 5}, + [189] = {.lex_state = 5}, + [190] = {.lex_state = 9, .external_lex_state = 1}, [191] = {.lex_state = 9, .external_lex_state = 1}, - [192] = {.lex_state = 8, .external_lex_state = 1}, + [192] = {.lex_state = 9, .external_lex_state = 1}, [193] = {.lex_state = 9, .external_lex_state = 1}, [194] = {.lex_state = 8, .external_lex_state = 1}, [195] = {.lex_state = 9, .external_lex_state = 1}, - [196] = {.lex_state = 9, .external_lex_state = 1}, - [197] = {.lex_state = 9, .external_lex_state = 1}, - [198] = {.lex_state = 9, .external_lex_state = 1}, - [199] = {.lex_state = 8, .external_lex_state = 1}, - [200] = {.lex_state = 9, .external_lex_state = 1}, + [196] = {.lex_state = 8, .external_lex_state = 1}, + [197] = {.lex_state = 8, .external_lex_state = 1}, + [198] = {.lex_state = 8, .external_lex_state = 1}, + [199] = {.lex_state = 9, .external_lex_state = 1}, + [200] = {.lex_state = 8, .external_lex_state = 1}, [201] = {.lex_state = 8, .external_lex_state = 1}, [202] = {.lex_state = 8, .external_lex_state = 1}, - [203] = {.lex_state = 0}, - [204] = {.lex_state = 0}, - [205] = {.lex_state = 0}, - [206] = {.lex_state = 8}, - [207] = {.lex_state = 8}, + [203] = {.lex_state = 9, .external_lex_state = 1}, + [204] = {.lex_state = 9, .external_lex_state = 1}, + [205] = {.lex_state = 8, .external_lex_state = 1}, + [206] = {.lex_state = 8, .external_lex_state = 1}, + [207] = {.lex_state = 9, .external_lex_state = 1}, [208] = {.lex_state = 0}, - [209] = {.lex_state = 8}, - [210] = {.lex_state = 8}, + [209] = {.lex_state = 0}, + [210] = {.lex_state = 9}, [211] = {.lex_state = 0}, - [212] = {.lex_state = 9, .external_lex_state = 1}, - [213] = {.lex_state = 8, .external_lex_state = 1}, - [214] = {.lex_state = 1}, - [215] = {.lex_state = 29}, - [216] = {.lex_state = 29}, + [212] = {.lex_state = 0}, + [213] = {.lex_state = 9}, + [214] = {.lex_state = 9}, + [215] = {.lex_state = 0}, + [216] = {.lex_state = 9}, [217] = {.lex_state = 2}, - [218] = {.lex_state = 1}, - [219] = {.lex_state = 2}, - [220] = {.lex_state = 9, .external_lex_state = 1}, - [221] = {.lex_state = 9, .external_lex_state = 1}, + [218] = {.lex_state = 9, .external_lex_state = 1}, + [219] = {.lex_state = 29}, + [220] = {.lex_state = 8, .external_lex_state = 1}, + [221] = {.lex_state = 1}, [222] = {.lex_state = 1}, - [223] = {.lex_state = 8, .external_lex_state = 1}, + [223] = {.lex_state = 1}, [224] = {.lex_state = 8, .external_lex_state = 1}, - [225] = {.lex_state = 29}, + [225] = {.lex_state = 2}, [226] = {.lex_state = 1}, - [227] = {.lex_state = 1}, - [228] = {.lex_state = 27}, - [229] = {.lex_state = 0}, - [230] = {.lex_state = 0}, - [231] = {.lex_state = 2}, + [227] = {.lex_state = 8, .external_lex_state = 1}, + [228] = {.lex_state = 1}, + [229] = {.lex_state = 9, .external_lex_state = 1}, + [230] = {.lex_state = 9, .external_lex_state = 1}, + [231] = {.lex_state = 29}, [232] = {.lex_state = 29}, - [233] = {.lex_state = 27}, - [234] = {.lex_state = 27}, + [233] = {.lex_state = 0}, + [234] = {.lex_state = 0}, [235] = {.lex_state = 27}, - [236] = {.lex_state = 0}, - [237] = {.lex_state = 0}, + [236] = {.lex_state = 27}, + [237] = {.lex_state = 27}, [238] = {.lex_state = 2}, - [239] = {.lex_state = 2}, - [240] = {.lex_state = 2}, + [239] = {.lex_state = 29}, + [240] = {.lex_state = 0}, [241] = {.lex_state = 2}, - [242] = {.lex_state = 27}, + [242] = {.lex_state = 0}, [243] = {.lex_state = 27}, - [244] = {.lex_state = 0}, - [245] = {.lex_state = 0}, - [246] = {.lex_state = 0}, + [244] = {.lex_state = 27}, + [245] = {.lex_state = 27}, + [246] = {.lex_state = 2}, [247] = {.lex_state = 2}, - [248] = {.lex_state = 27}, + [248] = {.lex_state = 2}, [249] = {.lex_state = 0}, - [250] = {.lex_state = 27}, + [250] = {.lex_state = 0}, [251] = {.lex_state = 2}, - [252] = {.lex_state = 27}, - [253] = {.lex_state = 27}, - [254] = {.lex_state = 0}, - [255] = {.lex_state = 2}, - [256] = {.lex_state = 27}, - [257] = {.lex_state = 2}, - [258] = {.lex_state = 29}, - [259] = {.lex_state = 27}, + [252] = {.lex_state = 2}, + [253] = {.lex_state = 0}, + [254] = {.lex_state = 29}, + [255] = {.lex_state = 29}, + [256] = {.lex_state = 2}, + [257] = {.lex_state = 27}, + [258] = {.lex_state = 0}, + [259] = {.lex_state = 29}, [260] = {.lex_state = 0}, [261] = {.lex_state = 0}, - [262] = {.lex_state = 27}, - [263] = {.lex_state = 0}, - [264] = {.lex_state = 2}, - [265] = {.lex_state = 27}, + [262] = {.lex_state = 0}, + [263] = {.lex_state = 27}, + [264] = {.lex_state = 0}, + [265] = {.lex_state = 0}, [266] = {.lex_state = 27}, - [267] = {.lex_state = 0}, - [268] = {.lex_state = 0}, + [267] = {.lex_state = 29}, + [268] = {.lex_state = 2}, [269] = {.lex_state = 27}, [270] = {.lex_state = 0}, [271] = {.lex_state = 0}, - [272] = {.lex_state = 2}, - [273] = {.lex_state = 2}, - [274] = {.lex_state = 27}, + [272] = {.lex_state = 0}, + [273] = {.lex_state = 27}, + [274] = {.lex_state = 0}, [275] = {.lex_state = 0}, [276] = {.lex_state = 27}, - [277] = {.lex_state = 0}, - [278] = {.lex_state = 0}, - [279] = {.lex_state = 0}, - [280] = {.lex_state = 0}, - [281] = {.lex_state = 0}, - [282] = {.lex_state = 0}, - [283] = {.lex_state = 2}, - [284] = {.lex_state = 29}, + [277] = {.lex_state = 27}, + [278] = {.lex_state = 27}, + [279] = {.lex_state = 27}, + [280] = {.lex_state = 2}, + [281] = {.lex_state = 27}, + [282] = {.lex_state = 27}, + [283] = {.lex_state = 0}, + [284] = {.lex_state = 0}, [285] = {.lex_state = 0}, [286] = {.lex_state = 0}, [287] = {.lex_state = 0}, - [288] = {.lex_state = 27}, - [289] = {.lex_state = 0}, - [290] = {.lex_state = 29}, - [291] = {.lex_state = 27}, + [288] = {.lex_state = 0}, + [289] = {.lex_state = 2}, + [290] = {.lex_state = 27}, + [291] = {.lex_state = 2}, [292] = {.lex_state = 0}, - [293] = {.lex_state = 29}, - [294] = {.lex_state = 2}, + [293] = {.lex_state = 2}, + [294] = {.lex_state = 0}, [295] = {.lex_state = 2}, - [296] = {.lex_state = 0}, - [297] = {.lex_state = 0}, - [298] = {.lex_state = 2}, - [299] = {.lex_state = 2}, - [300] = {.lex_state = 2}, + [296] = {.lex_state = 2}, + [297] = {.lex_state = 27}, + [298] = {.lex_state = 27}, + [299] = {.lex_state = 27}, + [300] = {.lex_state = 27}, [301] = {.lex_state = 2}, - [302] = {.lex_state = 27}, - [303] = {.lex_state = 27}, + [302] = {.lex_state = 0}, + [303] = {.lex_state = 0}, [304] = {.lex_state = 2}, [305] = {.lex_state = 2}, - [306] = {.lex_state = 130}, - [307] = {.lex_state = 29}, - [308] = {.lex_state = 2}, + [306] = {.lex_state = 2}, + [307] = {.lex_state = 2}, + [308] = {.lex_state = 0}, [309] = {.lex_state = 0}, - [310] = {.lex_state = 0}, - [311] = {.lex_state = 2}, - [312] = {.lex_state = 0}, - [313] = {.lex_state = 2}, - [314] = {.lex_state = 29}, - [315] = {.lex_state = 2}, - [316] = {.lex_state = 29}, - [317] = {.lex_state = 0}, - [318] = {.lex_state = 0}, + [310] = {.lex_state = 29}, + [311] = {.lex_state = 29}, + [312] = {.lex_state = 2}, + [313] = {.lex_state = 0}, + [314] = {.lex_state = 2}, + [315] = {.lex_state = 29}, + [316] = {.lex_state = 0}, + [317] = {.lex_state = 2}, + [318] = {.lex_state = 29}, [319] = {.lex_state = 0}, - [320] = {.lex_state = 29}, - [321] = {.lex_state = 8}, + [320] = {.lex_state = 2}, + [321] = {.lex_state = 2}, [322] = {.lex_state = 2}, - [323] = {.lex_state = 130}, - [324] = {.lex_state = 29}, - [325] = {.lex_state = 8}, - [326] = {.lex_state = 2}, - [327] = {.lex_state = 2}, - [328] = {.lex_state = 0}, - [329] = {.lex_state = 2}, - [330] = {.lex_state = 0}, + [323] = {.lex_state = 0}, + [324] = {.lex_state = 0}, + [325] = {.lex_state = 2}, + [326] = {.lex_state = 29}, + [327] = {.lex_state = 0}, + [328] = {.lex_state = 2}, + [329] = {.lex_state = 9}, + [330] = {.lex_state = 2}, [331] = {.lex_state = 2}, - [332] = {.lex_state = 0}, - [333] = {.lex_state = 0}, + [332] = {.lex_state = 130}, + [333] = {.lex_state = 2}, [334] = {.lex_state = 0}, [335] = {.lex_state = 2}, - [336] = {.lex_state = 29}, + [336] = {.lex_state = 0}, [337] = {.lex_state = 0}, [338] = {.lex_state = 2}, - [339] = {.lex_state = 2}, - [340] = {.lex_state = 2}, - [341] = {.lex_state = 2}, - [342] = {.lex_state = 2}, + [339] = {.lex_state = 130}, + [340] = {.lex_state = 0}, + [341] = {.lex_state = 29}, + [342] = {.lex_state = 9}, + [343] = {.lex_state = 2}, + [344] = {.lex_state = 0}, + [345] = {.lex_state = 0}, + [346] = {.lex_state = 2}, }; enum { @@ -2746,25 +2758,25 @@ static const uint16_t ts_parse_table[LARGE_STATE_COUNT][SYMBOL_COUNT] = { [sym_string_chars] = ACTIONS(1), }, [1] = { - [sym_source_file] = STATE(310), - [sym__definition] = STATE(14), - [sym_flag] = STATE(14), - [sym_import] = STATE(14), - [sym_repeat_definition] = STATE(14), - [sym_repeat_each_definition] = STATE(14), - [sym_conditional_definition] = STATE(14), - [sym_menu_definition] = STATE(14), - [sym_function_definition] = STATE(14), - [sym_macro_definition] = STATE(14), - [sym__statement] = STATE(14), - [sym_variable_declaration] = STATE(14), - [sym_set_variable] = STATE(14), - [sym_function_call] = STATE(14), - [sym_return_statement] = STATE(14), - [sym_identifier] = STATE(219), - [sym_comment] = STATE(14), - [sym_block_comment] = STATE(14), - [aux_sym_source_file_repeat1] = STATE(14), + [sym_source_file] = STATE(340), + [sym__definition] = STATE(13), + [sym_flag] = STATE(13), + [sym_import] = STATE(13), + [sym_repeat_definition] = STATE(13), + [sym_repeat_each_definition] = STATE(13), + [sym_conditional_definition] = STATE(13), + [sym_menu_definition] = STATE(13), + [sym_function_definition] = STATE(13), + [sym_macro_definition] = STATE(13), + [sym__statement] = STATE(13), + [sym_variable_declaration] = STATE(13), + [sym_set_variable] = STATE(13), + [sym_function_call] = STATE(13), + [sym_return_statement] = STATE(13), + [sym_identifier] = STATE(225), + [sym_comment] = STATE(13), + [sym_block_comment] = STATE(13), + [aux_sym_source_file_repeat1] = STATE(13), [ts_builtin_sym_end] = ACTIONS(3), [sym_flag_delimiter] = ACTIONS(5), [anon_sym_import] = ACTIONS(7), @@ -2816,7 +2828,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, STATE(217), 1, sym_identifier, - STATE(5), 17, + STATE(3), 17, sym__definition, sym_flag, sym_import, @@ -2835,39 +2847,39 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, aux_sym_source_file_repeat1, [68] = 17, - ACTIONS(59), 1, + ACTIONS(25), 1, + sym_identifier_content, + ACTIONS(31), 1, sym_flag_delimiter, - ACTIONS(62), 1, + ACTIONS(33), 1, anon_sym_import, - ACTIONS(65), 1, + ACTIONS(35), 1, anon_sym_repeat, - ACTIONS(68), 1, + ACTIONS(37), 1, anon_sym_repeatEach, - ACTIONS(71), 1, + ACTIONS(39), 1, anon_sym_if, - ACTIONS(74), 1, + ACTIONS(41), 1, anon_sym_menu, - ACTIONS(77), 1, - anon_sym_RBRACE, - ACTIONS(79), 1, - anon_sym_case, - ACTIONS(81), 1, + ACTIONS(47), 1, anon_sym_func, - ACTIONS(84), 1, + ACTIONS(49), 1, anon_sym_macro, - ACTIONS(87), 1, + ACTIONS(51), 1, anon_sym_var, - ACTIONS(90), 1, + ACTIONS(53), 1, anon_sym_return, - ACTIONS(93), 1, - sym_identifier_content, - ACTIONS(96), 1, + ACTIONS(55), 1, anon_sym_SLASH_SLASH, - ACTIONS(99), 1, + ACTIONS(57), 1, anon_sym_SLASH_STAR, + ACTIONS(59), 1, + anon_sym_RBRACE, + ACTIONS(61), 1, + anon_sym_case, STATE(217), 1, sym_identifier, - STATE(3), 17, + STATE(5), 17, sym__definition, sym_flag, sym_import, @@ -2886,35 +2898,35 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, aux_sym_source_file_repeat1, [136] = 16, - ACTIONS(93), 1, - sym_identifier_content, - ACTIONS(102), 1, + ACTIONS(65), 1, sym_flag_delimiter, - ACTIONS(105), 1, + ACTIONS(68), 1, anon_sym_import, - ACTIONS(108), 1, + ACTIONS(71), 1, anon_sym_repeat, - ACTIONS(111), 1, + ACTIONS(74), 1, anon_sym_repeatEach, - ACTIONS(114), 1, + ACTIONS(77), 1, anon_sym_if, - ACTIONS(117), 1, + ACTIONS(80), 1, anon_sym_menu, - ACTIONS(120), 1, + ACTIONS(83), 1, anon_sym_func, - ACTIONS(123), 1, + ACTIONS(86), 1, anon_sym_macro, - ACTIONS(126), 1, + ACTIONS(89), 1, anon_sym_var, - ACTIONS(129), 1, + ACTIONS(92), 1, anon_sym_return, - ACTIONS(132), 1, + ACTIONS(95), 1, + sym_identifier_content, + ACTIONS(98), 1, anon_sym_SLASH_SLASH, - ACTIONS(135), 1, + ACTIONS(101), 1, anon_sym_SLASH_STAR, - STATE(219), 1, + STATE(225), 1, sym_identifier, - ACTIONS(77), 2, + ACTIONS(63), 2, ts_builtin_sym_end, anon_sym_RBRACE, STATE(4), 17, @@ -2936,39 +2948,39 @@ static const uint16_t ts_small_parse_table[] = { sym_block_comment, aux_sym_source_file_repeat1, [202] = 17, - ACTIONS(25), 1, + ACTIONS(63), 1, + anon_sym_RBRACE, + ACTIONS(95), 1, sym_identifier_content, - ACTIONS(31), 1, + ACTIONS(104), 1, sym_flag_delimiter, - ACTIONS(33), 1, + ACTIONS(107), 1, anon_sym_import, - ACTIONS(35), 1, + ACTIONS(110), 1, anon_sym_repeat, - ACTIONS(37), 1, + ACTIONS(113), 1, anon_sym_repeatEach, - ACTIONS(39), 1, + ACTIONS(116), 1, anon_sym_if, - ACTIONS(41), 1, + ACTIONS(119), 1, anon_sym_menu, - ACTIONS(47), 1, + ACTIONS(122), 1, + anon_sym_case, + ACTIONS(124), 1, anon_sym_func, - ACTIONS(49), 1, + ACTIONS(127), 1, anon_sym_macro, - ACTIONS(51), 1, + ACTIONS(130), 1, anon_sym_var, - ACTIONS(53), 1, + ACTIONS(133), 1, anon_sym_return, - ACTIONS(55), 1, + ACTIONS(136), 1, anon_sym_SLASH_SLASH, - ACTIONS(57), 1, + ACTIONS(139), 1, anon_sym_SLASH_STAR, - ACTIONS(138), 1, - anon_sym_RBRACE, - ACTIONS(140), 1, - anon_sym_case, STATE(217), 1, sym_identifier, - STATE(3), 17, + STATE(5), 17, sym__definition, sym_flag, sym_import, @@ -3015,9 +3027,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(142), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(11), 17, + STATE(4), 17, sym__definition, sym_flag, sym_import, @@ -3064,9 +3076,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(144), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(4), 17, + STATE(6), 17, sym__definition, sym_flag, sym_import, @@ -3113,9 +3125,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(146), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(7), 17, + STATE(4), 17, sym__definition, sym_flag, sym_import, @@ -3162,9 +3174,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(148), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(4), 17, + STATE(8), 17, sym__definition, sym_flag, sym_import, @@ -3211,9 +3223,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(150), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(9), 17, + STATE(4), 17, sym__definition, sym_flag, sym_import, @@ -3260,9 +3272,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(152), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(4), 17, + STATE(10), 17, sym__definition, sym_flag, sym_import, @@ -3309,9 +3321,9 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_SLASH_STAR, ACTIONS(154), 1, anon_sym_RBRACE, - STATE(219), 1, + STATE(225), 1, sym_identifier, - STATE(4), 17, + STATE(14), 17, sym__definition, sym_flag, sym_import, @@ -3357,10 +3369,10 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_SLASH_STAR, ACTIONS(156), 1, - anon_sym_RBRACE, - STATE(219), 1, + ts_builtin_sym_end, + STATE(225), 1, sym_identifier, - STATE(12), 17, + STATE(4), 17, sym__definition, sym_flag, sym_import, @@ -3406,8 +3418,8 @@ static const uint16_t ts_small_parse_table[] = { ACTIONS(29), 1, anon_sym_SLASH_STAR, ACTIONS(158), 1, - ts_builtin_sym_end, - STATE(219), 1, + anon_sym_RBRACE, + STATE(225), 1, sym_identifier, STATE(4), 17, sym__definition, @@ -3430,7 +3442,7 @@ static const uint16_t ts_small_parse_table[] = { [855] = 4, ACTIONS(164), 1, anon_sym_DOT, - STATE(15), 2, + STATE(16), 2, sym_variable_property, aux_sym_identifier_repeat1, ACTIONS(160), 9, @@ -3455,12 +3467,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [886] = 4, - ACTIONS(171), 1, + ACTIONS(164), 1, anon_sym_DOT, - STATE(15), 2, + STATE(17), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(167), 9, + ACTIONS(166), 9, ts_builtin_sym_end, anon_sym_COLON, anon_sym_COMMA, @@ -3470,7 +3482,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(169), 10, + ACTIONS(168), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3482,12 +3494,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [917] = 4, - ACTIONS(171), 1, + ACTIONS(174), 1, anon_sym_DOT, - STATE(16), 2, + STATE(17), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(173), 9, + ACTIONS(170), 9, ts_builtin_sym_end, anon_sym_COLON, anon_sym_COMMA, @@ -3497,7 +3509,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(175), 10, + ACTIONS(172), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3534,16 +3546,16 @@ static const uint16_t ts_small_parse_table[] = { [973] = 4, ACTIONS(181), 1, anon_sym_DOT, - STATE(19), 2, + STATE(28), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(160), 5, + ACTIONS(166), 5, anon_sym_COMMA, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(162), 11, + ACTIONS(168), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3556,73 +3568,73 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [1001] = 6, - ACTIONS(188), 1, + ACTIONS(187), 1, anon_sym_else, - ACTIONS(190), 1, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(84), 1, - sym_magic_variable_definition, - STATE(88), 1, + STATE(119), 1, sym_conditional_else, - ACTIONS(184), 4, + STATE(120), 1, + sym_magic_variable_definition, + ACTIONS(183), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(186), 11, + ACTIONS(185), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [1033] = 6, - ACTIONS(196), 1, + ACTIONS(195), 1, anon_sym_else, - ACTIONS(198), 1, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(85), 1, + STATE(77), 1, sym_magic_variable_definition, - STATE(87), 1, + STATE(79), 1, sym_conditional_else, - ACTIONS(192), 5, - ts_builtin_sym_end, + ACTIONS(191), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(194), 10, + ACTIONS(193), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [1065] = 6, - ACTIONS(196), 1, + ACTIONS(187), 1, anon_sym_else, - ACTIONS(198), 1, + ACTIONS(189), 1, anon_sym_GT_GT, STATE(91), 1, sym_magic_variable_definition, - STATE(92), 1, + STATE(93), 1, sym_conditional_else, - ACTIONS(200), 5, + ACTIONS(199), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(202), 10, + ACTIONS(201), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3634,21 +3646,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [1097] = 6, - ACTIONS(196), 1, + ACTIONS(187), 1, anon_sym_else, - ACTIONS(198), 1, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(66), 1, + STATE(82), 1, sym_magic_variable_definition, - STATE(94), 1, + STATE(84), 1, sym_conditional_else, - ACTIONS(184), 5, + ACTIONS(191), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(186), 10, + ACTIONS(193), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3660,20 +3672,20 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [1129] = 6, - ACTIONS(188), 1, + ACTIONS(195), 1, anon_sym_else, - ACTIONS(190), 1, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(77), 1, + STATE(85), 1, sym_magic_variable_definition, - STATE(79), 1, + STATE(86), 1, sym_conditional_else, - ACTIONS(192), 4, + ACTIONS(199), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(194), 11, + ACTIONS(201), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3685,95 +3697,97 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1161] = 4, - ACTIONS(204), 1, - anon_sym_DOT, - STATE(26), 2, - sym_variable_property, - aux_sym_identifier_repeat1, - ACTIONS(173), 5, - anon_sym_COMMA, + [1161] = 6, + ACTIONS(187), 1, + anon_sym_else, + ACTIONS(189), 1, + anon_sym_GT_GT, + STATE(78), 1, + sym_magic_variable_definition, + STATE(81), 1, + sym_conditional_else, + ACTIONS(203), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(175), 11, + ACTIONS(205), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1189] = 4, - ACTIONS(204), 1, - anon_sym_DOT, - STATE(19), 2, - sym_variable_property, - aux_sym_identifier_repeat1, - ACTIONS(167), 5, - anon_sym_COMMA, + [1193] = 6, + ACTIONS(187), 1, + anon_sym_else, + ACTIONS(189), 1, + anon_sym_GT_GT, + STATE(68), 1, + sym_magic_variable_definition, + STATE(69), 1, + sym_conditional_else, + ACTIONS(207), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(169), 11, + ACTIONS(209), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1217] = 6, - ACTIONS(196), 1, + [1225] = 6, + ACTIONS(195), 1, anon_sym_else, - ACTIONS(198), 1, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(104), 1, - sym_conditional_else, - STATE(125), 1, + STATE(73), 1, sym_magic_variable_definition, - ACTIONS(206), 5, - ts_builtin_sym_end, + STATE(74), 1, + sym_conditional_else, + ACTIONS(203), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(208), 10, + ACTIONS(205), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1249] = 6, - ACTIONS(188), 1, - anon_sym_else, - ACTIONS(190), 1, - anon_sym_GT_GT, - STATE(80), 1, - sym_magic_variable_definition, - STATE(81), 1, - sym_conditional_else, - ACTIONS(200), 4, + [1257] = 4, + ACTIONS(211), 1, + anon_sym_DOT, + STATE(28), 2, + sym_variable_property, + aux_sym_identifier_repeat1, + ACTIONS(170), 5, + anon_sym_COMMA, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(202), 11, + ACTIONS(172), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3785,21 +3799,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1281] = 6, - ACTIONS(188), 1, + [1285] = 6, + ACTIONS(195), 1, anon_sym_else, - ACTIONS(190), 1, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(118), 1, - sym_conditional_else, - STATE(122), 1, + STATE(100), 1, sym_magic_variable_definition, - ACTIONS(210), 4, + STATE(103), 1, + sym_conditional_else, + ACTIONS(183), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(212), 11, + ACTIONS(185), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3811,47 +3825,45 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1313] = 6, - ACTIONS(196), 1, - anon_sym_else, - ACTIONS(198), 1, - anon_sym_GT_GT, - STATE(120), 1, - sym_conditional_else, - STATE(121), 1, - sym_magic_variable_definition, - ACTIONS(210), 5, - ts_builtin_sym_end, + [1317] = 4, + ACTIONS(181), 1, + anon_sym_DOT, + STATE(19), 2, + sym_variable_property, + aux_sym_identifier_repeat1, + ACTIONS(160), 5, + anon_sym_COMMA, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(212), 10, + ACTIONS(162), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [1345] = 6, - ACTIONS(188), 1, + ACTIONS(195), 1, anon_sym_else, - ACTIONS(190), 1, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(102), 1, + STATE(70), 1, sym_magic_variable_definition, - STATE(103), 1, + STATE(72), 1, sym_conditional_else, - ACTIONS(206), 4, + ACTIONS(207), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(208), 11, + ACTIONS(209), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -3863,14 +3875,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1377] = 4, - ACTIONS(190), 1, - anon_sym_GT_GT, - STATE(90), 1, - sym_magic_variable_definition, - ACTIONS(214), 4, + [1377] = 2, + ACTIONS(214), 6, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, + anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, ACTIONS(216), 11, @@ -3878,17 +3888,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, + anon_sym_else, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1403] = 4, - ACTIONS(190), 1, + [1399] = 4, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(117), 1, + STATE(108), 1, sym_magic_variable_definition, ACTIONS(218), 4, sym_flag_delimiter, @@ -3907,15 +3917,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1429] = 4, - ACTIONS(198), 1, - anon_sym_GT_GT, - STATE(101), 1, - sym_magic_variable_definition, - ACTIONS(222), 5, + [1425] = 2, + ACTIONS(222), 7, ts_builtin_sym_end, sym_flag_delimiter, + anon_sym_LBRACE, anon_sym_RBRACE, + anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, ACTIONS(224), 10, @@ -3929,80 +3937,82 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1455] = 2, - ACTIONS(226), 6, + [1447] = 4, + ACTIONS(189), 1, + anon_sym_GT_GT, + STATE(116), 1, + sym_magic_variable_definition, + ACTIONS(218), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, - anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(228), 11, + ACTIONS(220), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, - anon_sym_else, anon_sym_menu, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1477] = 2, - ACTIONS(230), 6, + [1473] = 2, + ACTIONS(226), 7, ts_builtin_sym_end, sym_flag_delimiter, + anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(232), 11, + ACTIONS(228), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, - anon_sym_else, anon_sym_menu, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1499] = 4, - ACTIONS(198), 1, + [1495] = 4, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(115), 1, + STATE(125), 1, sym_magic_variable_definition, - ACTIONS(218), 5, - ts_builtin_sym_end, + ACTIONS(230), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(220), 10, + ACTIONS(232), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1525] = 4, - ACTIONS(198), 1, + [1521] = 4, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(78), 1, + STATE(83), 1, sym_magic_variable_definition, - ACTIONS(234), 5, + ACTIONS(230), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(236), 10, + ACTIONS(232), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4013,36 +4023,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1551] = 4, - ACTIONS(190), 1, + [1547] = 4, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(126), 1, + STATE(123), 1, sym_magic_variable_definition, - ACTIONS(222), 4, + ACTIONS(234), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(224), 11, + ACTIONS(236), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1577] = 4, - ACTIONS(198), 1, - anon_sym_GT_GT, - STATE(114), 1, - sym_magic_variable_definition, - ACTIONS(238), 5, + [1573] = 2, + ACTIONS(238), 7, ts_builtin_sym_end, + anon_sym_COLON, sym_flag_delimiter, + anon_sym_RPAREN, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, @@ -4057,17 +4065,17 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1603] = 4, - ACTIONS(190), 1, + [1595] = 4, + ACTIONS(197), 1, anon_sym_GT_GT, - STATE(112), 1, + STATE(106), 1, sym_magic_variable_definition, - ACTIONS(238), 4, + ACTIONS(242), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(240), 11, + ACTIONS(244), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4079,34 +4087,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1629] = 2, - ACTIONS(242), 7, - ts_builtin_sym_end, + [1621] = 2, + ACTIONS(214), 5, sym_flag_delimiter, - anon_sym_LBRACE, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(244), 10, + ACTIONS(216), 12, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, + anon_sym_else, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1651] = 2, - ACTIONS(226), 5, + [1643] = 2, + ACTIONS(246), 5, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(228), 12, + ACTIONS(248), 12, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4119,19 +4127,21 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1673] = 2, - ACTIONS(230), 5, + [1665] = 4, + ACTIONS(197), 1, + anon_sym_GT_GT, + STATE(95), 1, + sym_magic_variable_definition, + ACTIONS(234), 4, sym_flag_delimiter, anon_sym_RBRACE, - anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(232), 12, + ACTIONS(236), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, - anon_sym_else, anon_sym_menu, anon_sym_case, anon_sym_func, @@ -4139,7 +4149,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1695] = 2, + [1691] = 2, ACTIONS(177), 6, anon_sym_COMMA, sym_flag_delimiter, @@ -4159,8 +4169,8 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1717] = 2, - ACTIONS(246), 7, + [1713] = 2, + ACTIONS(250), 7, ts_builtin_sym_end, anon_sym_COLON, sym_flag_delimiter, @@ -4168,7 +4178,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(248), 10, + ACTIONS(252), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4179,38 +4189,38 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1739] = 2, - ACTIONS(250), 7, + [1735] = 2, + ACTIONS(246), 6, ts_builtin_sym_end, - anon_sym_COLON, sym_flag_delimiter, - anon_sym_RPAREN, anon_sym_RBRACE, + anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(252), 10, + ACTIONS(248), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, + anon_sym_else, anon_sym_menu, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1761] = 4, - ACTIONS(198), 1, + [1757] = 4, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(96), 1, + STATE(87), 1, sym_magic_variable_definition, - ACTIONS(214), 5, + ACTIONS(254), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(216), 10, + ACTIONS(256), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4221,98 +4231,58 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1787] = 2, - ACTIONS(254), 7, - ts_builtin_sym_end, + [1783] = 4, + ACTIONS(197), 1, + anon_sym_GT_GT, + STATE(80), 1, + sym_magic_variable_definition, + ACTIONS(254), 4, sym_flag_delimiter, - anon_sym_LBRACE, anon_sym_RBRACE, - anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(256), 10, + ACTIONS(256), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [1809] = 4, - ACTIONS(190), 1, + ACTIONS(189), 1, anon_sym_GT_GT, - STATE(70), 1, + STATE(117), 1, sym_magic_variable_definition, - ACTIONS(234), 4, + ACTIONS(242), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(236), 11, + ACTIONS(244), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [1835] = 2, - ACTIONS(230), 5, + ACTIONS(246), 5, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(232), 11, - anon_sym_import, - anon_sym_repeat, - anon_sym_repeatEach, - anon_sym_if, - anon_sym_menu, - anon_sym_case, - anon_sym_func, - anon_sym_macro, - anon_sym_var, - anon_sym_return, - sym_identifier_content, - [1856] = 5, - ACTIONS(258), 1, - aux_sym_import_token1, - ACTIONS(262), 1, - anon_sym_LBRACE, - STATE(30), 1, - sym_block, - STATE(340), 1, - sym_operator, - ACTIONS(260), 12, - anon_sym_AMP_AMP, - anon_sym_PIPE_PIPE, - anon_sym_EQ_EQ, - anon_sym_BANG_EQ, - anon_sym_LT, - anon_sym_LT_EQ, - anon_sym_GT, - anon_sym_GT_EQ, - anon_sym_COLON_COLON, - anon_sym_BANG_COLON, - anon_sym_DOLLAR_DOLLAR, - anon_sym_DOLLAR_BANG, - [1883] = 3, - ACTIONS(264), 1, - anon_sym_COMMA, - ACTIONS(266), 4, - sym_flag_delimiter, - anon_sym_RBRACE, - anon_sym_SLASH_SLASH, - anon_sym_SLASH_STAR, - ACTIONS(268), 11, + ACTIONS(248), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4324,54 +4294,54 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1906] = 2, - ACTIONS(226), 5, + [1856] = 2, + ACTIONS(214), 6, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(228), 11, + ACTIONS(216), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1927] = 2, - ACTIONS(254), 5, + [1877] = 2, + ACTIONS(258), 6, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(256), 11, + ACTIONS(260), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [1948] = 5, - ACTIONS(270), 1, + [1898] = 5, + ACTIONS(262), 1, aux_sym_import_token1, - ACTIONS(272), 1, + ACTIONS(266), 1, anon_sym_LBRACE, STATE(29), 1, sym_block, - STATE(331), 1, + STATE(335), 1, sym_operator, - ACTIONS(260), 12, + ACTIONS(264), 12, anon_sym_AMP_AMP, anon_sym_PIPE_PIPE, anon_sym_EQ_EQ, @@ -4384,14 +4354,33 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_BANG_COLON, anon_sym_DOLLAR_DOLLAR, anon_sym_DOLLAR_BANG, - [1975] = 2, - ACTIONS(242), 5, + [1925] = 2, + ACTIONS(268), 6, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(244), 11, + ACTIONS(270), 10, + anon_sym_import, + anon_sym_repeat, + anon_sym_repeatEach, + anon_sym_if, + anon_sym_menu, + anon_sym_func, + anon_sym_macro, + anon_sym_var, + anon_sym_return, + sym_identifier_content, + [1946] = 2, + ACTIONS(226), 5, + sym_flag_delimiter, + anon_sym_RBRACE, + anon_sym_GT_GT, + anon_sym_SLASH_SLASH, + anon_sym_SLASH_STAR, + ACTIONS(228), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4403,12 +4392,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [1996] = 2, - ACTIONS(274), 6, + [1967] = 3, + ACTIONS(274), 1, + anon_sym_COMMA, + ACTIONS(272), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, - anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, ACTIONS(276), 10, @@ -4422,33 +4412,34 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [2017] = 2, - ACTIONS(230), 6, - ts_builtin_sym_end, + [1990] = 3, + ACTIONS(278), 1, + anon_sym_COMMA, + ACTIONS(272), 4, sym_flag_delimiter, anon_sym_RBRACE, - anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(232), 10, + ACTIONS(276), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, - [2038] = 2, - ACTIONS(278), 5, + [2013] = 2, + ACTIONS(222), 5, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(280), 11, + ACTIONS(224), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4460,15 +4451,37 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [2059] = 2, - ACTIONS(278), 6, + [2034] = 5, + ACTIONS(280), 1, + aux_sym_import_token1, + ACTIONS(282), 1, + anon_sym_LBRACE, + STATE(20), 1, + sym_block, + STATE(321), 1, + sym_operator, + ACTIONS(264), 12, + anon_sym_AMP_AMP, + anon_sym_PIPE_PIPE, + anon_sym_EQ_EQ, + anon_sym_BANG_EQ, + anon_sym_LT, + anon_sym_LT_EQ, + anon_sym_GT, + anon_sym_GT_EQ, + anon_sym_COLON_COLON, + anon_sym_BANG_COLON, + anon_sym_DOLLAR_DOLLAR, + anon_sym_DOLLAR_BANG, + [2061] = 2, + ACTIONS(246), 6, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(280), 10, + ACTIONS(248), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4479,14 +4492,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [2080] = 2, - ACTIONS(274), 5, + [2082] = 2, + ACTIONS(268), 5, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(276), 11, + ACTIONS(270), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4498,40 +4511,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_var, anon_sym_return, sym_identifier_content, - [2101] = 3, - ACTIONS(282), 1, - anon_sym_COMMA, - ACTIONS(266), 5, - ts_builtin_sym_end, + [2103] = 2, + ACTIONS(258), 5, sym_flag_delimiter, anon_sym_RBRACE, + anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(268), 10, + ACTIONS(260), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2124] = 2, - ACTIONS(226), 6, - ts_builtin_sym_end, + ACTIONS(214), 5, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_GT_GT, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(228), 10, + ACTIONS(216), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, @@ -4574,12 +4586,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2185] = 2, - ACTIONS(292), 4, + ACTIONS(250), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(294), 11, + ACTIONS(252), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4592,31 +4604,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2205] = 2, - ACTIONS(296), 4, + ACTIONS(292), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(298), 11, + ACTIONS(294), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2225] = 2, - ACTIONS(300), 5, + ACTIONS(296), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(302), 10, + ACTIONS(298), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4628,12 +4640,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2245] = 2, - ACTIONS(304), 4, + ACTIONS(292), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(306), 11, + ACTIONS(294), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4646,13 +4658,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2265] = 2, - ACTIONS(308), 5, + ACTIONS(300), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(310), 10, + ACTIONS(302), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4664,12 +4676,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2285] = 2, - ACTIONS(308), 4, + ACTIONS(296), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(310), 11, + ACTIONS(298), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4682,12 +4694,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2305] = 2, - ACTIONS(312), 4, + ACTIONS(304), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(314), 11, + ACTIONS(306), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4700,12 +4712,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2325] = 2, - ACTIONS(316), 4, + ACTIONS(308), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(318), 11, + ACTIONS(310), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4718,12 +4730,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2345] = 2, - ACTIONS(320), 4, + ACTIONS(288), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(322), 11, + ACTIONS(290), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4736,30 +4748,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2365] = 2, - ACTIONS(324), 4, + ACTIONS(312), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(326), 11, + ACTIONS(314), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2385] = 2, - ACTIONS(328), 4, + ACTIONS(316), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(330), 11, + ACTIONS(318), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4790,12 +4802,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2425] = 2, - ACTIONS(332), 4, + ACTIONS(320), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(334), 11, + ACTIONS(322), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4808,12 +4820,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2445] = 2, - ACTIONS(336), 4, + ACTIONS(324), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(338), 11, + ACTIONS(326), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4826,31 +4838,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2465] = 2, - ACTIONS(340), 4, + ACTIONS(308), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(342), 11, + ACTIONS(310), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2485] = 2, - ACTIONS(296), 5, + ACTIONS(316), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(298), 10, + ACTIONS(318), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4862,13 +4874,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2505] = 2, - ACTIONS(292), 5, + ACTIONS(328), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(294), 10, + ACTIONS(330), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4880,67 +4892,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2525] = 2, - ACTIONS(288), 4, + ACTIONS(320), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(290), 11, + ACTIONS(322), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2545] = 2, - ACTIONS(328), 5, - ts_builtin_sym_end, + ACTIONS(332), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(330), 10, + ACTIONS(334), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2565] = 2, - ACTIONS(344), 5, - ts_builtin_sym_end, + ACTIONS(336), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(346), 10, + ACTIONS(338), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2585] = 2, - ACTIONS(332), 5, + ACTIONS(324), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(334), 10, + ACTIONS(326), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4952,31 +4964,31 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2605] = 2, - ACTIONS(348), 4, + ACTIONS(340), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(350), 11, + ACTIONS(342), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2625] = 2, - ACTIONS(352), 5, + ACTIONS(344), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(354), 10, + ACTIONS(346), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -4988,12 +5000,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2645] = 2, - ACTIONS(356), 4, + ACTIONS(348), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(358), 11, + ACTIONS(350), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5006,13 +5018,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2665] = 2, - ACTIONS(336), 5, + ACTIONS(332), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(338), 10, + ACTIONS(334), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5024,13 +5036,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2685] = 2, - ACTIONS(340), 5, + ACTIONS(352), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(342), 10, + ACTIONS(354), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5042,13 +5054,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2705] = 2, - ACTIONS(360), 5, + ACTIONS(336), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(362), 10, + ACTIONS(338), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5060,30 +5072,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2725] = 2, - ACTIONS(348), 5, - ts_builtin_sym_end, + ACTIONS(356), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(350), 10, + ACTIONS(358), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2745] = 2, - ACTIONS(300), 4, + ACTIONS(360), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(302), 11, + ACTIONS(362), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5096,30 +5108,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2765] = 2, - ACTIONS(356), 5, - ts_builtin_sym_end, + ACTIONS(364), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(358), 10, + ACTIONS(366), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2785] = 2, - ACTIONS(250), 4, + ACTIONS(300), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(252), 11, + ACTIONS(302), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5132,13 +5144,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2805] = 2, - ACTIONS(284), 5, + ACTIONS(368), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(286), 10, + ACTIONS(370), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5150,13 +5162,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2825] = 2, - ACTIONS(364), 5, + ACTIONS(348), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(366), 10, + ACTIONS(350), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5168,12 +5180,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2845] = 2, - ACTIONS(360), 4, + ACTIONS(372), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(362), 11, + ACTIONS(374), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5186,48 +5198,48 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2865] = 2, - ACTIONS(368), 5, - ts_builtin_sym_end, + ACTIONS(376), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(370), 10, + ACTIONS(378), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2885] = 2, - ACTIONS(372), 4, + ACTIONS(364), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(374), 11, + ACTIONS(366), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [2905] = 2, - ACTIONS(376), 4, + ACTIONS(380), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(378), 11, + ACTIONS(382), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5240,13 +5252,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2925] = 2, - ACTIONS(376), 5, + ACTIONS(384), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(378), 10, + ACTIONS(386), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5258,12 +5270,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2945] = 2, - ACTIONS(380), 4, + ACTIONS(238), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(382), 11, + ACTIONS(240), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5276,12 +5288,12 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2965] = 2, - ACTIONS(344), 4, + ACTIONS(388), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(346), 11, + ACTIONS(390), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5294,157 +5306,157 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [2985] = 2, - ACTIONS(316), 5, - ts_builtin_sym_end, + ACTIONS(368), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(318), 10, + ACTIONS(370), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3005] = 2, - ACTIONS(320), 5, - ts_builtin_sym_end, + ACTIONS(392), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(322), 10, + ACTIONS(394), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3025] = 2, - ACTIONS(380), 5, - ts_builtin_sym_end, + ACTIONS(396), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(382), 10, + ACTIONS(398), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3045] = 2, - ACTIONS(384), 5, - ts_builtin_sym_end, + ACTIONS(400), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(386), 10, + ACTIONS(402), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3065] = 2, - ACTIONS(384), 4, + ACTIONS(356), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(386), 11, + ACTIONS(358), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3085] = 2, - ACTIONS(388), 4, + ACTIONS(400), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(390), 11, + ACTIONS(402), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3105] = 2, - ACTIONS(312), 5, - ts_builtin_sym_end, + ACTIONS(352), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(314), 10, + ACTIONS(354), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3125] = 2, - ACTIONS(388), 5, - ts_builtin_sym_end, + ACTIONS(384), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(390), 10, + ACTIONS(386), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3145] = 2, - ACTIONS(392), 5, + ACTIONS(396), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(394), 10, + ACTIONS(398), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5456,67 +5468,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [3165] = 2, - ACTIONS(246), 4, + ACTIONS(392), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(248), 11, + ACTIONS(394), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3185] = 2, - ACTIONS(392), 4, + ACTIONS(388), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(394), 11, + ACTIONS(390), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3205] = 2, - ACTIONS(396), 4, + ACTIONS(284), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(398), 11, + ACTIONS(286), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3225] = 2, - ACTIONS(324), 5, + ACTIONS(380), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(326), 10, + ACTIONS(382), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5528,13 +5540,13 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [3245] = 2, - ACTIONS(396), 5, + ACTIONS(372), 5, ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(398), 10, + ACTIONS(374), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5546,30 +5558,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [3265] = 2, - ACTIONS(400), 5, - ts_builtin_sym_end, + ACTIONS(344), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(402), 10, + ACTIONS(346), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3285] = 2, - ACTIONS(400), 4, + ACTIONS(340), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(402), 11, + ACTIONS(342), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5582,66 +5594,66 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [3305] = 2, - ACTIONS(352), 4, + ACTIONS(360), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(354), 11, + ACTIONS(362), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3325] = 2, - ACTIONS(364), 4, + ACTIONS(376), 5, + ts_builtin_sym_end, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(366), 11, + ACTIONS(378), 10, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, - anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3345] = 2, - ACTIONS(372), 5, - ts_builtin_sym_end, + ACTIONS(328), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(374), 10, + ACTIONS(330), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, anon_sym_if, anon_sym_menu, + anon_sym_case, anon_sym_func, anon_sym_macro, anon_sym_var, anon_sym_return, sym_identifier_content, [3365] = 2, - ACTIONS(368), 4, + ACTIONS(312), 4, sym_flag_delimiter, anon_sym_RBRACE, anon_sym_SLASH_SLASH, anon_sym_SLASH_STAR, - ACTIONS(370), 11, + ACTIONS(314), 11, anon_sym_import, anon_sym_repeat, anon_sym_repeatEach, @@ -5654,32 +5666,14 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_return, sym_identifier_content, [3385] = 4, - ACTIONS(167), 1, + ACTIONS(166), 1, aux_sym_import_token1, ACTIONS(404), 1, anon_sym_DOT, - STATE(128), 2, - sym_variable_property, - aux_sym_identifier_repeat1, - ACTIONS(169), 9, - anon_sym_COLON, - anon_sym_COMMA, - anon_sym_LPAREN, - anon_sym_RPAREN, - sym_identifier_content, - sym_number, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [3407] = 4, - ACTIONS(160), 1, - aux_sym_import_token1, - ACTIONS(406), 1, - anon_sym_DOT, - STATE(128), 2, + STATE(130), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(162), 9, + ACTIONS(168), 9, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -5689,22 +5683,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [3429] = 9, + [3407] = 9, ACTIONS(25), 1, sym_identifier_content, - ACTIONS(409), 1, + ACTIONS(406), 1, anon_sym_RPAREN, - ACTIONS(411), 1, + ACTIONS(408), 1, sym_number, - ACTIONS(413), 1, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(161), 1, + STATE(163), 1, sym_identifier, - STATE(133), 2, + STATE(134), 2, sym_parameter_list_item, aux_sym_parameter_list_repeat1, STATE(166), 4, @@ -5712,22 +5706,22 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_multi_line_string, - [3461] = 9, + [3439] = 9, ACTIONS(25), 1, sym_identifier_content, - ACTIONS(411), 1, + ACTIONS(408), 1, sym_number, - ACTIONS(413), 1, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(419), 1, + ACTIONS(416), 1, anon_sym_RPAREN, - STATE(161), 1, + STATE(163), 1, sym_identifier, - STATE(129), 2, + STATE(133), 2, sym_parameter_list_item, aux_sym_parameter_list_repeat1, STATE(166), 4, @@ -5735,15 +5729,15 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_multi_line_string, - [3493] = 4, - ACTIONS(173), 1, + [3471] = 4, + ACTIONS(170), 1, aux_sym_import_token1, - ACTIONS(404), 1, + ACTIONS(418), 1, anon_sym_DOT, - STATE(127), 2, + STATE(130), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(175), 9, + ACTIONS(172), 9, anon_sym_COLON, anon_sym_COMMA, anon_sym_LPAREN, @@ -5753,22 +5747,22 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [3515] = 9, - ACTIONS(25), 1, + [3493] = 9, + ACTIONS(421), 1, + anon_sym_RPAREN, + ACTIONS(423), 1, sym_identifier_content, - ACTIONS(411), 1, + ACTIONS(426), 1, sym_number, - ACTIONS(413), 1, + ACTIONS(429), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(432), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(435), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(421), 1, - anon_sym_RPAREN, - STATE(161), 1, + STATE(163), 1, sym_identifier, - STATE(133), 2, + STATE(131), 2, sym_parameter_list_item, aux_sym_parameter_list_repeat1, STATE(166), 4, @@ -5776,22 +5770,40 @@ static const uint16_t ts_small_parse_table[] = { sym_array, sym_string, sym_multi_line_string, - [3547] = 9, - ACTIONS(423), 1, + [3525] = 4, + ACTIONS(160), 1, + aux_sym_import_token1, + ACTIONS(404), 1, + anon_sym_DOT, + STATE(127), 2, + sym_variable_property, + aux_sym_identifier_repeat1, + ACTIONS(162), 9, + anon_sym_COLON, + anon_sym_COMMA, + anon_sym_LPAREN, anon_sym_RPAREN, - ACTIONS(425), 1, sym_identifier_content, - ACTIONS(428), 1, sym_number, - ACTIONS(431), 1, anon_sym_LBRACK, - ACTIONS(434), 1, anon_sym_DQUOTE, - ACTIONS(437), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(161), 1, + [3547] = 9, + ACTIONS(25), 1, + sym_identifier_content, + ACTIONS(408), 1, + sym_number, + ACTIONS(410), 1, + anon_sym_LBRACK, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(414), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(438), 1, + anon_sym_RPAREN, + STATE(163), 1, sym_identifier, - STATE(133), 2, + STATE(131), 2, sym_parameter_list_item, aux_sym_parameter_list_repeat1, STATE(166), 4, @@ -5802,19 +5814,19 @@ static const uint16_t ts_small_parse_table[] = { [3579] = 9, ACTIONS(25), 1, sym_identifier_content, - ACTIONS(411), 1, + ACTIONS(408), 1, sym_number, - ACTIONS(413), 1, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(440), 1, anon_sym_RPAREN, - STATE(161), 1, + STATE(163), 1, sym_identifier, - STATE(132), 2, + STATE(131), 2, sym_parameter_list_item, aux_sym_parameter_list_repeat1, STATE(166), 4, @@ -5823,273 +5835,273 @@ static const uint16_t ts_small_parse_table[] = { sym_string, sym_multi_line_string, [3611] = 8, - ACTIONS(25), 1, - sym_identifier_content, - ACTIONS(415), 1, - anon_sym_DQUOTE, ACTIONS(442), 1, - aux_sym_import_token1, + sym_identifier_content, ACTIONS(444), 1, - anon_sym_RPAREN, - ACTIONS(446), 1, sym_number, - ACTIONS(448), 1, + ACTIONS(446), 1, anon_sym_LBRACK, + ACTIONS(448), 1, + anon_sym_RBRACK, ACTIONS(450), 1, + anon_sym_DQUOTE, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(264), 5, + STATE(144), 1, + aux_sym_array_repeat1, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3640] = 8, - ACTIONS(25), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(415), 1, - anon_sym_DQUOTE, - ACTIONS(448), 1, + ACTIONS(444), 1, + sym_number, + ACTIONS(446), 1, anon_sym_LBRACK, ACTIONS(450), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DQUOTE, ACTIONS(452), 1, - aux_sym_import_token1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(454), 1, - anon_sym_RPAREN, - ACTIONS(456), 1, - sym_number, - STATE(283), 5, + anon_sym_RBRACK, + STATE(139), 1, + aux_sym_array_repeat1, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3669] = 8, - ACTIONS(458), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(460), 1, + ACTIONS(444), 1, sym_number, - ACTIONS(462), 1, + ACTIONS(446), 1, anon_sym_LBRACK, - ACTIONS(464), 1, - anon_sym_RBRACK, - ACTIONS(466), 1, + ACTIONS(450), 1, anon_sym_DQUOTE, - ACTIONS(468), 1, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(147), 1, + ACTIONS(456), 1, + anon_sym_RBRACK, + STATE(144), 1, aux_sym_array_repeat1, - STATE(176), 5, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3698] = 8, - ACTIONS(458), 1, + ACTIONS(25), 1, sym_identifier_content, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(458), 1, + aux_sym_import_token1, ACTIONS(460), 1, - sym_number, + anon_sym_RPAREN, ACTIONS(462), 1, + sym_number, + ACTIONS(464), 1, anon_sym_LBRACK, ACTIONS(466), 1, - anon_sym_DQUOTE, - ACTIONS(468), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(470), 1, - anon_sym_RBRACK, - STATE(143), 1, - aux_sym_array_repeat1, - STATE(176), 5, + STATE(293), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3727] = 8, - ACTIONS(25), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(415), 1, - anon_sym_DQUOTE, - ACTIONS(448), 1, + ACTIONS(444), 1, + sym_number, + ACTIONS(446), 1, anon_sym_LBRACK, ACTIONS(450), 1, + anon_sym_DQUOTE, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(472), 1, - aux_sym_import_token1, - ACTIONS(474), 1, - anon_sym_RPAREN, - ACTIONS(476), 1, - sym_number, - STATE(257), 5, + ACTIONS(468), 1, + anon_sym_RBRACK, + STATE(144), 1, + aux_sym_array_repeat1, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3756] = 8, - ACTIONS(458), 1, + ACTIONS(25), 1, sym_identifier_content, - ACTIONS(460), 1, - sym_number, - ACTIONS(462), 1, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(464), 1, anon_sym_LBRACK, ACTIONS(466), 1, - anon_sym_DQUOTE, - ACTIONS(468), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(478), 1, - anon_sym_RBRACK, - STATE(143), 1, - aux_sym_array_repeat1, - STATE(176), 5, + ACTIONS(470), 1, + aux_sym_import_token1, + ACTIONS(472), 1, + anon_sym_RPAREN, + ACTIONS(474), 1, + sym_number, + STATE(289), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3785] = 8, - ACTIONS(458), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(460), 1, + ACTIONS(444), 1, sym_number, - ACTIONS(462), 1, + ACTIONS(446), 1, anon_sym_LBRACK, - ACTIONS(466), 1, + ACTIONS(450), 1, anon_sym_DQUOTE, - ACTIONS(468), 1, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(480), 1, + ACTIONS(476), 1, anon_sym_RBRACK, - STATE(143), 1, + STATE(137), 1, aux_sym_array_repeat1, - STATE(176), 5, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3814] = 8, - ACTIONS(458), 1, + ACTIONS(25), 1, sym_identifier_content, - ACTIONS(460), 1, - sym_number, - ACTIONS(462), 1, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(464), 1, anon_sym_LBRACK, ACTIONS(466), 1, - anon_sym_DQUOTE, - ACTIONS(468), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(478), 1, + aux_sym_import_token1, + ACTIONS(480), 1, + anon_sym_RPAREN, ACTIONS(482), 1, - anon_sym_RBRACK, - STATE(141), 1, - aux_sym_array_repeat1, - STATE(176), 5, + sym_number, + STATE(291), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3843] = 8, - ACTIONS(484), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(487), 1, + ACTIONS(444), 1, sym_number, - ACTIONS(490), 1, + ACTIONS(446), 1, anon_sym_LBRACK, - ACTIONS(493), 1, - anon_sym_RBRACK, - ACTIONS(495), 1, + ACTIONS(450), 1, anon_sym_DQUOTE, - ACTIONS(498), 1, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(143), 1, + ACTIONS(484), 1, + anon_sym_RBRACK, + STATE(147), 1, aux_sym_array_repeat1, - STATE(176), 5, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3872] = 8, - ACTIONS(25), 1, + ACTIONS(486), 1, sym_identifier_content, - ACTIONS(415), 1, - anon_sym_DQUOTE, - ACTIONS(448), 1, + ACTIONS(489), 1, + sym_number, + ACTIONS(492), 1, anon_sym_LBRACK, - ACTIONS(450), 1, + ACTIONS(495), 1, + anon_sym_RBRACK, + ACTIONS(497), 1, + anon_sym_DQUOTE, + ACTIONS(500), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(501), 1, - aux_sym_import_token1, - ACTIONS(503), 1, - anon_sym_RPAREN, - ACTIONS(505), 1, - sym_number, - STATE(272), 5, + STATE(144), 1, + aux_sym_array_repeat1, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3901] = 8, - ACTIONS(458), 1, + ACTIONS(25), 1, sym_identifier_content, - ACTIONS(460), 1, - sym_number, - ACTIONS(462), 1, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(464), 1, anon_sym_LBRACK, ACTIONS(466), 1, - anon_sym_DQUOTE, - ACTIONS(468), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(503), 1, + aux_sym_import_token1, + ACTIONS(505), 1, + anon_sym_RPAREN, ACTIONS(507), 1, - anon_sym_RBRACK, - STATE(140), 1, - aux_sym_array_repeat1, - STATE(176), 5, + sym_number, + STATE(268), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3930] = 8, - ACTIONS(458), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(460), 1, + ACTIONS(444), 1, sym_number, - ACTIONS(462), 1, + ACTIONS(446), 1, anon_sym_LBRACK, - ACTIONS(466), 1, + ACTIONS(450), 1, anon_sym_DQUOTE, - ACTIONS(468), 1, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(509), 1, anon_sym_RBRACK, - STATE(138), 1, + STATE(135), 1, aux_sym_array_repeat1, - STATE(176), 5, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, [3959] = 8, - ACTIONS(458), 1, + ACTIONS(442), 1, sym_identifier_content, - ACTIONS(460), 1, + ACTIONS(444), 1, sym_number, - ACTIONS(462), 1, + ACTIONS(446), 1, anon_sym_LBRACK, - ACTIONS(466), 1, + ACTIONS(450), 1, anon_sym_DQUOTE, - ACTIONS(468), 1, + ACTIONS(452), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, ACTIONS(511), 1, anon_sym_RBRACK, - STATE(143), 1, + STATE(144), 1, aux_sym_array_repeat1, - STATE(176), 5, + STATE(181), 5, sym__primitive, sym_identifier, sym_array, @@ -6109,161 +6121,197 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_DOT, - [4004] = 6, - ACTIONS(513), 1, + [4004] = 7, + ACTIONS(25), 1, sym_identifier_content, + ACTIONS(412), 1, + anon_sym_DQUOTE, + ACTIONS(464), 1, + anon_sym_LBRACK, + ACTIONS(466), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(513), 1, + aux_sym_import_token1, ACTIONS(515), 1, sym_number, + STATE(168), 5, + sym__primitive, + sym_identifier, + sym_array, + sym_string, + sym_multi_line_string, + [4030] = 4, ACTIONS(517), 1, + anon_sym_DOT, + STATE(150), 2, + sym_variable_property, + aux_sym_identifier_repeat1, + ACTIONS(172), 3, + sym_identifier_content, + sym_number, + anon_sym_DQUOTE, + ACTIONS(170), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [4049] = 6, + ACTIONS(25), 1, + sym_identifier_content, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(519), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(521), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(111), 5, + ACTIONS(520), 1, + sym_number, + STATE(251), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4027] = 6, + [4072] = 6, + ACTIONS(522), 1, + sym_identifier_content, + ACTIONS(524), 1, + sym_number, + ACTIONS(526), 1, + anon_sym_LBRACK, + ACTIONS(528), 1, + anon_sym_DQUOTE, + ACTIONS(530), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(90), 5, + sym__primitive, + sym_identifier, + sym_array, + sym_string, + sym_multi_line_string, + [4095] = 6, ACTIONS(25), 1, sym_identifier_content, - ACTIONS(413), 1, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(523), 1, + ACTIONS(532), 1, sym_number, - STATE(239), 5, + STATE(170), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4050] = 6, - ACTIONS(525), 1, + [4118] = 6, + ACTIONS(534), 1, sym_identifier_content, - ACTIONS(527), 1, + ACTIONS(536), 1, sym_number, - ACTIONS(529), 1, + ACTIONS(538), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(533), 1, + ACTIONS(542), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(119), 5, + STATE(112), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4073] = 6, - ACTIONS(513), 1, + [4141] = 6, + ACTIONS(522), 1, sym_identifier_content, - ACTIONS(517), 1, + ACTIONS(526), 1, anon_sym_LBRACK, - ACTIONS(519), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(521), 1, + ACTIONS(530), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(535), 1, + ACTIONS(544), 1, sym_number, - STATE(105), 5, + STATE(94), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4096] = 6, - ACTIONS(525), 1, + [4164] = 6, + ACTIONS(534), 1, sym_identifier_content, - ACTIONS(529), 1, + ACTIONS(538), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(533), 1, + ACTIONS(542), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(537), 1, + ACTIONS(546), 1, sym_number, - STATE(110), 5, + STATE(111), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4119] = 4, - ACTIONS(539), 1, - anon_sym_DOT, - STATE(158), 2, - sym_variable_property, - aux_sym_identifier_repeat1, - ACTIONS(169), 3, - sym_identifier_content, - sym_number, - anon_sym_DQUOTE, - ACTIONS(167), 4, - anon_sym_COMMA, - anon_sym_LBRACK, - anon_sym_RBRACK, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4138] = 6, - ACTIONS(525), 1, + [4187] = 6, + ACTIONS(534), 1, sym_identifier_content, - ACTIONS(529), 1, + ACTIONS(538), 1, anon_sym_LBRACK, - ACTIONS(531), 1, + ACTIONS(540), 1, anon_sym_DQUOTE, - ACTIONS(533), 1, + ACTIONS(542), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(541), 1, + ACTIONS(548), 1, sym_number, - STATE(109), 5, + STATE(99), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4161] = 6, + [4210] = 6, ACTIONS(25), 1, sym_identifier_content, - ACTIONS(413), 1, + ACTIONS(410), 1, anon_sym_LBRACK, - ACTIONS(415), 1, + ACTIONS(412), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, + ACTIONS(414), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(543), 1, + ACTIONS(550), 1, sym_number, - STATE(300), 5, + STATE(305), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4184] = 6, - ACTIONS(513), 1, + [4233] = 6, + ACTIONS(522), 1, sym_identifier_content, - ACTIONS(517), 1, + ACTIONS(526), 1, anon_sym_LBRACK, - ACTIONS(519), 1, + ACTIONS(528), 1, anon_sym_DQUOTE, - ACTIONS(521), 1, + ACTIONS(530), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(545), 1, + ACTIONS(552), 1, sym_number, - STATE(76), 5, + STATE(110), 5, sym__primitive, sym_identifier, sym_array, sym_string, sym_multi_line_string, - [4207] = 4, - ACTIONS(547), 1, + [4256] = 4, + ACTIONS(554), 1, anon_sym_DOT, - STATE(158), 2, + STATE(161), 2, sym_variable_property, aux_sym_identifier_repeat1, ACTIONS(162), 3, @@ -6275,44 +6323,39 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4226] = 4, - ACTIONS(539), 1, + [4275] = 4, + ACTIONS(554), 1, anon_sym_DOT, - STATE(154), 2, + STATE(150), 2, sym_variable_property, aux_sym_identifier_repeat1, - ACTIONS(175), 3, + ACTIONS(168), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(173), 4, + ACTIONS(166), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4245] = 6, - ACTIONS(25), 1, + [4294] = 2, + ACTIONS(250), 1, + aux_sym_import_token1, + ACTIONS(252), 8, + anon_sym_COMMA, + anon_sym_LPAREN, + anon_sym_RPAREN, sym_identifier_content, - ACTIONS(413), 1, + sym_number, anon_sym_LBRACK, - ACTIONS(415), 1, anon_sym_DQUOTE, - ACTIONS(417), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(550), 1, - sym_number, - STATE(170), 5, - sym__primitive, - sym_identifier, - sym_array, - sym_string, - sym_multi_line_string, - [4268] = 3, - ACTIONS(552), 1, - anon_sym_COLON, + [4308] = 3, ACTIONS(556), 1, + anon_sym_COLON, + ACTIONS(560), 1, aux_sym_import_token1, - ACTIONS(554), 7, + ACTIONS(558), 7, anon_sym_COMMA, anon_sym_RPAREN, sym_identifier_content, @@ -6320,10 +6363,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4284] = 2, - ACTIONS(250), 1, + [4324] = 2, + ACTIONS(238), 1, aux_sym_import_token1, - ACTIONS(252), 8, + ACTIONS(240), 8, anon_sym_COMMA, anon_sym_LPAREN, anon_sym_RPAREN, @@ -6332,19 +6375,30 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4298] = 2, - ACTIONS(246), 1, + [4338] = 2, + ACTIONS(352), 1, aux_sym_import_token1, - ACTIONS(248), 8, + ACTIONS(354), 7, anon_sym_COMMA, - anon_sym_LPAREN, anon_sym_RPAREN, sym_identifier_content, sym_number, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4312] = 2, + [4351] = 3, + ACTIONS(562), 1, + anon_sym_COMMA, + ACTIONS(564), 1, + aux_sym_import_token1, + ACTIONS(566), 6, + anon_sym_RPAREN, + sym_identifier_content, + sym_number, + anon_sym_LBRACK, + anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [4366] = 2, ACTIONS(177), 4, anon_sym_COMMA, anon_sym_LBRACK, @@ -6355,41 +6409,42 @@ static const uint16_t ts_small_parse_table[] = { sym_number, anon_sym_DQUOTE, anon_sym_DOT, - [4325] = 2, - ACTIONS(360), 1, - aux_sym_import_token1, - ACTIONS(362), 7, + [4379] = 3, + ACTIONS(568), 1, anon_sym_COMMA, + ACTIONS(570), 1, + aux_sym_import_token1, + ACTIONS(572), 6, anon_sym_RPAREN, sym_identifier_content, sym_number, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4338] = 3, - ACTIONS(558), 1, - anon_sym_COMMA, - ACTIONS(560), 1, + [4394] = 2, + ACTIONS(364), 1, aux_sym_import_token1, - ACTIONS(562), 6, + ACTIONS(366), 7, + anon_sym_COMMA, anon_sym_RPAREN, sym_identifier_content, sym_number, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4353] = 2, - ACTIONS(352), 1, - aux_sym_import_token1, - ACTIONS(354), 7, + [4407] = 3, + ACTIONS(574), 1, anon_sym_COMMA, + ACTIONS(576), 1, + aux_sym_import_token1, + ACTIONS(578), 6, anon_sym_RPAREN, sym_identifier_content, sym_number, anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4366] = 2, + [4422] = 2, ACTIONS(300), 1, aux_sym_import_token1, ACTIONS(302), 7, @@ -6400,10 +6455,10 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4379] = 2, - ACTIONS(344), 1, + [4435] = 2, + ACTIONS(288), 1, aux_sym_import_token1, - ACTIONS(346), 7, + ACTIONS(290), 7, anon_sym_COMMA, anon_sym_RPAREN, sym_identifier_content, @@ -6411,29 +6466,7 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4392] = 3, - ACTIONS(564), 1, - anon_sym_COMMA, - ACTIONS(566), 1, - aux_sym_import_token1, - ACTIONS(568), 6, - anon_sym_RPAREN, - sym_identifier_content, - sym_number, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4407] = 2, - ACTIONS(570), 1, - aux_sym_import_token1, - ACTIONS(572), 6, - anon_sym_RPAREN, - sym_identifier_content, - sym_number, - anon_sym_LBRACK, - anon_sym_DQUOTE, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4419] = 2, + [4448] = 2, ACTIONS(354), 3, sym_identifier_content, sym_number, @@ -6443,58 +6476,67 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4431] = 2, - ACTIONS(574), 1, - aux_sym_import_token1, - ACTIONS(576), 6, - anon_sym_RPAREN, + [4460] = 2, + ACTIONS(302), 3, sym_identifier_content, sym_number, - anon_sym_LBRACK, anon_sym_DQUOTE, + ACTIONS(300), 4, + anon_sym_COMMA, + anon_sym_LBRACK, + anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4443] = 2, - ACTIONS(248), 3, + [4472] = 2, + ACTIONS(240), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(246), 4, + ACTIONS(238), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4455] = 2, - ACTIONS(346), 3, + [4484] = 2, + ACTIONS(366), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(344), 4, + ACTIONS(364), 4, anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4467] = 3, - ACTIONS(578), 1, - anon_sym_COMMA, - ACTIONS(580), 3, + [4496] = 2, + ACTIONS(290), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(582), 3, + ACTIONS(288), 4, + anon_sym_COMMA, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4481] = 2, - ACTIONS(302), 3, + [4508] = 2, + ACTIONS(580), 1, + aux_sym_import_token1, + ACTIONS(582), 6, + anon_sym_RPAREN, sym_identifier_content, sym_number, + anon_sym_LBRACK, anon_sym_DQUOTE, - ACTIONS(300), 4, - anon_sym_COMMA, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + [4520] = 2, + ACTIONS(584), 1, + aux_sym_import_token1, + ACTIONS(586), 6, + anon_sym_RPAREN, + sym_identifier_content, + sym_number, anon_sym_LBRACK, - anon_sym_RBRACK, + anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4493] = 2, + [4532] = 2, ACTIONS(252), 3, sym_identifier_content, sym_number, @@ -6504,921 +6546,947 @@ static const uint16_t ts_small_parse_table[] = { anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4505] = 2, - ACTIONS(362), 3, + [4544] = 3, + ACTIONS(588), 1, + anon_sym_COMMA, + ACTIONS(590), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(360), 4, - anon_sym_COMMA, + ACTIONS(592), 3, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4517] = 2, - ACTIONS(584), 3, + [4558] = 2, + ACTIONS(594), 1, + aux_sym_import_token1, + ACTIONS(596), 6, anon_sym_RPAREN, + sym_identifier_content, + sym_number, anon_sym_LBRACK, + anon_sym_DQUOTE, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(586), 3, + [4570] = 2, + ACTIONS(598), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(600), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - [4528] = 2, - ACTIONS(576), 3, + [4581] = 2, + ACTIONS(582), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(588), 3, + ACTIONS(602), 3, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4539] = 2, - ACTIONS(590), 3, + [4592] = 2, + ACTIONS(586), 3, + sym_identifier_content, + sym_number, + anon_sym_DQUOTE, + ACTIONS(604), 3, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(592), 3, + [4603] = 2, + ACTIONS(606), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(608), 3, + sym_identifier_content, + sym_number, + anon_sym_DQUOTE, + [4614] = 2, + ACTIONS(610), 3, + anon_sym_RPAREN, + anon_sym_LBRACK, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(612), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - [4550] = 2, - ACTIONS(594), 3, + [4625] = 2, + ACTIONS(614), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(596), 3, + ACTIONS(616), 3, anon_sym_LBRACK, anon_sym_RBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4561] = 2, - ACTIONS(572), 3, + [4636] = 2, + ACTIONS(596), 3, sym_identifier_content, sym_number, anon_sym_DQUOTE, - ACTIONS(598), 3, + ACTIONS(618), 3, anon_sym_RPAREN, anon_sym_LBRACK, anon_sym_DQUOTE_DQUOTE_DQUOTE, - [4572] = 5, - ACTIONS(600), 1, - anon_sym_DQUOTE, - ACTIONS(602), 1, - anon_sym_DOLLAR_LBRACE, - ACTIONS(605), 1, - sym_string_chars, - STATE(185), 1, - aux_sym_string_repeat1, - STATE(224), 1, - sym_string_interpolation, - [4588] = 5, - ACTIONS(600), 1, + [4647] = 5, + ACTIONS(620), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - ACTIONS(608), 1, + ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(611), 1, + ACTIONS(624), 1, sym_string_chars, - STATE(186), 1, + STATE(193), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(229), 1, sym_string_interpolation, - [4604] = 5, - ACTIONS(614), 1, - anon_sym_DQUOTE, - ACTIONS(616), 1, + [4663] = 5, + ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(624), 1, sym_string_chars, - STATE(185), 1, + ACTIONS(626), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(193), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(229), 1, sym_string_interpolation, - [4620] = 5, - ACTIONS(620), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, + [4679] = 5, ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(624), 1, sym_string_chars, - STATE(186), 1, + ACTIONS(628), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(193), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(229), 1, sym_string_interpolation, - [4636] = 5, - ACTIONS(616), 1, + [4695] = 5, + ACTIONS(630), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + ACTIONS(632), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(635), 1, sym_string_chars, - ACTIONS(626), 1, - anon_sym_DQUOTE, - STATE(185), 1, + STATE(193), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(229), 1, sym_string_interpolation, - [4652] = 5, - ACTIONS(616), 1, + [4711] = 5, + ACTIONS(638), 1, + anon_sym_DQUOTE, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(628), 1, - anon_sym_DQUOTE, - STATE(185), 1, + STATE(205), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(227), 1, sym_string_interpolation, - [4668] = 5, + [4727] = 5, ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(624), 1, sym_string_chars, - ACTIONS(630), 1, + ACTIONS(644), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(188), 1, + STATE(192), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(229), 1, sym_string_interpolation, - [4684] = 5, - ACTIONS(616), 1, + [4743] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(632), 1, + ACTIONS(646), 1, anon_sym_DQUOTE, - STATE(190), 1, + STATE(198), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(227), 1, sym_string_interpolation, - [4700] = 5, - ACTIONS(622), 1, + [4759] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(624), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(634), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(186), 1, + ACTIONS(648), 1, + anon_sym_DQUOTE, + STATE(194), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(227), 1, sym_string_interpolation, - [4716] = 5, - ACTIONS(616), 1, + [4775] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(636), 1, + ACTIONS(650), 1, anon_sym_DQUOTE, - STATE(185), 1, + STATE(205), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(227), 1, sym_string_interpolation, - [4732] = 5, + [4791] = 5, ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(624), 1, sym_string_chars, - ACTIONS(638), 1, + ACTIONS(652), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(186), 1, + STATE(190), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(229), 1, sym_string_interpolation, - [4748] = 5, - ACTIONS(622), 1, + [4807] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(624), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(640), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(186), 1, + ACTIONS(654), 1, + anon_sym_DQUOTE, + STATE(201), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(227), 1, sym_string_interpolation, - [4764] = 5, - ACTIONS(622), 1, + [4823] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(624), 1, + ACTIONS(642), 1, sym_string_chars, + ACTIONS(656), 1, + anon_sym_DQUOTE, + STATE(205), 1, + aux_sym_string_repeat1, + STATE(227), 1, + sym_string_interpolation, + [4839] = 5, + ACTIONS(640), 1, + anon_sym_DOLLAR_LBRACE, ACTIONS(642), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(195), 1, + sym_string_chars, + ACTIONS(658), 1, + anon_sym_DQUOTE, + STATE(206), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(227), 1, sym_string_interpolation, - [4780] = 5, + [4855] = 5, ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, ACTIONS(624), 1, sym_string_chars, - ACTIONS(644), 1, + ACTIONS(660), 1, anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(196), 1, + STATE(191), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(229), 1, sym_string_interpolation, - [4796] = 5, - ACTIONS(616), 1, + [4871] = 5, + ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(624), 1, sym_string_chars, - ACTIONS(646), 1, - anon_sym_DQUOTE, - STATE(189), 1, + ACTIONS(662), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(207), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(229), 1, sym_string_interpolation, - [4812] = 5, - ACTIONS(622), 1, + [4887] = 5, + ACTIONS(630), 1, + anon_sym_DQUOTE, + ACTIONS(664), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(624), 1, + ACTIONS(667), 1, sym_string_chars, - ACTIONS(648), 1, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - STATE(193), 1, + STATE(205), 1, aux_sym_string_repeat1, - STATE(221), 1, + STATE(227), 1, sym_string_interpolation, - [4828] = 5, - ACTIONS(616), 1, + [4903] = 5, + ACTIONS(640), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(642), 1, sym_string_chars, - ACTIONS(650), 1, + ACTIONS(670), 1, anon_sym_DQUOTE, - STATE(194), 1, + STATE(205), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(227), 1, sym_string_interpolation, - [4844] = 5, - ACTIONS(616), 1, + [4919] = 5, + ACTIONS(622), 1, anon_sym_DOLLAR_LBRACE, - ACTIONS(618), 1, + ACTIONS(624), 1, sym_string_chars, - ACTIONS(652), 1, - anon_sym_DQUOTE, - STATE(187), 1, + ACTIONS(672), 1, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + STATE(193), 1, aux_sym_string_repeat1, - STATE(224), 1, + STATE(229), 1, sym_string_interpolation, - [4860] = 3, - ACTIONS(654), 1, + [4935] = 3, + ACTIONS(674), 1, anon_sym_RBRACE, - ACTIONS(656), 1, + ACTIONS(676), 1, anon_sym_case, - STATE(208), 2, + STATE(209), 2, sym_menu_case, aux_sym_menu_block_repeat1, - [4871] = 3, - ACTIONS(656), 1, + [4946] = 3, + ACTIONS(678), 1, + anon_sym_RBRACE, + ACTIONS(680), 1, anon_sym_case, - ACTIONS(658), 1, + STATE(209), 2, + sym_menu_case, + aux_sym_menu_block_repeat1, + [4957] = 2, + STATE(337), 1, + sym_variable_property_type, + ACTIONS(683), 3, + anon_sym_as, + anon_sym_get, + anon_sym_key, + [4966] = 3, + ACTIONS(676), 1, + anon_sym_case, + ACTIONS(685), 1, anon_sym_RBRACE, - STATE(203), 2, + STATE(209), 2, sym_menu_case, aux_sym_menu_block_repeat1, - [4882] = 3, - ACTIONS(656), 1, + [4977] = 3, + ACTIONS(676), 1, anon_sym_case, - ACTIONS(660), 1, + ACTIONS(687), 1, anon_sym_RBRACE, - STATE(208), 2, + STATE(211), 2, sym_menu_case, aux_sym_menu_block_repeat1, - [4893] = 2, - STATE(330), 1, + [4988] = 2, + STATE(336), 1, sym_variable_property_type, - ACTIONS(662), 3, + ACTIONS(683), 3, anon_sym_as, anon_sym_get, anon_sym_key, - [4902] = 2, + [4997] = 2, STATE(334), 1, sym_variable_property_type, - ACTIONS(662), 3, + ACTIONS(683), 3, anon_sym_as, anon_sym_get, anon_sym_key, - [4911] = 3, - ACTIONS(664), 1, - anon_sym_RBRACE, - ACTIONS(666), 1, + [5006] = 3, + ACTIONS(676), 1, anon_sym_case, + ACTIONS(689), 1, + anon_sym_RBRACE, STATE(208), 2, sym_menu_case, aux_sym_menu_block_repeat1, - [4922] = 2, - STATE(333), 1, - sym_variable_property_type, - ACTIONS(662), 3, - anon_sym_as, - anon_sym_get, - anon_sym_key, - [4931] = 2, - STATE(332), 1, + [5017] = 2, + STATE(344), 1, sym_variable_property_type, - ACTIONS(662), 3, + ACTIONS(683), 3, anon_sym_as, anon_sym_get, anon_sym_key, - [4940] = 3, - ACTIONS(656), 1, - anon_sym_case, - ACTIONS(669), 1, - anon_sym_RBRACE, - STATE(205), 2, - sym_menu_case, - aux_sym_menu_block_repeat1, - [4951] = 1, - ACTIONS(671), 3, + [5026] = 3, + ACTIONS(691), 1, + aux_sym_import_token1, + ACTIONS(693), 1, + anon_sym_LPAREN, + STATE(37), 1, + sym_parameter_list, + [5036] = 1, + ACTIONS(695), 3, sym_string_chars, anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_DOLLAR_LBRACE, - [4957] = 1, - ACTIONS(673), 3, + [5042] = 3, + ACTIONS(697), 1, + anon_sym_LPAREN, + ACTIONS(699), 1, + anon_sym_DQUOTE, + STATE(231), 1, + sym_string, + [5052] = 1, + ACTIONS(701), 3, sym_string_chars, anon_sym_DQUOTE, anon_sym_DOLLAR_LBRACE, - [4963] = 3, - ACTIONS(675), 1, + [5058] = 3, + ACTIONS(703), 1, anon_sym_STAR_SLASH, - ACTIONS(677), 1, + ACTIONS(705), 1, sym_block_comment_content, - STATE(227), 1, + STATE(222), 1, aux_sym_block_comment_repeat1, - [4973] = 3, - ACTIONS(679), 1, - anon_sym_COLON, - ACTIONS(681), 1, - anon_sym_RPAREN, - STATE(289), 1, - sym_menu_case_body, - [4983] = 3, - ACTIONS(683), 1, - anon_sym_LPAREN, - ACTIONS(685), 1, - anon_sym_DQUOTE, - STATE(225), 1, - sym_string, - [4993] = 3, - ACTIONS(687), 1, - aux_sym_import_token1, - ACTIONS(689), 1, - anon_sym_LPAREN, - STATE(50), 1, - sym_parameter_list, - [5003] = 3, - ACTIONS(691), 1, + [5068] = 3, + ACTIONS(707), 1, anon_sym_STAR_SLASH, - ACTIONS(693), 1, + ACTIONS(709), 1, + sym_block_comment_content, + STATE(222), 1, + aux_sym_block_comment_repeat1, + [5078] = 3, + ACTIONS(712), 1, + anon_sym_STAR_SLASH, + ACTIONS(714), 1, sym_block_comment_content, - STATE(214), 1, + STATE(226), 1, aux_sym_block_comment_repeat1, - [5013] = 3, - ACTIONS(695), 1, + [5088] = 1, + ACTIONS(695), 3, + sym_string_chars, + anon_sym_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [5094] = 3, + ACTIONS(716), 1, aux_sym_import_token1, - ACTIONS(697), 1, + ACTIONS(718), 1, anon_sym_LPAREN, STATE(38), 1, sym_parameter_list, - [5023] = 1, - ACTIONS(673), 3, - sym_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [5029] = 1, - ACTIONS(699), 3, - sym_string_chars, - anon_sym_DQUOTE_DQUOTE_DQUOTE, - anon_sym_DOLLAR_LBRACE, - [5035] = 3, - ACTIONS(677), 1, + [5104] = 3, + ACTIONS(705), 1, sym_block_comment_content, - ACTIONS(701), 1, + ACTIONS(720), 1, anon_sym_STAR_SLASH, - STATE(227), 1, + STATE(222), 1, aux_sym_block_comment_repeat1, - [5045] = 1, - ACTIONS(671), 3, + [5114] = 1, + ACTIONS(722), 3, sym_string_chars, anon_sym_DQUOTE, anon_sym_DOLLAR_LBRACE, - [5051] = 1, - ACTIONS(699), 3, + [5120] = 3, + ACTIONS(724), 1, + anon_sym_STAR_SLASH, + ACTIONS(726), 1, + sym_block_comment_content, + STATE(221), 1, + aux_sym_block_comment_repeat1, + [5130] = 1, + ACTIONS(722), 3, sym_string_chars, - anon_sym_DQUOTE, + anon_sym_DQUOTE_DQUOTE_DQUOTE, + anon_sym_DOLLAR_LBRACE, + [5136] = 1, + ACTIONS(701), 3, + sym_string_chars, + anon_sym_DQUOTE_DQUOTE_DQUOTE, anon_sym_DOLLAR_LBRACE, - [5057] = 3, - ACTIONS(679), 1, + [5142] = 3, + ACTIONS(728), 1, anon_sym_COLON, - ACTIONS(703), 1, + ACTIONS(730), 1, anon_sym_RPAREN, - STATE(292), 1, + STATE(258), 1, sym_menu_case_body, - [5067] = 3, - ACTIONS(705), 1, - anon_sym_STAR_SLASH, - ACTIONS(707), 1, - sym_block_comment_content, - STATE(222), 1, - aux_sym_block_comment_repeat1, - [5077] = 3, - ACTIONS(709), 1, - anon_sym_STAR_SLASH, - ACTIONS(711), 1, - sym_block_comment_content, - STATE(227), 1, - aux_sym_block_comment_repeat1, - [5087] = 2, - ACTIONS(714), 1, - sym_identifier_content, - STATE(329), 1, - sym_identifier, - [5094] = 2, - ACTIONS(716), 1, + [5152] = 3, + ACTIONS(728), 1, + anon_sym_COLON, + ACTIONS(732), 1, + anon_sym_RPAREN, + STATE(253), 1, + sym_menu_case_body, + [5162] = 2, + ACTIONS(734), 1, anon_sym_LBRACE, - STATE(41), 1, + STATE(25), 1, sym_block, - [5101] = 2, - ACTIONS(718), 1, + [5169] = 2, + ACTIONS(734), 1, anon_sym_LBRACE, - STATE(40), 1, + STATE(22), 1, sym_block, - [5108] = 2, - ACTIONS(720), 1, - aux_sym_import_token1, - ACTIONS(722), 1, - anon_sym_LPAREN, - [5115] = 2, - ACTIONS(724), 1, - anon_sym_DQUOTE, - STATE(301), 1, - sym_string, - [5122] = 2, - ACTIONS(714), 1, + [5176] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(299), 1, + STATE(98), 1, sym_identifier, - [5129] = 2, - ACTIONS(726), 1, + [5183] = 2, + ACTIONS(738), 1, sym_identifier_content, - STATE(337), 1, + STATE(333), 1, sym_identifier, - [5136] = 2, - ACTIONS(726), 1, + [5190] = 2, + ACTIONS(738), 1, sym_identifier_content, - STATE(297), 1, + STATE(330), 1, sym_identifier, - [5143] = 2, - ACTIONS(718), 1, - anon_sym_LBRACE, - STATE(83), 1, - sym_block, - [5150] = 2, - ACTIONS(718), 1, - anon_sym_LBRACE, - STATE(82), 1, - sym_block, - [5157] = 2, - ACTIONS(728), 1, - aux_sym_import_token1, - ACTIONS(730), 1, - anon_sym_LPAREN, - [5164] = 2, - ACTIONS(732), 1, - aux_sym_import_token1, - ACTIONS(734), 1, - anon_sym_RPAREN, - [5171] = 2, - ACTIONS(736), 1, - aux_sym_import_token1, - ACTIONS(738), 1, - anon_sym_RPAREN, - [5178] = 2, + [5197] = 2, ACTIONS(740), 1, aux_sym_import_token1, ACTIONS(742), 1, - anon_sym_RPAREN, - [5185] = 2, - ACTIONS(726), 1, - sym_identifier_content, - STATE(63), 1, - sym_identifier, - [5192] = 2, - ACTIONS(726), 1, - sym_identifier_content, - STATE(296), 1, - sym_identifier, - [5199] = 2, - ACTIONS(744), 1, - anon_sym_LBRACE, - STATE(21), 1, - sym_block, - [5206] = 2, + anon_sym_LPAREN, + [5204] = 2, ACTIONS(744), 1, - anon_sym_LBRACE, - STATE(30), 1, - sym_block, - [5213] = 2, + anon_sym_DQUOTE, + STATE(256), 1, + sym_string, + [5211] = 2, ACTIONS(746), 1, - anon_sym_LBRACE, - STATE(34), 1, - sym_menu_block, - [5220] = 2, + anon_sym_LPAREN, + STATE(260), 1, + sym_parameter_list, + [5218] = 2, ACTIONS(748), 1, aux_sym_import_token1, ACTIONS(750), 1, anon_sym_LPAREN, - [5227] = 2, - ACTIONS(714), 1, - sym_identifier_content, - STATE(326), 1, - sym_identifier, - [5234] = 2, - ACTIONS(752), 1, + [5225] = 2, + ACTIONS(746), 1, anon_sym_LPAREN, - STATE(236), 1, + STATE(262), 1, sym_parameter_list, - [5241] = 2, - ACTIONS(726), 1, + [5232] = 2, + ACTIONS(736), 1, sym_identifier_content, STATE(316), 1, sym_identifier, - [5248] = 2, - ACTIONS(754), 1, - aux_sym_import_token1, - ACTIONS(756), 1, - anon_sym_LPAREN, - [5255] = 2, - ACTIONS(726), 1, + [5239] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(318), 1, + STATE(341), 1, sym_identifier, - [5262] = 2, - ACTIONS(758), 1, + [5246] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(124), 1, + STATE(57), 1, sym_identifier, - [5269] = 2, + [5253] = 2, ACTIONS(752), 1, + aux_sym_import_token1, + ACTIONS(754), 1, anon_sym_LPAREN, - STATE(237), 1, - sym_parameter_list, - [5276] = 2, + [5260] = 2, + ACTIONS(756), 1, + aux_sym_import_token1, + ACTIONS(758), 1, + anon_sym_RPAREN, + [5267] = 2, ACTIONS(760), 1, aux_sym_import_token1, ACTIONS(762), 1, - anon_sym_LPAREN, - [5283] = 2, - ACTIONS(726), 1, - sym_identifier_content, - STATE(113), 1, - sym_identifier, - [5290] = 2, - ACTIONS(764), 1, + anon_sym_RPAREN, + [5274] = 1, + ACTIONS(764), 2, + anon_sym_RBRACE, + anon_sym_case, + [5279] = 1, + ACTIONS(766), 2, + anon_sym_RBRACE, + anon_sym_case, + [5284] = 2, + ACTIONS(768), 1, aux_sym_import_token1, - ACTIONS(766), 1, + ACTIONS(770), 1, anon_sym_RPAREN, - [5297] = 2, - ACTIONS(724), 1, + [5291] = 2, + ACTIONS(772), 1, + aux_sym_import_token1, + ACTIONS(774), 1, + anon_sym_LPAREN, + [5298] = 1, + ACTIONS(776), 2, + anon_sym_RBRACE, + anon_sym_case, + [5303] = 2, + ACTIONS(744), 1, anon_sym_DQUOTE, - STATE(238), 1, + STATE(301), 1, sym_string, - [5304] = 2, - ACTIONS(758), 1, + [5310] = 2, + ACTIONS(728), 1, + anon_sym_COLON, + STATE(249), 1, + sym_menu_case_body, + [5317] = 2, + ACTIONS(778), 1, + aux_sym_import_token1, + ACTIONS(780), 1, + anon_sym_LPAREN, + [5324] = 2, + ACTIONS(782), 1, sym_identifier_content, - STATE(53), 1, + STATE(107), 1, sym_identifier, - [5311] = 2, - ACTIONS(716), 1, + [5331] = 1, + ACTIONS(784), 2, + anon_sym_RBRACE, + anon_sym_case, + [5336] = 2, + ACTIONS(728), 1, + anon_sym_COLON, + STATE(250), 1, + sym_menu_case_body, + [5343] = 2, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(68), 1, + STATE(88), 1, sym_block, - [5318] = 2, - ACTIONS(716), 1, + [5350] = 2, + ACTIONS(734), 1, anon_sym_LBRACE, - STATE(67), 1, + STATE(26), 1, sym_block, - [5325] = 2, - ACTIONS(714), 1, + [5357] = 2, + ACTIONS(786), 1, + anon_sym_LBRACE, + STATE(89), 1, + sym_block, + [5364] = 2, + ACTIONS(782), 1, sym_identifier_content, - STATE(240), 1, + STATE(58), 1, sym_identifier, - [5332] = 2, - ACTIONS(744), 1, + [5371] = 2, + ACTIONS(788), 1, anon_sym_LBRACE, - STATE(27), 1, + STATE(122), 1, sym_block, - [5339] = 2, - ACTIONS(768), 1, - aux_sym_import_token1, - ACTIONS(770), 1, - anon_sym_RPAREN, - [5346] = 2, - ACTIONS(726), 1, + [5378] = 2, + ACTIONS(788), 1, + anon_sym_LBRACE, + STATE(121), 1, + sym_block, + [5385] = 2, + ACTIONS(738), 1, sym_identifier_content, - STATE(312), 1, + STATE(306), 1, sym_identifier, - [5353] = 2, - ACTIONS(726), 1, + [5392] = 2, + ACTIONS(699), 1, + anon_sym_DQUOTE, + STATE(232), 1, + sym_string, + [5399] = 2, + ACTIONS(790), 1, + aux_sym_import_token1, + ACTIONS(792), 1, + anon_sym_RPAREN, + [5406] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(309), 1, + STATE(308), 1, sym_identifier, - [5360] = 2, - ACTIONS(718), 1, + [5413] = 2, + ACTIONS(734), 1, anon_sym_LBRACE, - STATE(37), 1, + STATE(23), 1, sym_block, - [5367] = 2, - ACTIONS(716), 1, + [5420] = 2, + ACTIONS(788), 1, anon_sym_LBRACE, STATE(33), 1, sym_block, - [5374] = 2, - ACTIONS(726), 1, + [5427] = 2, + ACTIONS(788), 1, + anon_sym_LBRACE, + STATE(41), 1, + sym_block, + [5434] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(99), 1, + STATE(242), 1, sym_identifier, - [5381] = 2, - ACTIONS(772), 1, + [5441] = 2, + ACTIONS(794), 1, anon_sym_LBRACE, STATE(29), 1, sym_block, - [5388] = 2, - ACTIONS(774), 1, + [5448] = 2, + ACTIONS(796), 1, anon_sym_LBRACE, - STATE(39), 1, + STATE(44), 1, sym_menu_block, - [5395] = 2, - ACTIONS(776), 1, - aux_sym_import_token1, - ACTIONS(778), 1, - anon_sym_RPAREN, - [5402] = 2, - ACTIONS(780), 1, - aux_sym_import_token1, + [5455] = 2, + ACTIONS(736), 1, + sym_identifier_content, + STATE(240), 1, + sym_identifier, + [5462] = 2, + ACTIONS(736), 1, + sym_identifier_content, + STATE(309), 1, + sym_identifier, + [5469] = 2, ACTIONS(782), 1, + sym_identifier_content, + STATE(109), 1, + sym_identifier, + [5476] = 2, + ACTIONS(736), 1, + sym_identifier_content, + STATE(310), 1, + sym_identifier, + [5483] = 2, + ACTIONS(798), 1, + aux_sym_import_token1, + ACTIONS(800), 1, anon_sym_LPAREN, - [5409] = 2, - ACTIONS(758), 1, + [5490] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(73), 1, + STATE(313), 1, sym_identifier, - [5416] = 2, - ACTIONS(718), 1, - anon_sym_LBRACE, - STATE(48), 1, - sym_block, - [5423] = 2, - ACTIONS(726), 1, + [5497] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(320), 1, + STATE(319), 1, sym_identifier, - [5430] = 2, - ACTIONS(772), 1, + [5504] = 2, + ACTIONS(794), 1, anon_sym_LBRACE, - STATE(31), 1, + STATE(24), 1, sym_block, - [5437] = 2, - ACTIONS(716), 1, + [5511] = 2, + ACTIONS(788), 1, anon_sym_LBRACE, - STATE(32), 1, + STATE(49), 1, sym_block, - [5444] = 2, - ACTIONS(744), 1, + [5518] = 2, + ACTIONS(786), 1, anon_sym_LBRACE, - STATE(22), 1, + STATE(48), 1, sym_block, - [5451] = 2, - ACTIONS(772), 1, + [5525] = 2, + ACTIONS(794), 1, anon_sym_LBRACE, - STATE(20), 1, + STATE(21), 1, sym_block, - [5458] = 2, - ACTIONS(772), 1, + [5532] = 2, + ACTIONS(794), 1, anon_sym_LBRACE, - STATE(28), 1, + STATE(27), 1, sym_block, - [5465] = 2, - ACTIONS(772), 1, + [5539] = 2, + ACTIONS(794), 1, anon_sym_LBRACE, - STATE(24), 1, + STATE(31), 1, sym_block, - [5472] = 2, - ACTIONS(784), 1, + [5546] = 2, + ACTIONS(802), 1, aux_sym_import_token1, - ACTIONS(786), 1, + ACTIONS(804), 1, anon_sym_RPAREN, - [5479] = 2, - ACTIONS(685), 1, - anon_sym_DQUOTE, - STATE(215), 1, - sym_string, - [5486] = 2, - ACTIONS(744), 1, - anon_sym_LBRACE, - STATE(23), 1, - sym_block, - [5493] = 1, - ACTIONS(788), 2, - anon_sym_RBRACE, - anon_sym_case, - [5498] = 1, - ACTIONS(790), 2, - anon_sym_RBRACE, - anon_sym_case, - [5503] = 2, - ACTIONS(726), 1, - sym_identifier_content, - STATE(249), 1, - sym_identifier, - [5510] = 1, - ACTIONS(792), 2, - anon_sym_RBRACE, - anon_sym_case, - [5515] = 2, - ACTIONS(679), 1, - anon_sym_COLON, - STATE(286), 1, - sym_menu_case_body, - [5522] = 2, - ACTIONS(726), 1, + [5553] = 2, + ACTIONS(738), 1, sym_identifier_content, - STATE(254), 1, + STATE(248), 1, sym_identifier, - [5529] = 1, - ACTIONS(794), 2, - anon_sym_RBRACE, - anon_sym_case, - [5534] = 2, - ACTIONS(679), 1, - anon_sym_COLON, - STATE(287), 1, - sym_menu_case_body, - [5541] = 2, - ACTIONS(796), 1, - aux_sym_import_token1, - ACTIONS(798), 1, - anon_sym_LPAREN, - [5548] = 2, - ACTIONS(800), 1, - aux_sym_import_token1, - ACTIONS(802), 1, - anon_sym_LPAREN, - [5555] = 2, - ACTIONS(752), 1, - anon_sym_LPAREN, - STATE(260), 1, - sym_parameter_list, - [5562] = 2, - ACTIONS(752), 1, - anon_sym_LPAREN, - STATE(261), 1, - sym_parameter_list, - [5569] = 2, - ACTIONS(804), 1, - aux_sym_import_token1, + [5560] = 2, ACTIONS(806), 1, - anon_sym_RPAREN, - [5576] = 2, - ACTIONS(808), 1, aux_sym_import_token1, - ACTIONS(810), 1, + ACTIONS(808), 1, anon_sym_RPAREN, - [5583] = 2, - ACTIONS(812), 1, + [5567] = 2, + ACTIONS(786), 1, + anon_sym_LBRACE, + STATE(35), 1, + sym_block, + [5574] = 2, + ACTIONS(810), 1, aux_sym_import_token1, - ACTIONS(814), 1, + ACTIONS(812), 1, anon_sym_RPAREN, - [5590] = 2, - ACTIONS(816), 1, + [5581] = 2, + ACTIONS(786), 1, + anon_sym_LBRACE, + STATE(50), 1, + sym_block, + [5588] = 2, + ACTIONS(814), 1, aux_sym_import_token1, + ACTIONS(816), 1, + anon_sym_LPAREN, + [5595] = 2, ACTIONS(818), 1, + aux_sym_import_token1, + ACTIONS(820), 1, anon_sym_LPAREN, - [5597] = 2, - ACTIONS(726), 1, + [5602] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(319), 1, + STATE(324), 1, sym_identifier, - [5604] = 2, - ACTIONS(726), 1, + [5609] = 2, + ACTIONS(736), 1, sym_identifier_content, - STATE(317), 1, + STATE(115), 1, sym_identifier, - [5611] = 2, - ACTIONS(820), 1, - aux_sym_import_token1, + [5616] = 2, + ACTIONS(736), 1, + sym_identifier_content, + STATE(323), 1, + sym_identifier, + [5623] = 2, + ACTIONS(736), 1, + sym_identifier_content, + STATE(327), 1, + sym_identifier, + [5630] = 2, ACTIONS(822), 1, - anon_sym_LPAREN, - [5618] = 1, - ACTIONS(824), 1, aux_sym_import_token1, - [5622] = 1, + ACTIONS(824), 1, + anon_sym_LPAREN, + [5637] = 2, ACTIONS(826), 1, - sym_comment_content, - [5626] = 1, + anon_sym_LBRACE, + STATE(39), 1, + sym_menu_block, + [5644] = 2, + ACTIONS(734), 1, + anon_sym_LBRACE, + STATE(20), 1, + sym_block, + [5651] = 2, ACTIONS(828), 1, - anon_sym_EQ, - [5630] = 1, - ACTIONS(830), 1, aux_sym_import_token1, - [5634] = 1, + ACTIONS(830), 1, + anon_sym_LPAREN, + [5658] = 2, ACTIONS(832), 1, - anon_sym_RPAREN, - [5638] = 1, + aux_sym_import_token1, ACTIONS(834), 1, - ts_builtin_sym_end, - [5642] = 1, + anon_sym_RPAREN, + [5665] = 2, ACTIONS(836), 1, aux_sym_import_token1, - [5646] = 1, ACTIONS(838), 1, anon_sym_RPAREN, - [5650] = 1, + [5672] = 2, ACTIONS(840), 1, aux_sym_import_token1, - [5654] = 1, ACTIONS(842), 1, - anon_sym_EQ, - [5658] = 1, + anon_sym_RPAREN, + [5679] = 2, + ACTIONS(746), 1, + anon_sym_LPAREN, + STATE(265), 1, + sym_parameter_list, + [5686] = 2, + ACTIONS(746), 1, + anon_sym_LPAREN, + STATE(264), 1, + sym_parameter_list, + [5693] = 1, ACTIONS(844), 1, - aux_sym_import_token1, - [5662] = 1, - ACTIONS(846), 1, anon_sym_COLON, - [5666] = 1, + [5697] = 1, + ACTIONS(846), 1, + anon_sym_EQ, + [5701] = 1, ACTIONS(848), 1, - anon_sym_RPAREN, - [5670] = 1, + aux_sym_import_token1, + [5705] = 1, ACTIONS(850), 1, anon_sym_RPAREN, - [5674] = 1, + [5709] = 1, ACTIONS(852), 1, - anon_sym_RBRACE, - [5678] = 1, + aux_sym_import_token1, + [5713] = 1, ACTIONS(854), 1, - anon_sym_COLON, - [5682] = 1, + anon_sym_EQ, + [5717] = 1, ACTIONS(856), 1, - sym_number, - [5686] = 1, + anon_sym_RBRACE, + [5721] = 1, ACTIONS(858), 1, aux_sym_import_token1, - [5690] = 1, + [5725] = 1, ACTIONS(860), 1, - sym_comment_content, - [5694] = 1, - ACTIONS(862), 1, anon_sym_EQ, - [5698] = 1, + [5729] = 1, + ACTIONS(862), 1, + anon_sym_RPAREN, + [5733] = 1, ACTIONS(864), 1, - sym_number, - [5702] = 1, + aux_sym_import_token1, + [5737] = 1, ACTIONS(866), 1, aux_sym_import_token1, - [5706] = 1, + [5741] = 1, ACTIONS(868), 1, aux_sym_import_token1, - [5710] = 1, + [5745] = 1, ACTIONS(870), 1, - anon_sym_LPAREN, - [5714] = 1, + anon_sym_RPAREN, + [5749] = 1, ACTIONS(872), 1, - aux_sym_import_token1, - [5718] = 1, + anon_sym_RPAREN, + [5753] = 1, ACTIONS(874), 1, - anon_sym_LPAREN, - [5722] = 1, - ACTIONS(876), 1, aux_sym_import_token1, - [5726] = 1, + [5757] = 1, + ACTIONS(876), 1, + anon_sym_EQ, + [5761] = 1, ACTIONS(878), 1, - anon_sym_LPAREN, - [5730] = 1, + anon_sym_RBRACE, + [5765] = 1, ACTIONS(880), 1, - anon_sym_LPAREN, - [5734] = 1, + aux_sym_import_token1, + [5769] = 1, ACTIONS(882), 1, - anon_sym_LPAREN, - [5738] = 1, + sym_number, + [5773] = 1, ACTIONS(884), 1, aux_sym_import_token1, - [5742] = 1, + [5777] = 1, ACTIONS(886), 1, - anon_sym_EQ, - [5746] = 1, + aux_sym_import_token1, + [5781] = 1, ACTIONS(888), 1, - anon_sym_RBRACE, - [5750] = 1, + sym_comment_content, + [5785] = 1, ACTIONS(890), 1, aux_sym_import_token1, - [5754] = 1, + [5789] = 1, ACTIONS(892), 1, - aux_sym_import_token1, - [5758] = 1, + anon_sym_LPAREN, + [5793] = 1, ACTIONS(894), 1, aux_sym_import_token1, - [5762] = 1, + [5797] = 1, ACTIONS(896), 1, - aux_sym_import_token1, - [5766] = 1, + anon_sym_LPAREN, + [5801] = 1, ACTIONS(898), 1, + anon_sym_LPAREN, + [5805] = 1, + ACTIONS(900), 1, + aux_sym_import_token1, + [5809] = 1, + ACTIONS(902), 1, + sym_comment_content, + [5813] = 1, + ACTIONS(904), 1, + ts_builtin_sym_end, + [5817] = 1, + ACTIONS(906), 1, + anon_sym_COLON, + [5821] = 1, + ACTIONS(908), 1, + sym_number, + [5825] = 1, + ACTIONS(910), 1, + aux_sym_import_token1, + [5829] = 1, + ACTIONS(912), 1, + anon_sym_LPAREN, + [5833] = 1, + ACTIONS(914), 1, + anon_sym_LPAREN, + [5837] = 1, + ACTIONS(916), 1, aux_sym_import_token1, }; @@ -7447,44 +7515,44 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(23)] = 1097, [SMALL_STATE(24)] = 1129, [SMALL_STATE(25)] = 1161, - [SMALL_STATE(26)] = 1189, - [SMALL_STATE(27)] = 1217, - [SMALL_STATE(28)] = 1249, - [SMALL_STATE(29)] = 1281, - [SMALL_STATE(30)] = 1313, + [SMALL_STATE(26)] = 1193, + [SMALL_STATE(27)] = 1225, + [SMALL_STATE(28)] = 1257, + [SMALL_STATE(29)] = 1285, + [SMALL_STATE(30)] = 1317, [SMALL_STATE(31)] = 1345, [SMALL_STATE(32)] = 1377, - [SMALL_STATE(33)] = 1403, - [SMALL_STATE(34)] = 1429, - [SMALL_STATE(35)] = 1455, - [SMALL_STATE(36)] = 1477, - [SMALL_STATE(37)] = 1499, - [SMALL_STATE(38)] = 1525, - [SMALL_STATE(39)] = 1551, - [SMALL_STATE(40)] = 1577, - [SMALL_STATE(41)] = 1603, - [SMALL_STATE(42)] = 1629, - [SMALL_STATE(43)] = 1651, - [SMALL_STATE(44)] = 1673, - [SMALL_STATE(45)] = 1695, - [SMALL_STATE(46)] = 1717, - [SMALL_STATE(47)] = 1739, - [SMALL_STATE(48)] = 1761, - [SMALL_STATE(49)] = 1787, + [SMALL_STATE(33)] = 1399, + [SMALL_STATE(34)] = 1425, + [SMALL_STATE(35)] = 1447, + [SMALL_STATE(36)] = 1473, + [SMALL_STATE(37)] = 1495, + [SMALL_STATE(38)] = 1521, + [SMALL_STATE(39)] = 1547, + [SMALL_STATE(40)] = 1573, + [SMALL_STATE(41)] = 1595, + [SMALL_STATE(42)] = 1621, + [SMALL_STATE(43)] = 1643, + [SMALL_STATE(44)] = 1665, + [SMALL_STATE(45)] = 1691, + [SMALL_STATE(46)] = 1713, + [SMALL_STATE(47)] = 1735, + [SMALL_STATE(48)] = 1757, + [SMALL_STATE(49)] = 1783, [SMALL_STATE(50)] = 1809, [SMALL_STATE(51)] = 1835, [SMALL_STATE(52)] = 1856, - [SMALL_STATE(53)] = 1883, - [SMALL_STATE(54)] = 1906, - [SMALL_STATE(55)] = 1927, - [SMALL_STATE(56)] = 1948, - [SMALL_STATE(57)] = 1975, - [SMALL_STATE(58)] = 1996, - [SMALL_STATE(59)] = 2017, - [SMALL_STATE(60)] = 2038, - [SMALL_STATE(61)] = 2059, - [SMALL_STATE(62)] = 2080, - [SMALL_STATE(63)] = 2101, + [SMALL_STATE(53)] = 1877, + [SMALL_STATE(54)] = 1898, + [SMALL_STATE(55)] = 1925, + [SMALL_STATE(56)] = 1946, + [SMALL_STATE(57)] = 1967, + [SMALL_STATE(58)] = 1990, + [SMALL_STATE(59)] = 2013, + [SMALL_STATE(60)] = 2034, + [SMALL_STATE(61)] = 2061, + [SMALL_STATE(62)] = 2082, + [SMALL_STATE(63)] = 2103, [SMALL_STATE(64)] = 2124, [SMALL_STATE(65)] = 2145, [SMALL_STATE(66)] = 2165, @@ -7550,10 +7618,10 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(126)] = 3365, [SMALL_STATE(127)] = 3385, [SMALL_STATE(128)] = 3407, - [SMALL_STATE(129)] = 3429, - [SMALL_STATE(130)] = 3461, + [SMALL_STATE(129)] = 3439, + [SMALL_STATE(130)] = 3471, [SMALL_STATE(131)] = 3493, - [SMALL_STATE(132)] = 3515, + [SMALL_STATE(132)] = 3525, [SMALL_STATE(133)] = 3547, [SMALL_STATE(134)] = 3579, [SMALL_STATE(135)] = 3611, @@ -7571,630 +7639,643 @@ static const uint32_t ts_small_parse_table_map[] = { [SMALL_STATE(147)] = 3959, [SMALL_STATE(148)] = 3988, [SMALL_STATE(149)] = 4004, - [SMALL_STATE(150)] = 4027, - [SMALL_STATE(151)] = 4050, - [SMALL_STATE(152)] = 4073, - [SMALL_STATE(153)] = 4096, - [SMALL_STATE(154)] = 4119, - [SMALL_STATE(155)] = 4138, - [SMALL_STATE(156)] = 4161, - [SMALL_STATE(157)] = 4184, - [SMALL_STATE(158)] = 4207, - [SMALL_STATE(159)] = 4226, - [SMALL_STATE(160)] = 4245, - [SMALL_STATE(161)] = 4268, - [SMALL_STATE(162)] = 4284, - [SMALL_STATE(163)] = 4298, - [SMALL_STATE(164)] = 4312, - [SMALL_STATE(165)] = 4325, - [SMALL_STATE(166)] = 4338, - [SMALL_STATE(167)] = 4353, - [SMALL_STATE(168)] = 4366, - [SMALL_STATE(169)] = 4379, - [SMALL_STATE(170)] = 4392, - [SMALL_STATE(171)] = 4407, - [SMALL_STATE(172)] = 4419, - [SMALL_STATE(173)] = 4431, - [SMALL_STATE(174)] = 4443, - [SMALL_STATE(175)] = 4455, - [SMALL_STATE(176)] = 4467, - [SMALL_STATE(177)] = 4481, - [SMALL_STATE(178)] = 4493, - [SMALL_STATE(179)] = 4505, - [SMALL_STATE(180)] = 4517, - [SMALL_STATE(181)] = 4528, - [SMALL_STATE(182)] = 4539, - [SMALL_STATE(183)] = 4550, - [SMALL_STATE(184)] = 4561, - [SMALL_STATE(185)] = 4572, - [SMALL_STATE(186)] = 4588, - [SMALL_STATE(187)] = 4604, - [SMALL_STATE(188)] = 4620, + [SMALL_STATE(150)] = 4030, + [SMALL_STATE(151)] = 4049, + [SMALL_STATE(152)] = 4072, + [SMALL_STATE(153)] = 4095, + [SMALL_STATE(154)] = 4118, + [SMALL_STATE(155)] = 4141, + [SMALL_STATE(156)] = 4164, + [SMALL_STATE(157)] = 4187, + [SMALL_STATE(158)] = 4210, + [SMALL_STATE(159)] = 4233, + [SMALL_STATE(160)] = 4256, + [SMALL_STATE(161)] = 4275, + [SMALL_STATE(162)] = 4294, + [SMALL_STATE(163)] = 4308, + [SMALL_STATE(164)] = 4324, + [SMALL_STATE(165)] = 4338, + [SMALL_STATE(166)] = 4351, + [SMALL_STATE(167)] = 4366, + [SMALL_STATE(168)] = 4379, + [SMALL_STATE(169)] = 4394, + [SMALL_STATE(170)] = 4407, + [SMALL_STATE(171)] = 4422, + [SMALL_STATE(172)] = 4435, + [SMALL_STATE(173)] = 4448, + [SMALL_STATE(174)] = 4460, + [SMALL_STATE(175)] = 4472, + [SMALL_STATE(176)] = 4484, + [SMALL_STATE(177)] = 4496, + [SMALL_STATE(178)] = 4508, + [SMALL_STATE(179)] = 4520, + [SMALL_STATE(180)] = 4532, + [SMALL_STATE(181)] = 4544, + [SMALL_STATE(182)] = 4558, + [SMALL_STATE(183)] = 4570, + [SMALL_STATE(184)] = 4581, + [SMALL_STATE(185)] = 4592, + [SMALL_STATE(186)] = 4603, + [SMALL_STATE(187)] = 4614, + [SMALL_STATE(188)] = 4625, [SMALL_STATE(189)] = 4636, - [SMALL_STATE(190)] = 4652, - [SMALL_STATE(191)] = 4668, - [SMALL_STATE(192)] = 4684, - [SMALL_STATE(193)] = 4700, - [SMALL_STATE(194)] = 4716, - [SMALL_STATE(195)] = 4732, - [SMALL_STATE(196)] = 4748, - [SMALL_STATE(197)] = 4764, - [SMALL_STATE(198)] = 4780, - [SMALL_STATE(199)] = 4796, - [SMALL_STATE(200)] = 4812, - [SMALL_STATE(201)] = 4828, - [SMALL_STATE(202)] = 4844, - [SMALL_STATE(203)] = 4860, + [SMALL_STATE(190)] = 4647, + [SMALL_STATE(191)] = 4663, + [SMALL_STATE(192)] = 4679, + [SMALL_STATE(193)] = 4695, + [SMALL_STATE(194)] = 4711, + [SMALL_STATE(195)] = 4727, + [SMALL_STATE(196)] = 4743, + [SMALL_STATE(197)] = 4759, + [SMALL_STATE(198)] = 4775, + [SMALL_STATE(199)] = 4791, + [SMALL_STATE(200)] = 4807, + [SMALL_STATE(201)] = 4823, + [SMALL_STATE(202)] = 4839, + [SMALL_STATE(203)] = 4855, [SMALL_STATE(204)] = 4871, - [SMALL_STATE(205)] = 4882, - [SMALL_STATE(206)] = 4893, - [SMALL_STATE(207)] = 4902, - [SMALL_STATE(208)] = 4911, - [SMALL_STATE(209)] = 4922, - [SMALL_STATE(210)] = 4931, - [SMALL_STATE(211)] = 4940, - [SMALL_STATE(212)] = 4951, - [SMALL_STATE(213)] = 4957, - [SMALL_STATE(214)] = 4963, - [SMALL_STATE(215)] = 4973, - [SMALL_STATE(216)] = 4983, - [SMALL_STATE(217)] = 4993, - [SMALL_STATE(218)] = 5003, - [SMALL_STATE(219)] = 5013, - [SMALL_STATE(220)] = 5023, - [SMALL_STATE(221)] = 5029, - [SMALL_STATE(222)] = 5035, - [SMALL_STATE(223)] = 5045, - [SMALL_STATE(224)] = 5051, - [SMALL_STATE(225)] = 5057, - [SMALL_STATE(226)] = 5067, - [SMALL_STATE(227)] = 5077, - [SMALL_STATE(228)] = 5087, - [SMALL_STATE(229)] = 5094, - [SMALL_STATE(230)] = 5101, - [SMALL_STATE(231)] = 5108, - [SMALL_STATE(232)] = 5115, - [SMALL_STATE(233)] = 5122, - [SMALL_STATE(234)] = 5129, - [SMALL_STATE(235)] = 5136, - [SMALL_STATE(236)] = 5143, - [SMALL_STATE(237)] = 5150, - [SMALL_STATE(238)] = 5157, - [SMALL_STATE(239)] = 5164, - [SMALL_STATE(240)] = 5171, - [SMALL_STATE(241)] = 5178, - [SMALL_STATE(242)] = 5185, - [SMALL_STATE(243)] = 5192, - [SMALL_STATE(244)] = 5199, - [SMALL_STATE(245)] = 5206, - [SMALL_STATE(246)] = 5213, - [SMALL_STATE(247)] = 5220, - [SMALL_STATE(248)] = 5227, - [SMALL_STATE(249)] = 5234, - [SMALL_STATE(250)] = 5241, - [SMALL_STATE(251)] = 5248, - [SMALL_STATE(252)] = 5255, - [SMALL_STATE(253)] = 5262, - [SMALL_STATE(254)] = 5269, - [SMALL_STATE(255)] = 5276, - [SMALL_STATE(256)] = 5283, - [SMALL_STATE(257)] = 5290, - [SMALL_STATE(258)] = 5297, - [SMALL_STATE(259)] = 5304, - [SMALL_STATE(260)] = 5311, - [SMALL_STATE(261)] = 5318, - [SMALL_STATE(262)] = 5325, - [SMALL_STATE(263)] = 5332, - [SMALL_STATE(264)] = 5339, - [SMALL_STATE(265)] = 5346, - [SMALL_STATE(266)] = 5353, - [SMALL_STATE(267)] = 5360, - [SMALL_STATE(268)] = 5367, - [SMALL_STATE(269)] = 5374, - [SMALL_STATE(270)] = 5381, - [SMALL_STATE(271)] = 5388, - [SMALL_STATE(272)] = 5395, - [SMALL_STATE(273)] = 5402, - [SMALL_STATE(274)] = 5409, - [SMALL_STATE(275)] = 5416, - [SMALL_STATE(276)] = 5423, - [SMALL_STATE(277)] = 5430, - [SMALL_STATE(278)] = 5437, - [SMALL_STATE(279)] = 5444, - [SMALL_STATE(280)] = 5451, - [SMALL_STATE(281)] = 5458, - [SMALL_STATE(282)] = 5465, - [SMALL_STATE(283)] = 5472, - [SMALL_STATE(284)] = 5479, - [SMALL_STATE(285)] = 5486, - [SMALL_STATE(286)] = 5493, - [SMALL_STATE(287)] = 5498, - [SMALL_STATE(288)] = 5503, - [SMALL_STATE(289)] = 5510, - [SMALL_STATE(290)] = 5515, - [SMALL_STATE(291)] = 5522, - [SMALL_STATE(292)] = 5529, - [SMALL_STATE(293)] = 5534, - [SMALL_STATE(294)] = 5541, - [SMALL_STATE(295)] = 5548, - [SMALL_STATE(296)] = 5555, - [SMALL_STATE(297)] = 5562, - [SMALL_STATE(298)] = 5569, - [SMALL_STATE(299)] = 5576, - [SMALL_STATE(300)] = 5583, - [SMALL_STATE(301)] = 5590, - [SMALL_STATE(302)] = 5597, - [SMALL_STATE(303)] = 5604, - [SMALL_STATE(304)] = 5611, - [SMALL_STATE(305)] = 5618, - [SMALL_STATE(306)] = 5622, - [SMALL_STATE(307)] = 5626, - [SMALL_STATE(308)] = 5630, - [SMALL_STATE(309)] = 5634, - [SMALL_STATE(310)] = 5638, - [SMALL_STATE(311)] = 5642, - [SMALL_STATE(312)] = 5646, - [SMALL_STATE(313)] = 5650, - [SMALL_STATE(314)] = 5654, - [SMALL_STATE(315)] = 5658, - [SMALL_STATE(316)] = 5662, - [SMALL_STATE(317)] = 5666, - [SMALL_STATE(318)] = 5670, - [SMALL_STATE(319)] = 5674, - [SMALL_STATE(320)] = 5678, - [SMALL_STATE(321)] = 5682, - [SMALL_STATE(322)] = 5686, - [SMALL_STATE(323)] = 5690, - [SMALL_STATE(324)] = 5694, - [SMALL_STATE(325)] = 5698, - [SMALL_STATE(326)] = 5702, - [SMALL_STATE(327)] = 5706, - [SMALL_STATE(328)] = 5710, - [SMALL_STATE(329)] = 5714, - [SMALL_STATE(330)] = 5718, - [SMALL_STATE(331)] = 5722, - [SMALL_STATE(332)] = 5726, - [SMALL_STATE(333)] = 5730, - [SMALL_STATE(334)] = 5734, - [SMALL_STATE(335)] = 5738, - [SMALL_STATE(336)] = 5742, - [SMALL_STATE(337)] = 5746, - [SMALL_STATE(338)] = 5750, - [SMALL_STATE(339)] = 5754, - [SMALL_STATE(340)] = 5758, - [SMALL_STATE(341)] = 5762, - [SMALL_STATE(342)] = 5766, + [SMALL_STATE(205)] = 4887, + [SMALL_STATE(206)] = 4903, + [SMALL_STATE(207)] = 4919, + [SMALL_STATE(208)] = 4935, + [SMALL_STATE(209)] = 4946, + [SMALL_STATE(210)] = 4957, + [SMALL_STATE(211)] = 4966, + [SMALL_STATE(212)] = 4977, + [SMALL_STATE(213)] = 4988, + [SMALL_STATE(214)] = 4997, + [SMALL_STATE(215)] = 5006, + [SMALL_STATE(216)] = 5017, + [SMALL_STATE(217)] = 5026, + [SMALL_STATE(218)] = 5036, + [SMALL_STATE(219)] = 5042, + [SMALL_STATE(220)] = 5052, + [SMALL_STATE(221)] = 5058, + [SMALL_STATE(222)] = 5068, + [SMALL_STATE(223)] = 5078, + [SMALL_STATE(224)] = 5088, + [SMALL_STATE(225)] = 5094, + [SMALL_STATE(226)] = 5104, + [SMALL_STATE(227)] = 5114, + [SMALL_STATE(228)] = 5120, + [SMALL_STATE(229)] = 5130, + [SMALL_STATE(230)] = 5136, + [SMALL_STATE(231)] = 5142, + [SMALL_STATE(232)] = 5152, + [SMALL_STATE(233)] = 5162, + [SMALL_STATE(234)] = 5169, + [SMALL_STATE(235)] = 5176, + [SMALL_STATE(236)] = 5183, + [SMALL_STATE(237)] = 5190, + [SMALL_STATE(238)] = 5197, + [SMALL_STATE(239)] = 5204, + [SMALL_STATE(240)] = 5211, + [SMALL_STATE(241)] = 5218, + [SMALL_STATE(242)] = 5225, + [SMALL_STATE(243)] = 5232, + [SMALL_STATE(244)] = 5239, + [SMALL_STATE(245)] = 5246, + [SMALL_STATE(246)] = 5253, + [SMALL_STATE(247)] = 5260, + [SMALL_STATE(248)] = 5267, + [SMALL_STATE(249)] = 5274, + [SMALL_STATE(250)] = 5279, + [SMALL_STATE(251)] = 5284, + [SMALL_STATE(252)] = 5291, + [SMALL_STATE(253)] = 5298, + [SMALL_STATE(254)] = 5303, + [SMALL_STATE(255)] = 5310, + [SMALL_STATE(256)] = 5317, + [SMALL_STATE(257)] = 5324, + [SMALL_STATE(258)] = 5331, + [SMALL_STATE(259)] = 5336, + [SMALL_STATE(260)] = 5343, + [SMALL_STATE(261)] = 5350, + [SMALL_STATE(262)] = 5357, + [SMALL_STATE(263)] = 5364, + [SMALL_STATE(264)] = 5371, + [SMALL_STATE(265)] = 5378, + [SMALL_STATE(266)] = 5385, + [SMALL_STATE(267)] = 5392, + [SMALL_STATE(268)] = 5399, + [SMALL_STATE(269)] = 5406, + [SMALL_STATE(270)] = 5413, + [SMALL_STATE(271)] = 5420, + [SMALL_STATE(272)] = 5427, + [SMALL_STATE(273)] = 5434, + [SMALL_STATE(274)] = 5441, + [SMALL_STATE(275)] = 5448, + [SMALL_STATE(276)] = 5455, + [SMALL_STATE(277)] = 5462, + [SMALL_STATE(278)] = 5469, + [SMALL_STATE(279)] = 5476, + [SMALL_STATE(280)] = 5483, + [SMALL_STATE(281)] = 5490, + [SMALL_STATE(282)] = 5497, + [SMALL_STATE(283)] = 5504, + [SMALL_STATE(284)] = 5511, + [SMALL_STATE(285)] = 5518, + [SMALL_STATE(286)] = 5525, + [SMALL_STATE(287)] = 5532, + [SMALL_STATE(288)] = 5539, + [SMALL_STATE(289)] = 5546, + [SMALL_STATE(290)] = 5553, + [SMALL_STATE(291)] = 5560, + [SMALL_STATE(292)] = 5567, + [SMALL_STATE(293)] = 5574, + [SMALL_STATE(294)] = 5581, + [SMALL_STATE(295)] = 5588, + [SMALL_STATE(296)] = 5595, + [SMALL_STATE(297)] = 5602, + [SMALL_STATE(298)] = 5609, + [SMALL_STATE(299)] = 5616, + [SMALL_STATE(300)] = 5623, + [SMALL_STATE(301)] = 5630, + [SMALL_STATE(302)] = 5637, + [SMALL_STATE(303)] = 5644, + [SMALL_STATE(304)] = 5651, + [SMALL_STATE(305)] = 5658, + [SMALL_STATE(306)] = 5665, + [SMALL_STATE(307)] = 5672, + [SMALL_STATE(308)] = 5679, + [SMALL_STATE(309)] = 5686, + [SMALL_STATE(310)] = 5693, + [SMALL_STATE(311)] = 5697, + [SMALL_STATE(312)] = 5701, + [SMALL_STATE(313)] = 5705, + [SMALL_STATE(314)] = 5709, + [SMALL_STATE(315)] = 5713, + [SMALL_STATE(316)] = 5717, + [SMALL_STATE(317)] = 5721, + [SMALL_STATE(318)] = 5725, + [SMALL_STATE(319)] = 5729, + [SMALL_STATE(320)] = 5733, + [SMALL_STATE(321)] = 5737, + [SMALL_STATE(322)] = 5741, + [SMALL_STATE(323)] = 5745, + [SMALL_STATE(324)] = 5749, + [SMALL_STATE(325)] = 5753, + [SMALL_STATE(326)] = 5757, + [SMALL_STATE(327)] = 5761, + [SMALL_STATE(328)] = 5765, + [SMALL_STATE(329)] = 5769, + [SMALL_STATE(330)] = 5773, + [SMALL_STATE(331)] = 5777, + [SMALL_STATE(332)] = 5781, + [SMALL_STATE(333)] = 5785, + [SMALL_STATE(334)] = 5789, + [SMALL_STATE(335)] = 5793, + [SMALL_STATE(336)] = 5797, + [SMALL_STATE(337)] = 5801, + [SMALL_STATE(338)] = 5805, + [SMALL_STATE(339)] = 5809, + [SMALL_STATE(340)] = 5813, + [SMALL_STATE(341)] = 5817, + [SMALL_STATE(342)] = 5821, + [SMALL_STATE(343)] = 5825, + [SMALL_STATE(344)] = 5829, + [SMALL_STATE(345)] = 5833, + [SMALL_STATE(346)] = 5837, }; static const TSParseActionEntry ts_parse_actions[] = { [0] = {.entry = {.count = 0, .reusable = false}}, [1] = {.entry = {.count = 1, .reusable = false}}, RECOVER(), [3] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 0), - [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(276), - [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(327), - [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), - [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [5] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), + [7] = {.entry = {.count = 1, .reusable = false}}, SHIFT(314), + [9] = {.entry = {.count = 1, .reusable = false}}, SHIFT(304), + [11] = {.entry = {.count = 1, .reusable = false}}, SHIFT(296), [13] = {.entry = {.count = 1, .reusable = false}}, SHIFT(295), - [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), - [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), - [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), - [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(308), - [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), - [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(131), - [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(306), - [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(226), - [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(250), - [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(315), - [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(231), - [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(247), - [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), - [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(255), + [15] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), + [17] = {.entry = {.count = 1, .reusable = false}}, SHIFT(276), + [19] = {.entry = {.count = 1, .reusable = false}}, SHIFT(273), + [21] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), + [23] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), + [25] = {.entry = {.count = 1, .reusable = false}}, SHIFT(132), + [27] = {.entry = {.count = 1, .reusable = true}}, SHIFT(339), + [29] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), + [31] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), + [33] = {.entry = {.count = 1, .reusable = false}}, SHIFT(312), + [35] = {.entry = {.count = 1, .reusable = false}}, SHIFT(252), + [37] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), + [39] = {.entry = {.count = 1, .reusable = false}}, SHIFT(241), + [41] = {.entry = {.count = 1, .reusable = false}}, SHIFT(238), [43] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case_body, 1), [45] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_case_body, 1), - [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(243), - [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(235), - [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), - [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(157), - [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(323), - [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), - [59] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(250), - [62] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(315), - [65] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(231), - [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(247), - [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(251), - [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(255), - [77] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), - [79] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), - [81] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(243), - [84] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(235), - [87] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(342), - [90] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(157), - [93] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(131), - [96] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(323), - [99] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(218), - [102] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(276), - [105] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(327), - [108] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(273), - [111] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(304), - [114] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(295), - [117] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(294), - [120] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(291), - [123] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(288), - [126] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(308), - [129] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(151), - [132] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(306), - [135] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(226), - [138] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case_body, 2), - [140] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_case_body, 2), - [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), - [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(44), - [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), - [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), - [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), - [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), - [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), - [156] = {.entry = {.count = 1, .reusable = true}}, SHIFT(35), - [158] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), - [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), - [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), - [164] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(206), - [167] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, .production_id = 3), - [169] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2, .production_id = 3), - [171] = {.entry = {.count = 1, .reusable = true}}, SHIFT(206), - [173] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, .production_id = 1), - [175] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, .production_id = 1), - [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_property, 5, .production_id = 29), - [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_property, 5, .production_id = 29), - [181] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(209), - [184] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 36), - [186] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 36), - [188] = {.entry = {.count = 1, .reusable = false}}, SHIFT(278), - [190] = {.entry = {.count = 1, .reusable = true}}, SHIFT(313), - [192] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 44), - [194] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 44), - [196] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), - [198] = {.entry = {.count = 1, .reusable = true}}, SHIFT(305), - [200] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 37), - [202] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 37), - [204] = {.entry = {.count = 1, .reusable = true}}, SHIFT(209), - [206] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 7, .production_id = 31), - [208] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 7, .production_id = 31), - [210] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 5, .production_id = 19), - [212] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 5, .production_id = 19), - [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_else, 2, .production_id = 32), - [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_else, 2, .production_id = 32), - [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_each_definition, 5, .production_id = 18), - [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_each_definition, 5, .production_id = 18), - [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_definition, 5, .production_id = 20), - [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_definition, 5, .production_id = 20), - [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), - [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), - [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), - [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), - [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), - [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), - [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_definition, 5, .production_id = 17), - [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_definition, 5, .production_id = 17), - [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), - [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), - [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 15), - [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 15), - [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), - [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), - [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), - [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), - [258] = {.entry = {.count = 1, .reusable = true}}, SHIFT(135), - [260] = {.entry = {.count = 1, .reusable = false}}, SHIFT(339), - [262] = {.entry = {.count = 1, .reusable = false}}, SHIFT(13), - [264] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), - [266] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag, 4, .production_id = 11), - [268] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag, 4, .production_id = 11), - [270] = {.entry = {.count = 1, .reusable = true}}, SHIFT(139), - [272] = {.entry = {.count = 1, .reusable = false}}, SHIFT(8), - [274] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_block, 3), - [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_block, 3), - [278] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_block, 2), - [280] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_block, 2), - [282] = {.entry = {.count = 1, .reusable = true}}, SHIFT(98), - [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag, 5, .production_id = 11), - [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag, 5, .production_id = 11), - [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 41), - [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 41), - [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 12), - [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 12), - [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 12), - [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 12), - [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), - [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), - [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 10), - [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 10), - [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 4), - [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 4), - [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_magic_variable_definition, 3, .production_id = 23), - [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_magic_variable_definition, 3, .production_id = 23), - [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), - [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2), - [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, .production_id = 4), - [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2, .production_id = 4), - [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 2), - [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 2), - [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 10, .production_id = 48), - [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 10, .production_id = 48), - [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 10, .production_id = 47), - [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 10, .production_id = 47), - [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 43), - [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 43), - [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 42), - [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 42), - [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 13), - [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, .production_id = 13), - [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 40), - [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 40), - [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string, 3, .production_id = 15), - [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string, 3, .production_id = 15), - [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_else, 3, .production_id = 38), - [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_else, 3, .production_id = 38), - [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string, 2), - [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string, 2), - [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, .production_id = 6), - [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3, .production_id = 6), - [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_definition, 6, .production_id = 28), - [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_definition, 6, .production_id = 28), - [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 35), - [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 35), - [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 34), - [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 34), - [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, .production_id = 33), - [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, .production_id = 33), - [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_variable, 5, .production_id = 22), - [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_variable, 5, .production_id = 22), - [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_definition, 6, .production_id = 24), - [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_definition, 6, .production_id = 24), - [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_each_definition, 6, .production_id = 25), - [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_each_definition, 6, .production_id = 25), - [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 6, .production_id = 26), - [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 6, .production_id = 26), - [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 6, .production_id = 27), - [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 6, .production_id = 27), - [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(207), - [406] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(207), - [409] = {.entry = {.count = 1, .reusable = true}}, SHIFT(57), - [411] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), - [413] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), - [415] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), - [417] = {.entry = {.count = 1, .reusable = true}}, SHIFT(198), - [419] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), - [421] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), - [423] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), - [425] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(131), - [428] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(166), - [431] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(145), - [434] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(202), - [437] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(198), - [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(49), - [442] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), - [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(263), - [446] = {.entry = {.count = 1, .reusable = false}}, SHIFT(264), - [448] = {.entry = {.count = 1, .reusable = false}}, SHIFT(145), - [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(198), - [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(279), - [454] = {.entry = {.count = 1, .reusable = false}}, SHIFT(279), - [456] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), - [458] = {.entry = {.count = 1, .reusable = false}}, SHIFT(159), - [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(176), - [462] = {.entry = {.count = 1, .reusable = true}}, SHIFT(137), - [464] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), - [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(201), - [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), - [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(86), - [472] = {.entry = {.count = 1, .reusable = true}}, SHIFT(277), - [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), - [476] = {.entry = {.count = 1, .reusable = false}}, SHIFT(257), - [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), - [480] = {.entry = {.count = 1, .reusable = true}}, SHIFT(106), - [482] = {.entry = {.count = 1, .reusable = true}}, SHIFT(95), - [484] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(159), - [487] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(176), - [490] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(137), - [493] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), - [495] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(201), - [498] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(200), - [501] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), - [503] = {.entry = {.count = 1, .reusable = false}}, SHIFT(281), - [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), - [507] = {.entry = {.count = 1, .reusable = true}}, SHIFT(168), - [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(69), - [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), - [513] = {.entry = {.count = 1, .reusable = false}}, SHIFT(25), - [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), - [517] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), - [519] = {.entry = {.count = 1, .reusable = false}}, SHIFT(192), - [521] = {.entry = {.count = 1, .reusable = true}}, SHIFT(191), - [523] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), - [525] = {.entry = {.count = 1, .reusable = false}}, SHIFT(17), - [527] = {.entry = {.count = 1, .reusable = false}}, SHIFT(119), - [529] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), - [531] = {.entry = {.count = 1, .reusable = false}}, SHIFT(199), - [533] = {.entry = {.count = 1, .reusable = true}}, SHIFT(197), - [535] = {.entry = {.count = 1, .reusable = false}}, SHIFT(105), - [537] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), - [539] = {.entry = {.count = 1, .reusable = false}}, SHIFT(210), - [541] = {.entry = {.count = 1, .reusable = false}}, SHIFT(109), - [543] = {.entry = {.count = 1, .reusable = false}}, SHIFT(300), - [545] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), - [547] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(210), - [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), - [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(338), - [554] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primitive, 1), - [556] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primitive, 1), - [558] = {.entry = {.count = 1, .reusable = false}}, SHIFT(171), - [560] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), - [562] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 1, .production_id = 7), - [564] = {.entry = {.count = 1, .reusable = false}}, SHIFT(173), - [566] = {.entry = {.count = 1, .reusable = true}}, SHIFT(181), - [568] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 4, .production_id = 30), - [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(182), - [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 2, .production_id = 7), - [574] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), - [576] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 5, .production_id = 30), - [578] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), - [580] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, .production_id = 7), - [582] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, .production_id = 7), - [584] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 6, .production_id = 30), - [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 6, .production_id = 30), - [588] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 5, .production_id = 30), - [590] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 3, .production_id = 7), - [592] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 3, .production_id = 7), - [594] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 7), - [596] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 7), - [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 2, .production_id = 7), - [600] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), - [602] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(234), - [605] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(223), - [608] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(302), - [611] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(212), - [614] = {.entry = {.count = 1, .reusable = true}}, SHIFT(163), - [616] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), - [618] = {.entry = {.count = 1, .reusable = true}}, SHIFT(223), - [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(123), - [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), - [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), - [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), - [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(116), - [630] = {.entry = {.count = 1, .reusable = true}}, SHIFT(100), - [632] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), - [634] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), - [636] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), - [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(89), - [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), - [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(93), - [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), - [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), - [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(179), - [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(178), - [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), - [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), - [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(216), - [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), - [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(58), - [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), - [664] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_menu_block_repeat1, 2), - [666] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_menu_block_repeat1, 2), SHIFT_REPEAT(216), - [669] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), - [671] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 8), - [673] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 21), - [675] = {.entry = {.count = 1, .reusable = false}}, SHIFT(72), - [677] = {.entry = {.count = 1, .reusable = false}}, SHIFT(227), - [679] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), - [681] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), - [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(284), - [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), - [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), - [689] = {.entry = {.count = 1, .reusable = false}}, SHIFT(130), - [691] = {.entry = {.count = 1, .reusable = false}}, SHIFT(74), - [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(214), - [695] = {.entry = {.count = 1, .reusable = true}}, SHIFT(324), - [697] = {.entry = {.count = 1, .reusable = false}}, SHIFT(134), - [699] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 9), - [701] = {.entry = {.count = 1, .reusable = false}}, SHIFT(71), - [703] = {.entry = {.count = 1, .reusable = true}}, SHIFT(293), - [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(107), - [707] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), - [709] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), - [711] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(227), - [714] = {.entry = {.count = 1, .reusable = true}}, SHIFT(131), - [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(10), - [718] = {.entry = {.count = 1, .reusable = true}}, SHIFT(6), - [720] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), - [722] = {.entry = {.count = 1, .reusable = false}}, SHIFT(325), - [724] = {.entry = {.count = 1, .reusable = true}}, SHIFT(202), - [726] = {.entry = {.count = 1, .reusable = true}}, SHIFT(17), - [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(246), - [730] = {.entry = {.count = 1, .reusable = false}}, SHIFT(246), - [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), - [734] = {.entry = {.count = 1, .reusable = false}}, SHIFT(245), - [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), - [738] = {.entry = {.count = 1, .reusable = false}}, SHIFT(267), - [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), - [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(230), - [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(13), - [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(211), - [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), - [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), - [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(134), - [754] = {.entry = {.count = 1, .reusable = true}}, SHIFT(156), - [756] = {.entry = {.count = 1, .reusable = false}}, SHIFT(156), - [758] = {.entry = {.count = 1, .reusable = true}}, SHIFT(25), - [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(232), - [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(232), - [764] = {.entry = {.count = 1, .reusable = true}}, SHIFT(280), - [766] = {.entry = {.count = 1, .reusable = false}}, SHIFT(280), - [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(285), - [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), - [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(8), - [774] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), - [776] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), - [778] = {.entry = {.count = 1, .reusable = false}}, SHIFT(282), - [780] = {.entry = {.count = 1, .reusable = true}}, SHIFT(321), - [782] = {.entry = {.count = 1, .reusable = false}}, SHIFT(321), - [784] = {.entry = {.count = 1, .reusable = true}}, SHIFT(244), - [786] = {.entry = {.count = 1, .reusable = false}}, SHIFT(244), - [788] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 5, .production_id = 49), - [790] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 4, .production_id = 46), - [792] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 4, .production_id = 45), - [794] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 3, .production_id = 39), - [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(258), - [798] = {.entry = {.count = 1, .reusable = false}}, SHIFT(258), - [800] = {.entry = {.count = 1, .reusable = true}}, SHIFT(150), - [802] = {.entry = {.count = 1, .reusable = false}}, SHIFT(150), - [804] = {.entry = {.count = 1, .reusable = true}}, SHIFT(229), - [806] = {.entry = {.count = 1, .reusable = false}}, SHIFT(229), - [808] = {.entry = {.count = 1, .reusable = true}}, SHIFT(268), - [810] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), - [812] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), - [814] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), - [816] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), - [818] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), - [820] = {.entry = {.count = 1, .reusable = true}}, SHIFT(262), - [822] = {.entry = {.count = 1, .reusable = false}}, SHIFT(262), - [824] = {.entry = {.count = 1, .reusable = true}}, SHIFT(256), - [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(108), - [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), - [830] = {.entry = {.count = 1, .reusable = true}}, SHIFT(248), - [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), - [834] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), - [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), - [838] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), - [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(274), - [842] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), - [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(253), - [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), - [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), - [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), - [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), - [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(242), - [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(241), - [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(149), - [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), - [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(335), - [864] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), - [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(336), - [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(269), - [870] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_property_type, 1), - [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(314), - [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(303), - [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(144), - [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), - [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(265), - [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(252), - [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), - [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(341), - [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(213), - [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(160), - [892] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), - [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), - [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(155), - [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [47] = {.entry = {.count = 1, .reusable = false}}, SHIFT(277), + [49] = {.entry = {.count = 1, .reusable = false}}, SHIFT(269), + [51] = {.entry = {.count = 1, .reusable = false}}, SHIFT(346), + [53] = {.entry = {.count = 1, .reusable = false}}, SHIFT(155), + [55] = {.entry = {.count = 1, .reusable = true}}, SHIFT(332), + [57] = {.entry = {.count = 1, .reusable = true}}, SHIFT(228), + [59] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case_body, 2), + [61] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_case_body, 2), + [63] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), + [65] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(244), + [68] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(314), + [71] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(304), + [74] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(296), + [77] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(295), + [80] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(280), + [83] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(276), + [86] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(273), + [89] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(338), + [92] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(156), + [95] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(132), + [98] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(339), + [101] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(223), + [104] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(279), + [107] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(312), + [110] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(252), + [113] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(246), + [116] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(241), + [119] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(238), + [122] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), + [124] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(277), + [127] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(269), + [130] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(346), + [133] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(155), + [136] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(332), + [139] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_source_file_repeat1, 2), SHIFT_REPEAT(228), + [142] = {.entry = {.count = 1, .reusable = true}}, SHIFT(43), + [144] = {.entry = {.count = 1, .reusable = true}}, SHIFT(42), + [146] = {.entry = {.count = 1, .reusable = true}}, SHIFT(51), + [148] = {.entry = {.count = 1, .reusable = true}}, SHIFT(64), + [150] = {.entry = {.count = 1, .reusable = true}}, SHIFT(47), + [152] = {.entry = {.count = 1, .reusable = true}}, SHIFT(32), + [154] = {.entry = {.count = 1, .reusable = true}}, SHIFT(52), + [156] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_source_file, 1), + [158] = {.entry = {.count = 1, .reusable = true}}, SHIFT(61), + [160] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 1, .production_id = 1), + [162] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 1, .production_id = 1), + [164] = {.entry = {.count = 1, .reusable = true}}, SHIFT(214), + [166] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_identifier, 2, .production_id = 3), + [168] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_identifier, 2, .production_id = 3), + [170] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), + [172] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), + [174] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(214), + [177] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_property, 5, .production_id = 30), + [179] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_property, 5, .production_id = 30), + [181] = {.entry = {.count = 1, .reusable = true}}, SHIFT(210), + [183] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 5, .production_id = 19), + [185] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 5, .production_id = 19), + [187] = {.entry = {.count = 1, .reusable = false}}, SHIFT(285), + [189] = {.entry = {.count = 1, .reusable = true}}, SHIFT(331), + [191] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 37), + [193] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 37), + [195] = {.entry = {.count = 1, .reusable = false}}, SHIFT(284), + [197] = {.entry = {.count = 1, .reusable = true}}, SHIFT(317), + [199] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 7, .production_id = 32), + [201] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 7, .production_id = 32), + [203] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 38), + [205] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 38), + [207] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 45), + [209] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 45), + [211] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(210), + [214] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 2), + [216] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 2), + [218] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_definition, 5, .production_id = 17), + [220] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_definition, 5, .production_id = 17), + [222] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 3), + [224] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 3), + [226] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list, 2), + [228] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list, 2), + [230] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 2, .production_id = 5), + [232] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 2, .production_id = 5), + [234] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_definition, 5, .production_id = 20), + [236] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_definition, 5, .production_id = 20), + [238] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 2), + [240] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 2), + [242] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_each_definition, 5, .production_id = 18), + [244] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_each_definition, 5, .production_id = 18), + [246] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block, 3), + [248] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block, 3), + [250] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string, 3, .production_id = 15), + [252] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_string, 3, .production_id = 15), + [254] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_else, 2, .production_id = 33), + [256] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_else, 2, .production_id = 33), + [258] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_block, 3), + [260] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_block, 3), + [262] = {.entry = {.count = 1, .reusable = true}}, SHIFT(138), + [264] = {.entry = {.count = 1, .reusable = false}}, SHIFT(320), + [266] = {.entry = {.count = 1, .reusable = false}}, SHIFT(7), + [268] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_block, 2), + [270] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_block, 2), + [272] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag, 4, .production_id = 11), + [274] = {.entry = {.count = 1, .reusable = true}}, SHIFT(104), + [276] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag, 4, .production_id = 11), + [278] = {.entry = {.count = 1, .reusable = true}}, SHIFT(114), + [280] = {.entry = {.count = 1, .reusable = true}}, SHIFT(140), + [282] = {.entry = {.count = 1, .reusable = false}}, SHIFT(11), + [284] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_comment, 2, .production_id = 4), + [286] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_comment, 2, .production_id = 4), + [288] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string, 3, .production_id = 15), + [290] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string, 3, .production_id = 15), + [292] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 10, .production_id = 49), + [294] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 10, .production_id = 49), + [296] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 10, .production_id = 48), + [298] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 10, .production_id = 48), + [300] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_multi_line_string, 2), + [302] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_multi_line_string, 2), + [304] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 44), + [306] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 44), + [308] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 43), + [310] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 43), + [312] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 3, .production_id = 4), + [314] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 3, .production_id = 4), + [316] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 42), + [318] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 42), + [320] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 9, .production_id = 41), + [322] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 9, .production_id = 41), + [324] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_else, 3, .production_id = 39), + [326] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_else, 3, .production_id = 39), + [328] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_call, 3, .production_id = 10), + [330] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_call, 3, .production_id = 10), + [332] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 36), + [334] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 36), + [336] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 8, .production_id = 35), + [338] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 8, .production_id = 35), + [340] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_function_definition, 4, .production_id = 12), + [342] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_function_definition, 4, .production_id = 12), + [344] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_macro_definition, 4, .production_id = 12), + [346] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_macro_definition, 4, .production_id = 12), + [348] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_declaration, 7, .production_id = 34), + [350] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_variable_declaration, 7, .production_id = 34), + [352] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 3, .production_id = 13), + [354] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 3, .production_id = 13), + [356] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_return_statement, 2, .production_id = 2), + [358] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_return_statement, 2, .production_id = 2), + [360] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_definition, 6, .production_id = 29), + [362] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_menu_definition, 6, .production_id = 29), + [364] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_array, 2), + [366] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_array, 2), + [368] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_import, 3, .production_id = 6), + [370] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_import, 3, .production_id = 6), + [372] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 6, .production_id = 28), + [374] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 6, .production_id = 28), + [376] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_block_comment, 2), + [378] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_block_comment, 2), + [380] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_conditional_definition, 6, .production_id = 27), + [382] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_conditional_definition, 6, .production_id = 27), + [384] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_flag, 5, .production_id = 11), + [386] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_flag, 5, .production_id = 11), + [388] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_each_definition, 6, .production_id = 26), + [390] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_each_definition, 6, .production_id = 26), + [392] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_repeat_definition, 6, .production_id = 25), + [394] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_repeat_definition, 6, .production_id = 25), + [396] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_magic_variable_definition, 3, .production_id = 24), + [398] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_magic_variable_definition, 3, .production_id = 24), + [400] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_set_variable, 5, .production_id = 22), + [402] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_set_variable, 5, .production_id = 22), + [404] = {.entry = {.count = 1, .reusable = false}}, SHIFT(216), + [406] = {.entry = {.count = 1, .reusable = true}}, SHIFT(36), + [408] = {.entry = {.count = 1, .reusable = false}}, SHIFT(166), + [410] = {.entry = {.count = 1, .reusable = true}}, SHIFT(146), + [412] = {.entry = {.count = 1, .reusable = false}}, SHIFT(196), + [414] = {.entry = {.count = 1, .reusable = true}}, SHIFT(203), + [416] = {.entry = {.count = 1, .reusable = true}}, SHIFT(56), + [418] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(216), + [421] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), + [423] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(132), + [426] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(166), + [429] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(146), + [432] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(196), + [435] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_parameter_list_repeat1, 2), SHIFT_REPEAT(203), + [438] = {.entry = {.count = 1, .reusable = true}}, SHIFT(59), + [440] = {.entry = {.count = 1, .reusable = true}}, SHIFT(34), + [442] = {.entry = {.count = 1, .reusable = false}}, SHIFT(160), + [444] = {.entry = {.count = 1, .reusable = false}}, SHIFT(181), + [446] = {.entry = {.count = 1, .reusable = true}}, SHIFT(136), + [448] = {.entry = {.count = 1, .reusable = true}}, SHIFT(165), + [450] = {.entry = {.count = 1, .reusable = false}}, SHIFT(202), + [452] = {.entry = {.count = 1, .reusable = true}}, SHIFT(204), + [454] = {.entry = {.count = 1, .reusable = true}}, SHIFT(176), + [456] = {.entry = {.count = 1, .reusable = true}}, SHIFT(92), + [458] = {.entry = {.count = 1, .reusable = true}}, SHIFT(283), + [460] = {.entry = {.count = 1, .reusable = false}}, SHIFT(283), + [462] = {.entry = {.count = 1, .reusable = false}}, SHIFT(293), + [464] = {.entry = {.count = 1, .reusable = false}}, SHIFT(146), + [466] = {.entry = {.count = 1, .reusable = false}}, SHIFT(203), + [468] = {.entry = {.count = 1, .reusable = true}}, SHIFT(173), + [470] = {.entry = {.count = 1, .reusable = true}}, SHIFT(234), + [472] = {.entry = {.count = 1, .reusable = false}}, SHIFT(234), + [474] = {.entry = {.count = 1, .reusable = false}}, SHIFT(289), + [476] = {.entry = {.count = 1, .reusable = true}}, SHIFT(102), + [478] = {.entry = {.count = 1, .reusable = true}}, SHIFT(287), + [480] = {.entry = {.count = 1, .reusable = false}}, SHIFT(287), + [482] = {.entry = {.count = 1, .reusable = false}}, SHIFT(291), + [484] = {.entry = {.count = 1, .reusable = true}}, SHIFT(96), + [486] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(160), + [489] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(181), + [492] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(136), + [495] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), + [497] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(202), + [500] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 14), SHIFT_REPEAT(204), + [503] = {.entry = {.count = 1, .reusable = true}}, SHIFT(233), + [505] = {.entry = {.count = 1, .reusable = false}}, SHIFT(233), + [507] = {.entry = {.count = 1, .reusable = false}}, SHIFT(268), + [509] = {.entry = {.count = 1, .reusable = true}}, SHIFT(169), + [511] = {.entry = {.count = 1, .reusable = true}}, SHIFT(113), + [513] = {.entry = {.count = 1, .reusable = true}}, SHIFT(153), + [515] = {.entry = {.count = 1, .reusable = false}}, SHIFT(168), + [517] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_identifier_repeat1, 2), SHIFT_REPEAT(213), + [520] = {.entry = {.count = 1, .reusable = false}}, SHIFT(251), + [522] = {.entry = {.count = 1, .reusable = false}}, SHIFT(30), + [524] = {.entry = {.count = 1, .reusable = false}}, SHIFT(90), + [526] = {.entry = {.count = 1, .reusable = true}}, SHIFT(143), + [528] = {.entry = {.count = 1, .reusable = false}}, SHIFT(197), + [530] = {.entry = {.count = 1, .reusable = true}}, SHIFT(195), + [532] = {.entry = {.count = 1, .reusable = false}}, SHIFT(170), + [534] = {.entry = {.count = 1, .reusable = false}}, SHIFT(15), + [536] = {.entry = {.count = 1, .reusable = false}}, SHIFT(112), + [538] = {.entry = {.count = 1, .reusable = true}}, SHIFT(141), + [540] = {.entry = {.count = 1, .reusable = false}}, SHIFT(200), + [542] = {.entry = {.count = 1, .reusable = true}}, SHIFT(199), + [544] = {.entry = {.count = 1, .reusable = false}}, SHIFT(94), + [546] = {.entry = {.count = 1, .reusable = false}}, SHIFT(111), + [548] = {.entry = {.count = 1, .reusable = false}}, SHIFT(99), + [550] = {.entry = {.count = 1, .reusable = false}}, SHIFT(305), + [552] = {.entry = {.count = 1, .reusable = false}}, SHIFT(110), + [554] = {.entry = {.count = 1, .reusable = false}}, SHIFT(213), + [556] = {.entry = {.count = 1, .reusable = false}}, SHIFT(149), + [558] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym__primitive, 1), + [560] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym__primitive, 1), + [562] = {.entry = {.count = 1, .reusable = false}}, SHIFT(178), + [564] = {.entry = {.count = 1, .reusable = true}}, SHIFT(184), + [566] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 1, .production_id = 7), + [568] = {.entry = {.count = 1, .reusable = false}}, SHIFT(182), + [570] = {.entry = {.count = 1, .reusable = true}}, SHIFT(189), + [572] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 3, .production_id = 23), + [574] = {.entry = {.count = 1, .reusable = false}}, SHIFT(179), + [576] = {.entry = {.count = 1, .reusable = true}}, SHIFT(185), + [578] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 4, .production_id = 31), + [580] = {.entry = {.count = 1, .reusable = true}}, SHIFT(183), + [582] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 2, .production_id = 7), + [584] = {.entry = {.count = 1, .reusable = true}}, SHIFT(187), + [586] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 5, .production_id = 31), + [588] = {.entry = {.count = 1, .reusable = true}}, SHIFT(188), + [590] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 1, .production_id = 7), + [592] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 1, .production_id = 7), + [594] = {.entry = {.count = 1, .reusable = true}}, SHIFT(186), + [596] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 4, .production_id = 23), + [598] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 3, .production_id = 7), + [600] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 3, .production_id = 7), + [602] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 2, .production_id = 7), + [604] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 5, .production_id = 31), + [606] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 5, .production_id = 23), + [608] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 5, .production_id = 23), + [610] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 6, .production_id = 31), + [612] = {.entry = {.count = 1, .reusable = false}}, REDUCE(sym_parameter_list_item, 6, .production_id = 31), + [614] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 7), + [616] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_array_repeat1, 2, .production_id = 7), + [618] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_parameter_list_item, 4, .production_id = 23), + [620] = {.entry = {.count = 1, .reusable = true}}, SHIFT(66), + [622] = {.entry = {.count = 1, .reusable = true}}, SHIFT(300), + [624] = {.entry = {.count = 1, .reusable = true}}, SHIFT(230), + [626] = {.entry = {.count = 1, .reusable = true}}, SHIFT(172), + [628] = {.entry = {.count = 1, .reusable = true}}, SHIFT(75), + [630] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), + [632] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(300), + [635] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(230), + [638] = {.entry = {.count = 1, .reusable = true}}, SHIFT(67), + [640] = {.entry = {.count = 1, .reusable = true}}, SHIFT(243), + [642] = {.entry = {.count = 1, .reusable = true}}, SHIFT(220), + [644] = {.entry = {.count = 1, .reusable = true}}, SHIFT(97), + [646] = {.entry = {.count = 1, .reusable = true}}, SHIFT(164), + [648] = {.entry = {.count = 1, .reusable = true}}, SHIFT(105), + [650] = {.entry = {.count = 1, .reusable = true}}, SHIFT(162), + [652] = {.entry = {.count = 1, .reusable = true}}, SHIFT(71), + [654] = {.entry = {.count = 1, .reusable = true}}, SHIFT(40), + [656] = {.entry = {.count = 1, .reusable = true}}, SHIFT(46), + [658] = {.entry = {.count = 1, .reusable = true}}, SHIFT(175), + [660] = {.entry = {.count = 1, .reusable = true}}, SHIFT(171), + [662] = {.entry = {.count = 1, .reusable = true}}, SHIFT(174), + [664] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(243), + [667] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 2, .production_id = 16), SHIFT_REPEAT(220), + [670] = {.entry = {.count = 1, .reusable = true}}, SHIFT(180), + [672] = {.entry = {.count = 1, .reusable = true}}, SHIFT(177), + [674] = {.entry = {.count = 1, .reusable = true}}, SHIFT(63), + [676] = {.entry = {.count = 1, .reusable = true}}, SHIFT(219), + [678] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_menu_block_repeat1, 2), + [680] = {.entry = {.count = 2, .reusable = true}}, REDUCE(aux_sym_menu_block_repeat1, 2), SHIFT_REPEAT(219), + [683] = {.entry = {.count = 1, .reusable = true}}, SHIFT(345), + [685] = {.entry = {.count = 1, .reusable = true}}, SHIFT(53), + [687] = {.entry = {.count = 1, .reusable = true}}, SHIFT(55), + [689] = {.entry = {.count = 1, .reusable = true}}, SHIFT(62), + [691] = {.entry = {.count = 1, .reusable = true}}, SHIFT(311), + [693] = {.entry = {.count = 1, .reusable = false}}, SHIFT(129), + [695] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_string_interpolation, 3, .production_id = 21), + [697] = {.entry = {.count = 1, .reusable = true}}, SHIFT(267), + [699] = {.entry = {.count = 1, .reusable = true}}, SHIFT(200), + [701] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 8), + [703] = {.entry = {.count = 1, .reusable = false}}, SHIFT(126), + [705] = {.entry = {.count = 1, .reusable = false}}, SHIFT(222), + [707] = {.entry = {.count = 1, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), + [709] = {.entry = {.count = 2, .reusable = false}}, REDUCE(aux_sym_block_comment_repeat1, 2), SHIFT_REPEAT(222), + [712] = {.entry = {.count = 1, .reusable = false}}, SHIFT(124), + [714] = {.entry = {.count = 1, .reusable = false}}, SHIFT(226), + [716] = {.entry = {.count = 1, .reusable = true}}, SHIFT(326), + [718] = {.entry = {.count = 1, .reusable = false}}, SHIFT(128), + [720] = {.entry = {.count = 1, .reusable = false}}, SHIFT(76), + [722] = {.entry = {.count = 1, .reusable = true}}, REDUCE(aux_sym_string_repeat1, 1, .production_id = 9), + [724] = {.entry = {.count = 1, .reusable = false}}, SHIFT(101), + [726] = {.entry = {.count = 1, .reusable = false}}, SHIFT(221), + [728] = {.entry = {.count = 1, .reusable = true}}, SHIFT(2), + [730] = {.entry = {.count = 1, .reusable = true}}, SHIFT(259), + [732] = {.entry = {.count = 1, .reusable = true}}, SHIFT(255), + [734] = {.entry = {.count = 1, .reusable = true}}, SHIFT(11), + [736] = {.entry = {.count = 1, .reusable = true}}, SHIFT(15), + [738] = {.entry = {.count = 1, .reusable = true}}, SHIFT(132), + [740] = {.entry = {.count = 1, .reusable = true}}, SHIFT(254), + [742] = {.entry = {.count = 1, .reusable = false}}, SHIFT(254), + [744] = {.entry = {.count = 1, .reusable = true}}, SHIFT(196), + [746] = {.entry = {.count = 1, .reusable = true}}, SHIFT(128), + [748] = {.entry = {.count = 1, .reusable = true}}, SHIFT(158), + [750] = {.entry = {.count = 1, .reusable = false}}, SHIFT(158), + [752] = {.entry = {.count = 1, .reusable = true}}, SHIFT(266), + [754] = {.entry = {.count = 1, .reusable = false}}, SHIFT(266), + [756] = {.entry = {.count = 1, .reusable = true}}, SHIFT(292), + [758] = {.entry = {.count = 1, .reusable = false}}, SHIFT(292), + [760] = {.entry = {.count = 1, .reusable = true}}, SHIFT(294), + [762] = {.entry = {.count = 1, .reusable = false}}, SHIFT(294), + [764] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 5, .production_id = 50), + [766] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 4, .production_id = 47), + [768] = {.entry = {.count = 1, .reusable = true}}, SHIFT(60), + [770] = {.entry = {.count = 1, .reusable = false}}, SHIFT(303), + [772] = {.entry = {.count = 1, .reusable = true}}, SHIFT(329), + [774] = {.entry = {.count = 1, .reusable = false}}, SHIFT(329), + [776] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 4, .production_id = 46), + [778] = {.entry = {.count = 1, .reusable = true}}, SHIFT(302), + [780] = {.entry = {.count = 1, .reusable = false}}, SHIFT(302), + [782] = {.entry = {.count = 1, .reusable = true}}, SHIFT(30), + [784] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_menu_case, 3, .production_id = 40), + [786] = {.entry = {.count = 1, .reusable = true}}, SHIFT(12), + [788] = {.entry = {.count = 1, .reusable = true}}, SHIFT(9), + [790] = {.entry = {.count = 1, .reusable = true}}, SHIFT(261), + [792] = {.entry = {.count = 1, .reusable = false}}, SHIFT(261), + [794] = {.entry = {.count = 1, .reusable = true}}, SHIFT(7), + [796] = {.entry = {.count = 1, .reusable = true}}, SHIFT(215), + [798] = {.entry = {.count = 1, .reusable = true}}, SHIFT(239), + [800] = {.entry = {.count = 1, .reusable = false}}, SHIFT(239), + [802] = {.entry = {.count = 1, .reusable = true}}, SHIFT(270), + [804] = {.entry = {.count = 1, .reusable = false}}, SHIFT(270), + [806] = {.entry = {.count = 1, .reusable = true}}, SHIFT(288), + [808] = {.entry = {.count = 1, .reusable = false}}, SHIFT(288), + [810] = {.entry = {.count = 1, .reusable = true}}, SHIFT(286), + [812] = {.entry = {.count = 1, .reusable = false}}, SHIFT(286), + [814] = {.entry = {.count = 1, .reusable = true}}, SHIFT(151), + [816] = {.entry = {.count = 1, .reusable = false}}, SHIFT(151), + [818] = {.entry = {.count = 1, .reusable = true}}, SHIFT(290), + [820] = {.entry = {.count = 1, .reusable = false}}, SHIFT(290), + [822] = {.entry = {.count = 1, .reusable = true}}, SHIFT(275), + [824] = {.entry = {.count = 1, .reusable = false}}, SHIFT(275), + [826] = {.entry = {.count = 1, .reusable = true}}, SHIFT(212), + [828] = {.entry = {.count = 1, .reusable = true}}, SHIFT(342), + [830] = {.entry = {.count = 1, .reusable = false}}, SHIFT(342), + [832] = {.entry = {.count = 1, .reusable = true}}, SHIFT(54), + [834] = {.entry = {.count = 1, .reusable = false}}, SHIFT(274), + [836] = {.entry = {.count = 1, .reusable = true}}, SHIFT(272), + [838] = {.entry = {.count = 1, .reusable = false}}, SHIFT(272), + [840] = {.entry = {.count = 1, .reusable = true}}, SHIFT(271), + [842] = {.entry = {.count = 1, .reusable = false}}, SHIFT(271), + [844] = {.entry = {.count = 1, .reusable = true}}, SHIFT(263), + [846] = {.entry = {.count = 1, .reusable = true}}, SHIFT(328), + [848] = {.entry = {.count = 1, .reusable = true}}, SHIFT(257), + [850] = {.entry = {.count = 1, .reusable = true}}, SHIFT(45), + [852] = {.entry = {.count = 1, .reusable = true}}, SHIFT(235), + [854] = {.entry = {.count = 1, .reusable = true}}, SHIFT(322), + [856] = {.entry = {.count = 1, .reusable = true}}, SHIFT(224), + [858] = {.entry = {.count = 1, .reusable = true}}, SHIFT(278), + [860] = {.entry = {.count = 1, .reusable = true}}, SHIFT(325), + [862] = {.entry = {.count = 1, .reusable = true}}, SHIFT(167), + [864] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_operator, 1), + [866] = {.entry = {.count = 1, .reusable = true}}, SHIFT(145), + [868] = {.entry = {.count = 1, .reusable = true}}, SHIFT(157), + [870] = {.entry = {.count = 1, .reusable = true}}, SHIFT(148), + [872] = {.entry = {.count = 1, .reusable = true}}, SHIFT(18), + [874] = {.entry = {.count = 1, .reusable = true}}, SHIFT(152), + [876] = {.entry = {.count = 1, .reusable = true}}, SHIFT(343), + [878] = {.entry = {.count = 1, .reusable = true}}, SHIFT(218), + [880] = {.entry = {.count = 1, .reusable = true}}, SHIFT(159), + [882] = {.entry = {.count = 1, .reusable = true}}, SHIFT(307), + [884] = {.entry = {.count = 1, .reusable = true}}, SHIFT(315), + [886] = {.entry = {.count = 1, .reusable = true}}, SHIFT(298), + [888] = {.entry = {.count = 1, .reusable = true}}, SHIFT(65), + [890] = {.entry = {.count = 1, .reusable = true}}, SHIFT(318), + [892] = {.entry = {.count = 1, .reusable = true}}, SHIFT(297), + [894] = {.entry = {.count = 1, .reusable = true}}, SHIFT(142), + [896] = {.entry = {.count = 1, .reusable = true}}, SHIFT(282), + [898] = {.entry = {.count = 1, .reusable = true}}, SHIFT(281), + [900] = {.entry = {.count = 1, .reusable = true}}, SHIFT(237), + [902] = {.entry = {.count = 1, .reusable = true}}, SHIFT(118), + [904] = {.entry = {.count = 1, .reusable = true}}, ACCEPT_INPUT(), + [906] = {.entry = {.count = 1, .reusable = true}}, SHIFT(245), + [908] = {.entry = {.count = 1, .reusable = true}}, SHIFT(247), + [910] = {.entry = {.count = 1, .reusable = true}}, SHIFT(154), + [912] = {.entry = {.count = 1, .reusable = true}}, SHIFT(299), + [914] = {.entry = {.count = 1, .reusable = true}}, REDUCE(sym_variable_property_type, 1), + [916] = {.entry = {.count = 1, .reusable = true}}, SHIFT(236), }; #ifdef __cplusplus